Loading...
Loading...
Breeze integration. Manage data, records, and automate workflows. Use when the user wants to interact with Breeze data.
npx skill4agent add membranedev/application-skills breezemembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search breeze --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Projects | list-projects | Get all active projects |
| List Cards | list-cards | Get all cards (tasks) for a specific project |
| List Stages | list-stages | Get all lists/stages in a project |
| List Time Entries | list-time-entries | Get all time entries for a card |
| List Users | list-users | Get all team users |
| List Workspaces | list-workspaces | Get all workspaces |
| Get Project | get-project | Get a specific project by ID |
| Get Card | get-card | Get a specific card (task) by ID |
| Get Workspace | get-workspace | Get a specific workspace by ID |
| Get Current User | get-current-user | Get information about the authenticated user including API key and team memberships |
| Create Project | create-project | Create a new project |
| Create Card | create-card | Create a new card (task) in a project |
| Create Stage | create-stage | Create a new list/stage in a project |
| Create Time Entry | create-time-entry | Create a new time entry for a card (added to current user) |
| Create Workspace | create-workspace | Create a new workspace |
| Update Project | update-project | Update an existing project |
| Update Card | update-card | Update an existing card (task) |
| Update Stage | update-stage | Update an existing list/stage in a project |
| Delete Project | delete-project | Delete a specific project |
| Delete Card | delete-card | Delete a specific card (task) |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY