agent-ops-guide
Interactive workflow guide. Use when user is unsure what to do next, needs help navigating AgentOps, or wants to understand available tools.
Best use case
agent-ops-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Interactive workflow guide. Use when user is unsure what to do next, needs help navigating AgentOps, or wants to understand available tools.
Teams using agent-ops-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/agent-ops-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How agent-ops-guide Compares
| Feature / Agent | agent-ops-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Interactive workflow guide. Use when user is unsure what to do next, needs help navigating AgentOps, or wants to understand available tools.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# AgentOps Workflow Guide
## Purpose
Help users navigate the AgentOps workflow by asking diagnostic questions and recommending the appropriate next step.
## When to Use
- User says "help", "what should I do", "where do I start"
- User seems lost or confused about workflow
- User wants to understand available tools
- First time using AgentOps in a project
## Diagnostic Procedure
### Step 1: Assess State Files
First, silently check which state files exist:
```
□ .agent/constitution.md → Project setup complete?
□ .agent/baseline.md → Baseline captured?
□ .agent/focus.md → Has session context?
□ .agent/issues/ → Has defined issues?
□ .agent/memory.md → Has learned conventions?
```
### Step 2: Ask Situational Question
Ask ONE question to understand user's intent:
> "What brings you here today?"
>
> **A)** Starting a new project or first time here
> **B)** Returning to continue previous work
> **C)** Have a specific task or feature to implement
> **D)** Something's broken and need to fix it
> **E)** Want to explore or understand the codebase
> **F)** Need to review code quality
> **G)** Wrapping up work, ready to commit
> **H)** Want to create a new Python project
> **I)** Need to review/audit an API
### Step 3: Recommend Based on State + Intent
| Intent | Missing Constitution | Missing Baseline | Has Tasks | Recommendation |
|--------|---------------------|------------------|-----------|----------------|
| A (new) | ✗ | — | — | `/agent-init` then `/agent-constitution` |
| A (new) | ✓ | ✗ | — | `/agent-baseline` |
| B (resume) | — | — | — | Read focus.md, summarize status |
| C (task) | ✗ | — | — | `/agent-constitution` first |
| C (task) | ✓ | ✗ | — | `/agent-baseline` first |
| C (task) | ✓ | ✓ | ✗ | `/agent-task` to define task |
| C (task) | ✓ | ✓ | ✓ | `/agent-plan` for next task |
| D (broken) | — | — | — | `/agent-debug` then `/agent-recover` |
| E (explore) | — | — | — | `/agent-map` or `agent-ops-critical-review` |
| F (review) | — | — | — | `/agent-review` or `/agent-validation` |
| G (finish) | — | ✗ | — | `/agent-baseline` then `/agent-review` |
| G (finish) | — | ✓ | — | `/agent-validation` then `/agent-review` |
| H (python) | — | — | — | `/agent-create-python-project` |
| I (api) | — | — | — | `/agent-api-review` |
### Step 4: Provide Clear Next Step
Format your recommendation as:
```markdown
## Your Situation
[One sentence summary of what I detected]
## Recommended Next Step
**Run:** `/agent-[command]`
**Why:** [Brief reason]
## After That
[What comes next in the workflow]
```
## Decision Trees
### "I'm new here"
```
Has .agent/ folder?
├─ NO → /agent-init
└─ YES
Has constitution.md with CONFIRMED commands?
├─ NO → /agent-constitution
└─ YES
Has baseline.md?
├─ NO → /agent-baseline
└─ YES → Ready! Ask what they want to build
```
### "I have a task"
```
Task well-defined (clear acceptance criteria)?
├─ NO → /agent-task (refine it)
└─ YES
Have baseline?
├─ NO → /agent-baseline
└─ YES
Have approved plan?
├─ NO → /agent-plan
└─ YES → /agent-implement
```
### "Something's broken"
```
What's broken?
├─ Build fails → /agent-debug then /agent-recover
├─ Tests fail → /agent-debug (compare to baseline)
├─ Agent stuck → Read focus.md, identify blocking issue
├─ Git issues → agent-ops-git skill
└─ Unknown cause → /agent-debug (systematic isolation)
```
### "I want to create a Python project"
```
Have requirements/discussion?
├─ YES → /agent-create-python-project (with input)
└─ NO → /agent-create-python-project (will interview)
```
### "I need to review an API"
```
Has OpenAPI spec?
├─ YES → /agent-api-review
└─ NO
Has API endpoints?
├─ YES → /agent-api-review (will identify spec gaps)
└─ NO → Not an API project, use /agent-review
```
### "I'm done"
```
Changes validated?
├─ NO → /agent-validation
└─ YES
Critical review done?
├─ NO → /agent-review
└─ YES
Retrospective done?
├─ NO → /agent-retrospective
└─ YES → Ready to commit (with confirmation)
```
## Quick Reference Card
Present this when user asks for overview:
```
┌───────────────────────────────────────────────────────────────┐
│ AgentOps Workflow │
├───────────────────────────────────────────────────────────────┤
│ SETUP │ WORK │ FINISH │
│─────────────────│───────────────────│─────────────────────────│
│ /agent-init │ /agent-task │ /agent-validation │
│ /agent-const │ /agent-plan │ /agent-review │
│ /agent-base │ /agent-impl │ /agent-retrospective │
├───────────────────────────────────────────────────────────────┤
│ UTILITIES │
│───────────────────────────────────────────────────────────────│
│ /agent-help Interactive guide (you are here) │
│ /agent-map Understand codebase │
│ /agent-testing Test strategy │
│ /agent-spec Manage requirements │
│ /agent-report View issues and status │
│ /agent-version Versioning and changelog │
├───────────────────────────────────────────────────────────────┤
│ SPECIALIZED │
│───────────────────────────────────────────────────────────────│
│ /agent-debug Systematic debugging │
│ /agent-api-review API contract & behavior audit │
│ /agent-create-python-project Scaffold Python project │
└───────────────────────────────────────────────────────────────┘
```
## Anti-Patterns
- ❌ Overwhelming user with all options at once
- ❌ Recommending steps when prerequisites aren't met
- ❌ Skipping constitution/baseline for "quick" tasks
- ❌ Assuming user knows the workflow
## Output
After guiding user, update `.agent/focus.md`:
```markdown
## Doing now
- Guided user to [recommended step]
- Reason: [why this step]
```Related Skills
components-guide
Guide to using Convex components for feature encapsulation. Learn about sibling components, creating your own, and when to use components vs monolithic code.
clack-guidelines
Comprehensive guide for building beautiful interactive command-line interfaces using Clack. Use when creating CLI tools with text input, selections, autocomplete, progress tracking, and streaming output.
astrology-interpretation-guide
Comprehensive astrology expert covering natal charts, transits, houses, aspects, and astrological traditions from Western to Vedic
Arcanea Voice Guide
Brand voice and terminology guide for all Arcanea content - ensures consistent, magical communication across UI, marketing, and narrative
analytic-skills-guide
Guide for AI agent to use the tools offered by this library to perform analytic tasks.
ai-engineering-guide
Practical guide for building production ML systems based on Chip Huyen's AI Engineering book. Use when users ask about model evaluation, deployment strategies, monitoring, data pipelines, feature engineering, cost optimization, or MLOps. Covers metrics, A/B testing, serving patterns, drift detection, and production best practices.
agents-md-guidelines
Guidelines for writing small, stable AGENTS.md files. Use when creating, refactoring, or reviewing AGENTS.md.
agent-guidelines
When you need to understand the project's core mandate, operational rules, or "Constitution". Use this skill to align with the project's identity and strict coding standards.
ADAPTATION_GUIDE
Use when adapting Droidz framework or creating custom workflows. Guide for customizing droids, skills, and commands for specific project needs.
5-styleguide-generation
Fifth step in building instruction context for codebase
security-skills-guide
Guide for security-related Agent Skills including penetration testing, code auditing, threat hunting, and forensics skills.
roadmap-guide
在编写、更新、维护 roadmap.md 的时候触发