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 skills add arianlopezc/Trabuco --skill new-projectgit clone --depth 1 https://github.com/arianlopezc/TrabucoWrote 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/skills/arianlopezc/trabuco/new-project)<a href="https://agentmods.dev/skills/arianlopezc/trabuco/new-project"><img src="https://agentmods.dev/badge/skills/arianlopezc/trabuco/new-project/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/arianlopezc/trabuco/new-project"><img src="https://agentmods.dev/badge/skills/arianlopezc/trabuco/new-project.svg" alt="Reviewed on agentmods" width="80" 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.00052 | $0.01222 |
| Opus 5 | $0.00026 | $0.00611 |
| Sonnet 5 | $0.00010 | $0.00244 |
| Haiku 4.5 | $0.00005 | $0.00122 |
Grade A, and why
new-project 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 9d 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 — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Start a new Trabuco project
Guide the user from a natural-language requirement to a generated, opinionated Java/Spring Boot project.
Flow
-
Preflight: call
mcp__trabuco__get_versionto confirm the CLI is reachable. If it errors, tell the user to install trabuco (https://github.com/arianlopezc/Trabuco/releases) and stop. Callmcp__trabuco__check_docker— Trabuco needs Docker for Testcontainers. If Docker isn't running, warn but continue (user can start it later). -
Clarify intent: if the argument is missing or vague ("make me a service"), ask 2–3 tight questions:
- What does it do? (one sentence)
- Relational or document store? If unsure, ask what entities they'll model.
- Sync (REST-only) or async (events, jobs, both)?
- AI agent involved? (enables the AIAgent module with A2A + MCP + guardrails)
-
Recommend: call
mcp__trabuco__suggest_architecturewith the requirements. It returns matched patterns + arecommendedConfig. Present the recommendation with rationale grounded in the returned data — never invent modules that weren't in the response. If confidence is low or the top two patterns score close, surface the ambiguity and ask the user to pick. -
Confirm parameters: before generating, confirm with the user:
- project name (kebab-case, e.g.,
order-service) - group ID (
com.company.project) - Java version (21 default; 25 if they want latest LTS)
- Modules (from the recommendation; let them add/drop)
- Database / broker choices
- AI agents to integrate (
claude,cursor,codex,copilot— default all four since the plugin is Claude-focused but the user may pair-tool)
- project name (kebab-case, e.g.,
-
Generate: call
mcp__trabuco__init_projectwith the confirmed parameters. Includeskip_build: trueon the first pass so the user sees the tree before Maven runs. Report the output directory when done. -
Next steps: once generated, tell the user:
cd <project>and runmvn clean installto verify build- If AIAgent module was included,
mvn spring-boot:run -pl AIAgentstarts the agent with MCP + A2A surfaces - If API or AIAgent was selected: OIDC Resource Server scaffolding has been generated. The app refuses to boot until
trabuco.auth.enabledis set explicitly totrueorfalse(SecurityConfig#validateAuthDecisionMadeenforces this) — a deliberate guardrail so no project ever ships with neither filter chain wired. To turn auth on, set all three:trabuco.auth.enabled=true,OIDC_ISSUER_URI=<your IdP discovery endpoint>,OIDC_AUDIENCE=<your service's API identifier>— the validator requires audience to close the silent-empty-default token-confusion class of bugs. To run locally without an IdP, settrabuco.auth.enabled=false; for AIAgent, that mode also operates on the legacy API-key path. Seedocs/auth.mdin the generated project for per-provider recipes. - Skills like
/add-entity,/add-endpoint,/add-testare now available inside the generated project's .claude/skills/ - Security audit available:
/audit(in-project) or/trabuco:audit(plugin form, also works) runs the full 173-check security review — orchestrator + 5 domain specialists in parallel, writes.ai/security-audit/findings.mdwith PASS/FAIL verdict. Trigger before merging a PR that touches a security boundary or as a periodic deep sweep. Per-turn/reviewcovers OWASP basics inline;/auditis the deliberate deep sweep. - Ask if they want you to pre-add an entity or endpoint (delegate to
/add-moduleor direct MCP tool calls)
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.
- 9d ago First seen · 54 lines · 52 tokens per session scan A 475ba3ef97d6
new-project is a skill published in the GitHub repository arianlopezc/Trabuco (0 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 1,222 once invoked, about $0.0003 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-31.
Other skills, from other repositories
wxjava-module-selector
A decision guide for choosing the correct WxJava Maven module, dependency management file, and example for a WeChat use case. WxJava is a Java software development kit for services such as official accounts, mini programs, and payments.
wxjava-api-contributor
A contributor guide for adding or maintaining official WeChat API support in WxJava, a Java software development kit. It covers services, request and response data objects, data conversion, HTTP handling, starter configuration, and regression tests.
azure-communication-callautomation-java
Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-powered call flows.
azure-communication-chat-java
Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time chat features.
azure-communication-common-java
Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.
azure-communication-sms-java
Send SMS messages with Azure Communication Services SMS Java SDK. Use when implementing SMS notifications, alerts, OTP delivery, bulk messaging, or delivery reports.