Agent Skill
2/7/2026

using-agentops

Meta skill explaining the RPI workflow. Auto-injected on session start. Covers Research-Plan-Implement workflow, Knowledge Flywheel, and skill catalog.

B
boshu2
95GitHub Stars
1Views
npx skills add boshu2/agentops

SKILL.md

Nameusing-agentops
DescriptionMeta skill explaining the RPI workflow. Auto-injected on session start. Covers Research-Plan-Implement workflow, Knowledge Flywheel, and skill catalog.

name: using-agentops description: Explain AgentOps workflows. practices:

  • wiki-knowledge-surface
  • pragmatic-programmer
  • agile-manifesto hexagonal_role: generic consumes: [] produces:
  • documentation context_rel: [] skill_api_version: 1 user-invocable: false context: window: isolated intent: mode: none sections: exclude:
    • HISTORY
    • INTEL
    • TASK intel_scope: none metadata: tier: meta dependencies: [] internal: true output_contract: 'stdout: operating guide'

AgentOps Operating Model

AgentOps is the operational layer for coding agents.

Publicly, it gives you four things:

  • Bookkeeping — captured learnings, findings, and reusable context
  • Validation — plan and code review before work ships
  • Primitives — single skills, hooks, and CLI surfaces
  • Flows — named compositions like /research, /validation, and /rpi

Technically, AgentOps acts as a context compiler: raw session signal becomes reusable knowledge, compiled prevention, and better next work.

Core Flow: RPI

Research → Plan → Implement → Validate
    ↑                            │
    └──── Knowledge Flywheel ────┘

Research Phase

/research <topic>      # Deep codebase exploration
ao search "<query>"    # Search existing knowledge
ao search "<query>" --cite retrieved  # Record adoption when a search result is reused
ao lookup <id>         # Pull full content of specific learning
ao lookup --query "x"  # Search knowledge by relevance

Output: .agents/research/<topic>.md

Plan Phase

/pre-mortem <spec>     # Simulate failures (error/rescue map, scope modes, prediction tracking)
/plan <goal>           # Decompose into trackable issues

Output: Beads issues with dependencies

Implement Phase

/implement <issue>     # Single issue execution
/crank <epic>          # Autonomous epic loop (uses swarm for waves)
/swarm                 # Parallel execution (fresh context per agent)

Output: Code changes, tests, documentation

Validate Phase

/vibe [target]         # Code validation (finding classification + suppression + domain checklists)
/post-mortem           # Validation + streak tracking + prediction accuracy + retro history
/retro                 # Quick-capture a single learning

Output: .agents/learnings/, .agents/patterns/

Phase-to-Skill Mapping

PhasePrimary SkillSupporting Skills
Discovery/discovery/brainstorm, /research, /plan, /pre-mortem
Implement/crank/implement (single issue), /swarm (parallel execution)
Validate/validation/vibe, /post-mortem, /retro, /forge

Choosing the skill:

  • Use /implement for single issue execution. Now defaults to TDD-first — writes failing tests before implementing. Skip with --no-tdd.
  • Use /crank for autonomous epic execution (loops waves via swarm until done). Auto-generates file-ownership maps to prevent worker conflicts.
  • Use /discovery for the discovery phase only (brainstorm → search → research → plan → pre-mortem).
  • Use /validation for the validation phase only (vibe → post-mortem → retro → forge).
  • Use /rpi for full lifecycle — delegates to /discovery/crank/validation.
  • Use /ratchet to gate/record progress through RPI.

Start Here (12 starters)

These are the skills every user needs first. Everything else is available when you need it.

SkillPurpose
/quickstartGuided onboarding — run this first
/bootstrapOne-command full AgentOps setup — fills gaps only
/researchDeep codebase exploration
/councilMulti-model consensus review + finding auto-extraction
/validateCanonical PASS/WARN/FAIL verdict over an artifact, plan, code change, PR, or gate
/vibeCode validation (classification + suppression + domain checklists)
/rpiFull RPI lifecycle orchestrator (/discovery/crank/validation)
/implementExecute single issue
/retro --quickQuick-capture a single learning into the flywheel
/statusSingle-screen dashboard of current work and suggested next action
/goalsMaintain GOALS.yaml fitness specification
/pushAtomic test-commit-push workflow

