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.
git clone --depth 1 https://github.com/claude-market/marketplaceWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/claude-market/marketplace/sync)<a href="https://agentmods.dev/commands/claude-market/marketplace/sync"><img src="https://agentmods.dev/badge/commands/claude-market/marketplace/sync.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00015 | $0.03163 |
| Opus 5 | $0.00008 | $0.01581 |
| Sonnet 5 | $0.00003 | $0.00633 |
| Haiku 4.5 | $0.00002 | $0.00316 |
Grade A, and why
sync scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 581 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SpecForge Sync Command
Synchronize your codebase after manual changes to OpenAPI spec or database schema. This command detects changes and regenerates code to keep everything in sync.
Overview
The sync command is useful when:
- You've manually edited
spec/openapi.yaml - You've added/modified database migrations
- You've pulled changes from version control that include spec updates
- You need to regenerate code after resolving merge conflicts
Sync orchestrates:
- Detecting spec changes since last sync
- Validating updated specifications
- Regenerating type-safe code from schemas
- Identifying affected handlers that need updates
- Running tests to verify everything still works
Sync Process
Step 1: Detect Changes
Identify what has changed since the last successful build:
# Check for OpenAPI spec changes
if [ -f spec/openapi.yaml ]; then
echo "Checking OpenAPI spec for changes..."
# Compare with last known state (stored in .specforge/last-sync.json)
fi
# Check for new database migrations
echo "Checking for new migrations..."
ls -t migrations/*.sql | head -5
# Check for schema changes in existing migrations
git diff HEAD~1 migrations/ 2>/dev/null || echo "Not a git repository or no previous commits"
Categorize changes:
- OpenAPI only: New/modified endpoints, schemas, examples
- Database only: New migrations, schema alterations
- Both: Coordinated changes to API and database
Step 2: Validate Updated Specifications
Validate OpenAPI Spec
Use the openapi-expert skill:
Invoke openapi-expert skill with:
- action: "validate-spec"
- spec_path: "spec/openapi.yaml"
Validation checks:
- Valid OpenAPI 3.x syntax
- All $ref references resolve
- Request/response schemas are valid
- Examples match schemas
- No duplicate operation IDs
- Descriptions include business logic details
Validate Database Schema
Read SpecForge configuration to identify database plugin:
grep "database:" CLAUDE.md | cut -d: -f2 | tr -d ' '
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.
- 6d ago First seen · 581 lines · 15 tokens per session scan A 2cfe4ee1982b
sync is a command published in the GitHub repository claude-market/marketplace (22 stars, last pushed 10mo ago), licensed MIT. It adds 15 tokens to every session and 3,163 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
init
Initialize configurations for Supabase local development.
toh-connect
Connect app to Supabase backend with schema and RLS policies.
model-create
Create a new Django model following best-practice conventions.
services
Manage the connect service registry. Register API services and database connections, store credentials, set read-only vs write access, manage the destination allowlist, and report trust status.
p3-data-model
Designs the Data Model with entities and relationships as well as the API design with interface specification. The result is DATAMODEL.md and APISPEC.md as the binding foundation for implementation.
crud
Generates a complete CRUD domain in the house pattern (NestJS or Express + Prisma — picked by the project's real stack, multi-tenant).