Official Agently Skills for Coding Agents
Agently-Skills is the official installable skills package for Codex / Claude Code and similar coding agents. It replaces the old agent_docs.zip flow, copied doc packs, and earlier local demo skills.
Official repository:
Official docs:
- English Docs: agently.tech/docs/en
- 中文文档: agently.cn/docs
1. What the current Skills model is
The current Agently-Skills model is not just an API snippet pack. It teaches a coding agent to work along Agently-native capability boundaries:
- recognize whether a request belongs to the request side, extension side, or orchestration side
- choose the right skill or skill combination before implementation
- prefer native Agently surfaces instead of starting with custom wrappers, parsers, or workflow glue
- organize settings, prompts, tools, workflows, and runtime artifacts into a maintainable project shape
The goal is not shallow snippet generation. The goal is a complete project that actually fits Agently.
2. Correct setup path
Recommended flow:
- Install the official Agently Skills through the skills mechanism supported by your coding agent.
- Keep
AGENTS.md/CLAUDE.mdfocused on repo-specific rules only. - Let the installed official skills provide Agently knowledge and routing instead of vendoring a full Agently docs pack into each repo.
AGENTS.md / CLAUDE.md should now mostly contain:
- directory layout and module boundaries
- build, test, and release requirements
- local coding conventions
- internal docs that must be read first
They should no longer say:
- "download and unzip
agent_docs.zip" - "copy the whole Agently docs pack into this repo"
- "prefer the old local mock skills"
3. Routing model
Use this current routing model when deciding where to start:
- business goal, product behavior, project refactor, or unclear owner layer:
agently-playbook - provider wiring, env vars, or model settings separation:
agently-model-setup - prompt structure, prompt config, YAML/JSON prompt behavior, or mappings:
agently-prompt-management - stable structured fields, required keys, or machine-readable output:
agently-output-control - reuse one model result, access text/data/meta, or consume streaming output:
agently-model-response - session continuity, restore, or memory:
agently-session-memory - tools, MCP, FastAPIHelper,
auto_func, orKeyWaiter:agently-agent-extensions - embeddings, vector indexing, retrieval, or KB-backed answers:
agently-knowledge-base - TriggerFlow orchestration, runtime stream, event-driven fan-out, or mixed sync/async workflow:
agently-triggerflow - LangChain / LangGraph migration: start with
agently-migration-playbook, then route to the matching migration leaf
The key rule is: prefer Agently-native surfaces before inventing custom wrapper layers.
4. Current public catalog
According to the current official repository, the public catalog contains 12 skills:
Entry
agently-playbookTop-level router for unresolved product, assistant, automation, workflow, evaluator, or project-structure refactor requests.
Request Side
agently-model-setupProvider connection, dotenv-based settings, transport setup, and settings-file-based model separation.agently-prompt-managementPrompt composition, prompt config, YAML-backed prompt behavior, mappings, and reusable request-side prompt structure.agently-output-controlOutput schema, field ordering, required keys, and structured output reliability.agently-model-responseget_response(), parsed results, metadata, streaming consumption, and response reuse.agently-session-memorySession-backed continuity, memo, restore, and request-side conversational state.
Request Extensions
agently-agent-extensionsTools, MCP, FastAPIHelper,auto_func, andKeyWaiter.agently-knowledge-baseEmbeddings plus Chroma-backed indexing, retrieval, and retrieval-to-answer flows.
Workflow
agently-triggerflowTriggerFlow orchestration, runtime state, runtime stream, workflow-side model execution, event-driven fan-out, and mixed sync/async orchestration.
Migration
agently-migration-playbookTop-level migration router for LangChain or LangGraph systems.agently-langchain-to-agentlyDirect LangChain agent-side migration guidance.agently-langgraph-to-triggerflowDirect LangGraph orchestration migration guidance.
5. Common install paths
Install the full official skills repository:
npx skills add AgentEra/Agently-SkillsIf you want the smallest starting point:
npx skills add AgentEra/Agently-Skills --skill agently-playbookCommon bundles:
request-core
npx skills add AgentEra/Agently-Skills --skill agently-playbook
npx skills add AgentEra/Agently-Skills --skill agently-model-setup
npx skills add AgentEra/Agently-Skills --skill agently-prompt-management
npx skills add AgentEra/Agently-Skills --skill agently-output-control
npx skills add AgentEra/Agently-Skills --skill agently-model-responserequest-extensions
npx skills add AgentEra/Agently-Skills --skill agently-playbook
npx skills add AgentEra/Agently-Skills --skill agently-agent-extensions
npx skills add AgentEra/Agently-Skills --skill agently-session-memory
npx skills add AgentEra/Agently-Skills --skill agently-knowledge-baseworkflow-core
npx skills add AgentEra/Agently-Skills --skill agently-playbook
npx skills add AgentEra/Agently-Skills --skill agently-triggerflow
npx skills add AgentEra/Agently-Skills --skill agently-output-control
npx skills add AgentEra/Agently-Skills --skill agently-model-response
npx skills add AgentEra/Agently-Skills --skill agently-session-memorymigration
npx skills add AgentEra/Agently-Skills --skill agently-playbook
npx skills add AgentEra/Agently-Skills --skill agently-migration-playbook
npx skills add AgentEra/Agently-Skills --skill agently-langchain-to-agently
npx skills add AgentEra/Agently-Skills --skill agently-langgraph-to-triggerflow6. Recommended project shape
The current Skills model does not assume one oversized app.py. It prefers explicit capability boundaries:
SETTINGS.yamlor a settings layer for provider config,${ENV.xxx}, and runtime knobs- an app or integration layer that loads settings, validates env names when needed, and calls
Agently.set_settings(..., auto_load_env=True) prompts/for YAML or JSON prompt contractsworkflow/for TriggerFlow graphs and chunk implementationstools/for replaceable search, browse, MCP, or external adaptersoutputs/andlogs/for runtime artifacts instead of mixing them into source folders
If a new request still has an unclear owner layer, project initialization and structure routing should start with agently-playbook.
7. Repo guidance
- The old
agent_docs.zipflow is deprecated and no longer the official distribution path. - The old local demo skills no longer represent the official skill system.
- This page stays as the introduction and navigation entry for official Agently Skills.
- Skill names, installation flows, and catalog structure should follow the current official repository.
For the human-developer view of Agently capabilities and runnable scenarios, continue with: Agent Systems Playbook.