Advanced Skills (when you need them)

SkillPurpose
/compile, /flywheelActive knowledge intelligence and flywheel health — Mine → Grow → Defrag cycle
/curateCanonical miner role for transcripts, .agents/, bd, git, skill diffs, and rare wiki entries
/llm-wikiExternal reading wiki proposal — raw sources to compiled wiki
/harvestCross-rig knowledge consolidation — sweep, dedup, promote to global hub
/knowledge-activationOperationalize a mature .agents corpus into beliefs, playbooks, briefings, and gap surfaces
/brainstormStructured idea exploration before planning
/discoveryFull discovery phase orchestrator (brainstorm → search → research → plan → pre-mortem)
/planEpic decomposition into issues
/designProduct validation gate — goal alignment, persona fit, competitive differentiation
/pre-mortemFailure simulation (error/rescue, scope modes, temporal, predictions)
/post-mortemValidation + streak tracking + prediction accuracy + retro history
/bug-huntRoot cause analysis
/releasePre-flight, changelog, version bumps, tag
/crankAutonomous epic loop (uses swarm for each wave)
/swarmFresh-context parallel execution (Ralph pattern)
/evolveGoal-driven fitness-scored improvement loop
/autodevPROGRAM.md autonomous development contract setup and validation
/dreamInteractive Dream operator surface for setup, bedtime runs, and morning reports
/docDocumentation generation — repo docs (default), gold-standard README (--mode=readme), OSS doc packs (--mode=oss)
/retroQuick-capture a learning (full retro → /post-mortem)
/validationFull validation phase orchestrator (vibe → post-mortem → retro → forge)
/ratchetBrownian Ratchet progress gates for RPI workflow
/forgeMine transcripts for knowledge — decisions, learnings, patterns
/securityContinuous repository security scanning and release gating
/security-suiteBinary and prompt-surface security suite — static analysis, dynamic tracing, offline redteam, policy gating
/testTest generation, coverage analysis, and TDD workflow
/hooks-authoringAuthor and validate AgentOps runtime hooks
/red-teamPersona-based adversarial validation — probe docs and skills from constrained user perspectives
/reviewReview incoming PRs, agent output, or diffs — SCORED checklist
/refactorSafe, verified refactoring with regression testing at each step
/depsDependency audit, update, vulnerability scanning, and license compliance
/perfPerformance profiling, benchmarking, regression detection, and optimization
/system-tuningRestore system responsiveness via safe, ordered process cleanup and agent-swarm hygiene
/scaffoldProject scaffolding, component generation, and boilerplate setup
/scenarioAuthor and manage holdout scenarios for behavioral validation
/skill-auditorTwo-pass audit of an existing SKILL.md against the unified template (15 checks)
/skill-builderScaffold or absorb new SKILL.md files against the unified template

Expert Skills (specialized workflows)

SkillPurpose
/grafana-platform-dashboardBuild Grafana platform dashboards from templates/contracts
/codex-teamParallel Codex agent execution
/openai-docsOfficial OpenAI docs lookup with citations
/reverse-engineer-rpiReverse-engineer a product into feature catalog and specs
/pr-researchUpstream repository research before contribution
/pr-implementFork-based PR implementation
/pr-validatePR-specific validation and isolation checks
/pr-prepPR preparation and structured body generation
/ship-loopBot-paired internal-PR fast-lane cycle
/complexityCode complexity analysis
/productInteractive PRODUCT.md generation
/handoffSession handoff for continuation
/recoverPost-compaction context recovery
/session-bootstrapUniversal init prompt — every agent runs this first (soc-vuu6.25)
/traceTrace design decisions through history
/provenanceTrace artifact lineage to sources
/beadsIssue tracking operations
/heal-skillDetect and fix skill hygiene issues
/converterConvert skills to Codex/Cursor formats

