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.

16 stars

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

$curl -o ~/.claude/skills/agent-ops-guide/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/tools/agent-ops-guide/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/agent-ops-guide/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How agent-ops-guide Compares

Feature / Agentagent-ops-guideStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/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

16
from diegosouzapw/awesome-omni-skill

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

16
from diegosouzapw/awesome-omni-skill

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

16
from diegosouzapw/awesome-omni-skill

Comprehensive astrology expert covering natal charts, transits, houses, aspects, and astrological traditions from Western to Vedic

Arcanea Voice Guide

16
from diegosouzapw/awesome-omni-skill

Brand voice and terminology guide for all Arcanea content - ensures consistent, magical communication across UI, marketing, and narrative

analytic-skills-guide

16
from diegosouzapw/awesome-omni-skill

Guide for AI agent to use the tools offered by this library to perform analytic tasks.

ai-engineering-guide

16
from diegosouzapw/awesome-omni-skill

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

16
from diegosouzapw/awesome-omni-skill

Guidelines for writing small, stable AGENTS.md files. Use when creating, refactoring, or reviewing AGENTS.md.

agent-guidelines

16
from diegosouzapw/awesome-omni-skill

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

16
from diegosouzapw/awesome-omni-skill

Use when adapting Droidz framework or creating custom workflows. Guide for customizing droids, skills, and commands for specific project needs.

5-styleguide-generation

16
from diegosouzapw/awesome-omni-skill

Fifth step in building instruction context for codebase

security-skills-guide

16
from diegosouzapw/awesome-omni-skill

Guide for security-related Agent Skills including penetration testing, code auditing, threat hunting, and forensics skills.

roadmap-guide

16
from diegosouzapw/awesome-omni-skill

在编写、更新、维护 roadmap.md 的时候触发