smithery.ai

agentpack-operator

Operate agentpack safely (doctor/update/preview/diff/deploy/status/explain/evolve/rollback). Prefer --json.

First seen Apr 19, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
short-description
Operate Agentpack safely.

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,065 B
  • docs SUMMARY.md 133 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

agentpack-operator

Operate Agentpack safely and reproducibly.

What you can do

  • Self-check environment: agentpack doctor --json
  • Update sources: agentpack update --yes --json
  • Preview changes: agentpack preview --json (or agentpack plan --json + agentpack diff --json)
  • Apply changes: agentpack deploy --apply --yes --json
  • Verify drift: agentpack status --json
  • Explain why things look the way they do: agentpack explain plan|diff|status --json
  • Record outcomes and score modules: agentpack record + agentpack score
  • Propose overlay updates from drift: agentpack evolve propose --yes --json
  • Roll back: agentpack rollback --to <snapshot_id>

Safety rules

  1. Never run deploy --apply unless the user explicitly asked to apply.
  2. Always show the plan + (optional) diff summary first.
  3. Prefer --json for machine parsing; keep outputs small and scoped.
  4. Use --repo, --profile, --target when operating outside defaults.

Typical workflow

0) Doctor

agentpack doctor --json

0.5) Update (optional)

agentpack update --yes --json

1) Plan

agentpack plan --json

2) Diff (optional)

agentpack diff --json

3) Apply (only with user approval)

agentpack deploy --apply --yes --json

4) Status

agentpack status --json

AI-first feedback loop (optional)

Explain (optional)

agentpack explain status --json

Record + score (optional)

Record a lightweight execution event (example):

echo '{"module_id":"command:ap-deploy","success":true}' | agentpack record
agentpack score

Evolve overlays (optional)

Capture drifted deployed files into overlays (creates a local git branch):

agentpack evolve propose --yes --json