@yapture/app-sdk
Stub. The SDK is in design. This page is a placeholder so links resolve.
The @yapture/app-sdk package will provide:
- A typed REST client over the Yapture API.
- Helpers for surface registration (
task-detail-pane,workspace-view,sidebar-section). - A script-macro registration API:
yapture.script.registerMacro(...). - A webhook handler factory with HMAC verification baked in.
Install (when ready)
bun add @yapture/app-sdk
Surface example
import { registerSurface } from '@yapture/app-sdk';
registerSurface({
slot: 'task-detail-pane',
component: () => import('./pane'),
});
See also Webhooks → and Script extensions →.