Operate agentpack safely (doctor/update/preview/diff/deploy/status/explain/evolve/rollback). Prefer --json.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add liqiongyu/agentpack --skill agentpack-operator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agentpack Operator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/liqiongyu-agentpack-operator-agentpack)More formats (shields.io, HTML) on the badges page.
---
name: agentpack-operator
description: Operate agentpack safely (doctor/update/preview/diff/deploy/status/explain/evolve/rollback). Prefer --json.
agentpack_version: "{{AGENTPACK_VERSION}}"
metadata:
short-description: Operate Agentpack safely.
---
# 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
```bash
agentpack doctor --json
```
### 0.5) Update (optional)
```bash
agentpack update --yes --json
```
### 1) Plan
```bash
agentpack plan --json
```
### 2) Diff (optional)
```bash
agentpack diff --json
```
### 3) Apply (only with user approval)
```bash
agentpack deploy --apply --yes --json
```
### 4) Status
```bash
agentpack status --json
```
## AI-first feedback loop (optional)
### Explain (optional)
```bash
agentpack explain status --json
```
### Record + score (optional)
Record a lightweight execution event (example):
```bash
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):
```bash
agentpack evolve propose --yes --json
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!