Loading...
Loading...
Infinity integration. Manage Workspaces. Use when the user wants to interact with Infinity data.
npx skill4agent add membranedev/application-skills infinitymembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search infinity --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 Workspaces | list-workspaces | List all workspaces that belong to the current user. |
| List Boards | list-boards | List all boards in a workspace. |
| List Folders | list-folders | List all folders in a board. |
| List Items | list-items | List all items in a board. |
| List Attributes | list-attributes | List all attributes (custom fields) for a board. |
| List Users | list-users | List all users in a workspace. |
| List Comments | list-comments | List all comments for an item. |
| Get My Profile | get-my-profile | Get the current user's profile data including name, email, and preferences. |
| Get Board | get-board | Get a single board by its ID. |
| Get Folder | get-folder | Get a single folder by its ID. |
| Get Item | get-item | Get a single item by its ID. |
| Get Attribute | get-attribute | Get a single attribute by its ID. |
| Create Board | create-board | Create a new board in a workspace. |
| Create Folder | create-folder | Create a new folder in a board. |
| Create Item | create-item | Create a new item in a board folder. |
| Create Attribute | create-attribute | Create a new attribute on a board. |
| Create Comment | create-comment | Create a new comment on an item. |
| Update Folder | update-folder | Update an existing folder. |
| Update Item | update-item | Update an existing item. |
| Update Attribute | update-attribute | Update an existing attribute. |
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