To update installed skills: re-run the install one-liner — bash <(curl -fsSL https://raw.githubusercontent.com/boshu2/agentops/main/scripts/install.sh). (There is no update skill; skill refresh is an install-script concern.)

Knowledge Flywheel

Every /post-mortem promotes learnings and patterns into .agents/ so future /research starts with better context instead of zero.

Inspect, lint, and triage the .agents/ write surface contract via ao agents inspect | lint | doctor (doctor rolls up inspect + lint + orphan/stray-dir report; --strict fails on orphans).

Runtime Modes

AgentOps has several runtime modes. Do not assume hook automation exists everywhere.

ModeWhen it appliesStart pathCloseout pathGuarantees
gc (reference City)Gas City (gc) binary available, used out-of-session via the reference City (packs/agentops/)A long-lived mayor agent dispatches whole ao rpi loops to refinery workers (bd readygc slingao rpi <bead>); cron exec Orders run maintenanceThe mayor owns the merge gate (CI-green is the signal) and triggers the knowledge-flywheel feedbackgc orchestrates whole ao rpi/ao evolve loops — it never sees the loop's insides. There is no in-CLI runtime=gc executor (removed); the seam is gcao as a subprocess. Dispatch is mayor-driven today; order-auto-dispatch is an upstream-GC gap (soc-5jwah). See the using-gc skill.
hook-capableClaude/OpenCode with lifecycle hooks installed (no gc)Runtime hook or ao inject / ao lookupRuntime hook or ao forge transcript + ao flywheel close-loopAutomatic startup/context injection and session-end maintenance when hooks are installed
codex-native-hooksCodex CLI v0.115.0+ with native hook support (March 2026)Runtime hooks (same as hook-capable)Runtime hooks (same as hook-capable)Native lifecycle hooks — same guarantees as hook-capable mode
codex-hookless-fallbackCodex Desktop / Codex CLI pre-v0.115.0 without hook surfacesao codex startao codex stopExplicit startup context, citation tracking, transcript fallback, and close-loop metrics without hooks
manualNo hooks and no Codex-native runtime detectionao inject / ao lookupao forge transcript + ao flywheel close-loopWorks everywhere, but lifecycle actions are operator-driven

Issue Tracking

This workflow uses beads for git-native issue tracking:

bd ready              # Unblocked issues
bd show <id>          # Issue details
bd close <id>         # Close issue
bd vc status          # Inspect Dolt state if needed (JSONL auto-sync is automatic)

Examples

Startup context loading. Hook-capable runtimes run session-start.sh at session start (manual mode auto-loads MEMORY.md and points to ao search/ao lookup; lean mode injects prior learnings on a reduced token budget). Codex v0.115.0+ fires hooks automatically; pre-v0.115.0 runs ao codex start / ao codex stop explicitly. Either way the agent gets the RPI workflow, prior context, and a citation path.

Workflow reference during planning. When a user asks how to approach a feature, the agent uses this skill's RPI section to recommend Research → Plan → Implement → Validate — /research for exploration, /plan for decomposition, /pre-mortem for failure simulation — instead of an ad-hoc approach.

Troubleshooting

ProblemCauseSolution
Skill not auto-loadedHook runtime unavailable or startup path not runHook-capable runtimes: verify hooks/session-start.sh exists and is enabled. Codex: run ao codex start explicitly
Outdated skill catalogThis file not synced with actual skills/ directoryUpdate skill list in this file after adding/removing skills
Wrong skill suggestedNatural language trigger ambiguousUser explicitly calls skill with /skill-name syntax
Workflow unclearRPI phases not well-documented hereRead full workflow guide in README.md or docs/ARCHITECTURE.md
Skills Info
Original Name:using-agentopsAuthor:boshu2