agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
npx skills add majiayu000/claude-skill-registry --skill agent-ops-state --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AgentOps State Discipline **Works with or without `aoc` CLI installed.** State management uses direct file operations by default. ## State File Operations (Default) All state files are managed via direct file operations: | File | Operations | |------|-----------| | `.agent/constitution.md` | Read/write directly | | `.agent/focus.md` | Read/write directly | | `.agent/memory.md` | Read/write directly | | `.agent/baseline.md` | Read/write directly | | `.agent/issues/{priority}.md` | Read/append/edit directly | ### Issue Management (File-Based) | Operation | How to Do It | |-----------|--------------| | List issues by priority | Read `.agent/issues/{priority}.md` directly | | Show issue details | Search for issue ID in priority files | | Create issue | Append to appropriate `.agent/issues/{priority}.md` file | | Update issue status | Edit `status:` field directly in file | | Close issue | Set `status: done` + move to `history.md` | | Get summary | Count issues across priority files | ### Git Status ```bash # Check current branch git branch --show-current # Check for uncommitted changes git status --porcelain # Get last commit hash git rev-parse --short HEAD ``` ## CLI Integration (wh
- State File Operations (Default)
- Issue Management (File-Based)
- Git Status
- CLI Integration (when aoc is available)
- When to Use
- Session Start
- Required Reads (in this order)
- Required Updates
- .agent/focus.md
- .agent/issues/{priority}.md
- .agent/memory.md
- Dependency Validation
- Templates
Check current branch git branch --show-current Check for uncommitted changes git status --porcelain Get last commit hash git rev-parse --short HEAD
What does the agent-ops-state skill do?
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-ops-state --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
