Provision agent
The mod pack for AI coding agents. 12 battle-tested skills. One install. Seven platforms.
npx -y skills add MyAiFreedomSystems/incredagents --skill provision-agentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 13 days oldThe repository was created 13 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Provision a new AI agent with identity overlays, scoped skills, tool constraints, handler profile, and memory structure. Creates SOUL.md, TOOLS.md, MEMORY.md, and USER.md files on top of the project scaffold. Extends provision-project with agent-specific identity. Use when creating a named agent, standing up an agent identity, or binding skills and tools to a new agent instance.
SKILL.md
7.5 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it
Provision an Agent
This skill creates a fully provisioned AI agent identity that follows the canonical project structure AND adds agent-specific overlays: personality (SOUL.md), capabilities (TOOLS.md), memory scaffold (MEMORY.md), and handler profile (USER.md).
When to invoke
Invoke when the user says any of:
- "Provision a new agent called X."
- "Create agent X for Y."
- "Stand up agent X."
- "Scaffold a new agent at
<path>/X." - "Initialize X as an agent."
Do NOT invoke for:
- A plain project folder (use
provision-projectinstead). - An agent folder that already has
SOUL.mdandTOOLS.md— it's already provisioned. - A governance or nucleus directory.
Inputs
- Agent name — Preserve casing. Examples:
TestAgent,Forge,Sentinel. - Role description — One paragraph: what this agent does, its purpose.
- Handler — The human who directs this agent (name, timezone).
- Initial skill set — List of skill names this agent can invoke.
- Tool constraints — Which tools, APIs, or CLIs this agent may use (optional; defaults to all available tools).
- Optional one-line purpose — Captured in AGENTS.md and SOUL.md.
If any required input is missing, ask once. Do not provision with a guessed identity.
The steps
Execute completely and autonomously.
Step 1 — Verify prerequisites
if [ -z "$GOVERNANCE_HOME" ]; then
echo "ERROR: GOVERNANCE_HOME is not set. Set it to your governance nucleus path."
exit 1
fi
Step 2 — Call provision-project
Run provision-project to create the base folder with governance files, directory
skeleton, handoff, session ledger, and troubleshooting stub. The agent folder lives
at the specified project path.
Step 3 — Create agent-specific identity overlays
Create four files on top of the project-folder scaffold:
| File | Purpose |
|---|---|
SOUL.md | Agent-specific identity: name, role, behavioral boundaries, communication style. This is the agent's PERSONALITY — not the governance nucleus identity. |
TOOLS.md | Capabilities available to this agent: which tools, which APIs, which CLIs, any constraints or restrictions. |
MEMORY.md | Empty but scoped memory structure: long-term facts section, session scratchpad section, learning log section. |
USER.md | Handler profile: who the human is, timezone, preferences, communication style. |
Use templates from templates/agent/ as starting points. Replace all <placeholder>
values with actual agent details.
Step 4 — Create skills/ reference file
Create skills/SKILL-REFERENCE.md — a reference file (not a copy) listing which
governance-nucleus skills this agent can use. Each entry points to the canonical
skill location via $GOVERNANCE_HOME:
# Skill Reference — <AgentName>
This agent references shared skills from `$GOVERNANCE_HOME/.agent/skills/`.
Skills are NOT copied — they are loaded from the governance nucleus at runtime.
## Authorized Skills
| Skill | Path | Load Trigger |
|---|---|---|
| <skill-name> | $GOVERNANCE_HOME/.agent/skills/<skill-name>/SKILL.md | <trigger> |
Step 5 — Register the agent
Append or update the agent entry in $GOVERNANCE_HOME/config/agent_registry.yaml:
- name: <AgentName>
role: "<one-line role description>"
folder_path: <AgentPath>
skills:
- <skill-1>
- <skill-2>
tools:
- <tool-1>
status: active
provisioned_date: "<YYYY-MM-DD>"
handler: "<handler name>"
Step 6 — Self-verify
AGENT_PATH="<AgentPath>"
for f in AGENTS.md SOUL.md TOOLS.md MEMORY.md USER.md \
skills/SKILL-REFERENCE.md TROUBLESHOOTING.md .env .gitignore; do
[ -f "$AGENT_PATH/$f" ] && echo "OK file: $f" || echo "MISSING file: $f"
done
for d in handoffs logs terminal-sessions .backups .remember skills; do
[ -d "$AGENT_PATH/$d" ] && echo "OK dir: $d" || echo "MISSING dir: $d"
done
Every line must print OK.
Step 7 — Hand back
Tell the user the agent is ready. Give the absolute path. Report which skills were bound. Do not hand the user a list of follow-up tasks — next steps belong in the agent's handoff.
What this skill does NOT do
- Does not define the agent's full behavioral rules (that's in SOUL.md, authored per-agent).
- Does not copy skills into the agent folder (skills are referenced, not copied).
- Does not duplicate governance documents (inherited from governance nucleus at runtime).
- Does not create a Git repository or push to GitHub.
- Does not deploy the agent or start a runtime.
Scaffold layout
<AgentName>/
├── AGENTS.md (platform-agnostic overlay — from provision-project)
├── instructions.md (Hermes portal — from provision-project, if Hermes detected)
├── SOUL.md (agent-specific identity — NEW)
├── TOOLS.md (capabilities and constraints — NEW)
├── MEMORY.md (scoped memory structure — NEW)
├── USER.md (handler profile — NEW)
├── TROUBLESHOOTING.md (from provision-project)
├── .env (from provision-project)
├── .gitignore (from provision-project)
├── skills/
│ └── SKILL-REFERENCE.md (reference to governance nucleus skills — NEW)
├── handoffs/
│ └── <YYYY-MM-DD>_initial-provisioning.md
├── logs/<lowercased-name>/
│ └── 00_SESSION_LEDGER.md
├── terminal-sessions/
├── .backups/
├── .remember/
│ └── recent.md
└──
Gotchas
- Casing is load-bearing.
TestAgent, nottestagent. - SOUL.md is agent-specific. The governance nucleus SOUL.md is the workspace identity. The agent SOUL.md is this agent's personality. They coexist — the agent reads both.
- No copied skills. The
skills/directory contains a reference file, not skill copies. Skills load from$GOVERNANCE_HOME/.agent/skills/at runtime. - No duplicated governance documents. The agent inherits governance from the nucleus. Do not copy governance files into agent folders.
- Timestamps in user's configured timezone. Defaults to UTC.
- Registry is append-only. Never delete an agent entry. Mark status as
archivedif an agent is retired. - USER.md is handler-scoped. It describes the human who directs THIS agent, not the workspace owner generally.
Templates
templates/agent/SOUL.template.md— Agent identity and personality templatetemplates/agent/TOOLS.template.md— Capabilities and constraints templatetemplates/agent/MEMORY.template.md— Memory structure scaffoldtemplates/agent/USER.template.md— Handler profile template
Works best with…
provision-project— creates the base project scaffold this skill extendsprovision-team— assemble multiple provisioned agents into a coordinated teamrouting-matrix— assign models to this agent's roles
© IncredAgents. This skill is part of the IncredAgents-Skills repository. Distributable, user-agnostic, platform-agnostic.