Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/jhlee0409/claude-plugins/syncgit clone --depth 1 https://github.com/jhlee0409/claude-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00020 | $0.03667 |
| Opus 5 | $0.00010 | $0.01834 |
| Sonnet 5 | $0.00004 | $0.00733 |
| Haiku 4.5 | $0.00002 | $0.00367 |
Grade A, and why
sync scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
const response = await fetch(USER_API_PATHS.detail(id)) How it starts
The opening of the file, as written. The whole thing — 580 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenAPI Sync
Generate or update API code based on OpenAPI spec and detected project patterns.
EXECUTION INSTRUCTIONS
When /oas:sync is invoked, Claude MUST perform these steps in order:
Step 0: MCP Dependency Check
Invoke skill: mcp-dependency
- Verify OpenAPI Sync MCP server is installed
- If not available, offer to install via
npm install -g @jhlee0409/openapi-sync-mcp - Only proceed after MCP is confirmed available
- Check prerequisites - Verify
.openapi-sync.jsonexists (run/oas:initif not) - Use skill: cache-manager - Check cache, fetch spec if needed
- Use skill: openapi-parser - Parse spec, compute diff with cache
- Show diff summary - Display changes to user
- Get user confirmation - Proceed or select specific items
- Use skill: code-generator - Generate code matching project patterns
- Update cache - Save new state to cache files
- Report results - Show generated/updated files
Prerequisites
- Check
.openapi-sync.jsonexists - if not, run/oas:init - Load config and detected patterns
Sync Process (Smart Caching - Default)
Step 0: Smart Cache Check
Use skill: cache-manager
Smart caching: Fast when unchanged, accurate when changed.
1. Check cache exists
- .openapi-sync.cache.json (spec cache)
- .openapi-sync.state.json (implementation state)
2. Smart validation (not full fetch!)
- Remote URL → HEAD request (check ETag/Last-Modified)
- Local file → Check file mtime
3. Decision
- Unchanged → Use cached spec (fast ⚡)
- Changed → Full fetch, update cache
- --force → Always full fetch
- --offline → Use cache only
Output (cache hit):
/oas:sync
✅ Using cached spec (ETag unchanged)
Last sync: 2 hours ago
Checking 150 endpoints against codebase...
✅ All endpoints up to date
No changes needed.
Output (cache miss):
/oas:sync
🔄 Spec changed, fetching updates...
ETag: "abc123" → "def456"
Fetching spec...
📥 Downloaded 150 endpoints
Checking against codebase...
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 580 lines · 20 tokens per session scan A 64a405cbfcbb
sync is a command published in the GitHub repository jhlee0409/claude-plugins (4 stars, last pushed 7mo ago), licensed MIT. It adds 20 tokens to every session and 3,667 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
brand-setup
Configure a new brand profile with colors, fonts, logo, visual style, platforms, and compliance rules.
save
Save this conversation as a new or existing reusable context.
graphify
Turn your vault into a clustered knowledge graph with HTML and JSON outputs.
screens
Structures product UX screen design — inventory, flow, states, and reusable briefs for external design tools — without generating pixels or UI code.
index
Command "index" from MadaraUchiha-314/the-loop, covering commands, the control plane, daemon commands, repo-scoped commands and maintenance.
review
Cold re-quiz on code that already shipped — your own session commits, not the change in front of you.