with one click
cursor
Translates task requirements into Cursor CLI commands. Used by cursor-driver agent to execute coding tasks via Cursor.
Menu
Translates task requirements into Cursor CLI commands. Used by cursor-driver agent to execute coding tasks via Cursor.
Add non-text files to a person's artifacts folder. Use when saving images, documents, or other files related to someone. Trigger words: artifact, save image, add photo, attach file, store document.
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
ASI Agent-O-Rama Skill
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
Personal assistant for daily routines, task management, and productivity
| name | cursor |
| description | Translates task requirements into Cursor CLI commands. Used by cursor-driver agent to execute coding tasks via Cursor. |
Always apply these for programmatic (headless) execution:
-p "<prompt>" — required for headless mode--output-format text — recommended for clean output captureagent -p "<prompt>" --mode ask --output-format text
agent -p "<prompt>" --mode agent --output-format text
agent -p "<prompt>" --mode plan --output-format text
agent -p "<prompt>" --model gpt-5 --output-format text
agent resume -p "<prompt>" --output-format text
agent --resume="<chat-id>" -p "<prompt>" --output-format text
agent ls
| Task Type | Flag | Notes |
|---|---|---|
| Analysis, review, Q&A | --mode ask | Read-only, no file changes |
| Create or edit files | --mode agent | Full agent capabilities |
| Planning, architecture | --mode plan | Generates plan without execution |
When the calling agent specifies requirements, translate to flags:
| Requirement | Flag | Notes |
|---|---|---|
| Default / high-quality | --model gpt-5 | Best for complex reasoning |
| Fast / cheap | --model gpt-4o | Quick, straightforward tasks |
| Claude | --model claude-sonnet | Anthropic model option |
If not specified, use default model (no flag needed).
| Format | Flag | Use Case |
|---|---|---|
| Text | --output-format text | Programmatic processing, CI/automation |
| Default | (none) | Interactive/human-readable output |
For complex tasks requiring cloud processing, prefix the prompt with &:
agent "& refactor the auth module and add comprehensive tests"
Report to user: "You can resume this Cursor session by saying 'cursor resume'."
agent ls — List all previous conversationsagent resume — Resume most recent sessionagent --resume="<id>" — Resume specific session by ID# Code review (read-only)
agent -p "Review src/auth.py for security issues" --mode ask --output-format text
# Implement feature
agent -p "Add input validation to the login form" --mode agent --output-format text
# Generate plan
agent -p "Plan the migration from REST to GraphQL" --mode plan --output-format text
# Continue previous work
agent resume -p "Now add unit tests for the changes"
# Cloud-powered complex task
agent "& analyze codebase architecture and suggest improvements"
For complex multi-step tasks, you may run agent without -p to enter interactive mode:
agent
Then provide prompts conversationally. Use this when: