KosmoKrator

productivity

Nifty CLI for Coding Agents

Use the Nifty CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

6 functions 5 read 1 write Bearer token auth

Nifty CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. The Nifty CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Nifty CLI for Coding Agents
kosmokrator integrations:configure nifty --set access_token="$NIFTY_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call nifty.nifty_list_projects '{"limit":1,"offset":1}' --json

Discovery Before Execution

Agents and scripts can inspect Nifty docs and schemas before choosing a function.

kosmo integrations:docs nifty --json
kosmo integrations:docs nifty.nifty_list_projects --json
kosmo integrations:schema nifty.nifty_list_projects --json
kosmo integrations:search "Nifty" --json
kosmo integrations:list --json

Useful Nifty CLI Functions

FunctionTypeParametersDescription
nifty.nifty_list_projects Read limit, offset List all projects in Nifty. Returns project IDs, names, and metadata that can be used to query tasks.
nifty.nifty_get_project Read project_id Get details of a specific Nifty project by its ID, including name, description, status, and task lists.
nifty.nifty_list_tasks Read project_id, status, assignee_id, milestone_id, task_list_id, limit, offset List tasks in Nifty with optional filters. Filter by project, status, assignee, or other criteria. Returns task IDs, titles, statuses, and assignees.
nifty.nifty_get_task Read task_id Get details of a specific Nifty task by its ID, including title, description, status, assignee, and due date.
nifty.nifty_create_task Write title, project_id, description, task_list_id, assignee_id, due_date, priority, labels Create a new task in a Nifty project. Requires a title and project ID. Optionally include a description, task list, assignee, and due date.
nifty.nifty_get_current_user Read none Get the profile of the currently authenticated Nifty user, including name, email, and workspace membership.

Automation Notes

Related Nifty CLI Pages