Agent skill · AI & Agents

agent-ops-tools

Detect available development tools at session start. Saves to .agent/tools.json and warns about missing required tools. Works with or without aoc CLI installed.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agent-ops-tools --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/agent/agent-ops-tools/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Tool Detection Skill Discover available development tools and save to `.agent/tools.json` for use by other skills. **Works with or without `aoc` CLI installed.** If `aoc` is not available, use the pure skill procedure below. ## CLI Integration (when aoc is installed) This skill wraps the `aoc tools` CLI commands: | Command | Purpose | |---------|---------| | `aoc tools scan` | Detect all available tools | | `aoc tools show <tool>` | Show details for specific tool | | `aoc tools export` | Export to JSON file | ## When to Invoke ### Automatic Invocation The skill runs automatically during: 1. **Session start** — detect tools before any work begins 2. **Constitution creation** — populate available build/test commands 3. **Baseline capture** — verify required tools exist ### Manual Invocation ``` /tools-detect /tools-check <tool-name> /tools-require <tool-list> ``` ## Procedure (with aoc CLI) ### 1. Detect Available Tools ```bash # Run tool detection aoc tools scan --json > .agent/tools.json ``` ### 2. Display Summary ``` 🔧 Tool Detection Results | Category | Tool | Version | Status | |----------|------|---------|--------| | Version Control | git | 2.43.0 | ✅ Available | | Version C

What's inside
Steps it walks through
  1. CLI Integration (when aoc is installed)
  2. When to Invoke
  3. Automatic Invocation
  4. Manual Invocation
  5. Procedure (with aoc CLI)
  6. 1. Detect Available Tools
  7. 2. Display Summary
  8. 3. Check Required Tools
  9. 4. Save to tools.json
  10. JSON Schema
  11. Tool Categories
  12. Supported Tools
  13. Version Control
  14. Node.js Ecosystem
Ships with 1 file
  • metadata.json
Commands it runs
Run tool detection
aoc tools scan --json > .agent/tools.json
Version Control
git --version 2>/dev/null | head -1
gh --version 2>/dev/null | head -1
Node.js Ecosystem
node --version 2>/dev/null
npm --version 2>/dev/null
pnpm --version 2>/dev/null
yarn --version 2>/dev/null
More from claude-skill-registry
All skills →
About this skill
What does the agent-ops-tools skill do?

Detect available development tools at session start. Saves to .agent/tools.json and warns about missing required tools. Works with or without aoc CLI installed.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agent-ops-tools --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.

Keep going