Learn
By AnyCap Team
Skills teach your agent
how to use the capabilities it doesn't ship with.
The agent may know how to code, but it does not automatically know how to discover, install, authenticate, and invoke your capability runtime. A skill is the instruction layer that closes that gap. It tells Claude Code, Cursor, Codex, and similar agent users how to connect to AnyCap without turning every setup into a manual integration job.
Keep the agent. Teach it the missing runtime.
Why skills matter in practice
Skills matter because agents need more than raw tool access. They need an explicit description of how a capability fits into the workflow, when it should be used, and which install or auth steps have to happen first.
For AnyCap, skills are also a distribution strategy. They let the same capability runtime appear consistently across multiple agent products without rebuilding the entire operator experience every time a new environment is added.
What a skill adds to the workflow
Skill
Instruction layer that teaches the agent what missing capabilities exist and how to install and invoke them.
CLI
Executable surface the agent or operator actually runs, like `anycap image generate`.
Capability
Concrete action exposed through the runtime, such as image generation, image understanding, or video analysis.
Tool
Generic execution surface. A skill can describe a tool, but it is not the same thing as the capability runtime itself.
Related reading
Guides
MCP vs Skills
Compare the protocol layer with the instruction layer before you decide how to wire AnyCap into your agent stack.
Learn
Why one CLI matters
Use this when you want to see how the command surface stays stable across image, video, and vision workflows.
Learn
What agents can't do
Use this when you want the capability-gap narrative before choosing the next product or capability page.
Guides
Install AnyCap
Use this when you want the shortest install path after you understand how the instruction layer works.
Where skills plug in
Three ways to install the skill
Install through skills.sh
Best when the agent ecosystem already supports skills as a distribution format.
npx -y skills add anycap-ai/anycap -a claude-code -y
Install through AnyCap CLI
Useful when you want the runtime to place the skill file in a known target directory.
anycap skill install --target ~/.claude/skills/anycap-cli/
Install manually
Fallback path when you want direct control over the skill file location.
curl -fsSL https://raw.githubusercontent.com/anycap-ai/anycap/main/skills/anycap-cli/SKILL.md --create-dirs -o ~/.claude/skills/anycap-cli/SKILL.md
Available skills
anycap-cli
The core skill. Teaches the agent how to use the full AnyCap CLI: image generation, video generation, music generation, media analysis, web search, web crawl, Drive storage, Page publishing, and auth.
npx -y skills add anycap-ai/anycap -s 'anycap-cli' -g -y
anycap-media-production
Full media production workflow. Covers iterative generation, refinement, and human annotation feedback loops for images, videos, and music.
npx -y skills add anycap-ai/anycap -s 'anycap-media-production' -g -y
anycap-human-interaction
Collect structured visual feedback from humans via image annotation, screen recording, video review, and audio capture. Also covers interactive Excalidraw diagramming.
npx -y skills add anycap-ai/anycap -s 'anycap-human-interaction' -g -y
anycap-deepresearch
Multi-source research workflow: plan, gather, analyze, synthesize, and deliver findings using web search and web crawl. Handles source attribution and structured output.
npx -y skills add anycap-ai/anycap -s 'anycap-deepresearch' -g -y
anycap-blog-production
Turn user-provided notes, research, and product facts into structured AnyCap-style blog posts with first-party evidence blocks and consistent editorial voice.
npx -y skills add anycap-ai/anycap -s 'anycap-blog-production' -g -y
anycap-ai-tool-seo
SEO planning and auditing for AI tool and SaaS websites. Uses web search and crawl to inspect live SERPs, analyze competitor pages, and surface keyword opportunities.
npx -y skills add anycap-ai/anycap -s 'anycap-ai-tool-seo' -g -y
anycap-social-meme-workflows
Create meme-style images, captioned photos, and social visuals by combining AI image generation with local text overlay. Built for viral social content workflows.
npx -y skills add anycap-ai/anycap -s 'anycap-social-meme-workflows' -g -y
What skills are not
A skill is not the same as MCP, A2A, or another agent protocol. Those protocols describe how systems communicate. A skill describes how the agent should install and use a capability runtime inside its execution environment.
A skill is also not the capability itself. It is the instruction layer that points the agent toward the runtime, the CLI, and the concrete commands it can call once the install path is complete.
Where to go next
Guides
MCP vs Skills
Compare the protocol layer with the instruction layer before you decide how to wire AnyCap into your agent stack.
Learn
Why one CLI matters
Use this when you want to see how the command surface stays stable across image, video, and vision workflows.
Learn
What agents can't do
Use this when you want the capability-gap narrative before choosing the next product or capability page.
Guides
Install AnyCap
Use this when you want the shortest install path after you understand how the instruction layer works.