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 tutur3u/platform --skill tuturuuu-ci-docsgit clone --depth 1 https://github.com/tutur3u/platformWrote 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/tutur3u/platform/tuturuuu-ci-docs)<a href="https://agentmods.dev/skills/tutur3u/platform/tuturuuu-ci-docs"><img src="https://agentmods.dev/badge/skills/tutur3u/platform/tuturuuu-ci-docs/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/tutur3u/platform/tuturuuu-ci-docs"><img src="https://agentmods.dev/badge/skills/tutur3u/platform/tuturuuu-ci-docs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00022 | $0.00501 |
| Opus 5 | $0.00011 | $0.00251 |
| Sonnet 5 | $0.00004 | $0.00100 |
| Haiku 4.5 | $0.00002 | $0.00050 |
Grade A, and why
tuturuuu-ci-docs 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 4d 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 — 48 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tuturuuu CI Docs
Core Workflow
For CI changes, inspect the existing workflow family before adding a new file. Most workflows use .github/workflows/ci-check.yml as a reusable switchboard and are enabled from tuturuuu.ts.
For docs changes, update the MDX page and apps/docs/docs.json together when adding a new page. A page that is not in docs.json is not discoverable in the docs site.
Consult references/ci-docs-checklist.md for workflow wiring or docs navigation changes.
Read references/blue-green-patterns.md when CI/docs work touches Docker web
deployment, blue/green watcher behavior, BuildKit, monitoring, or deployment
runbooks that used to live in root AGENTS.md.
If the user asks to commit the finished work, route to $tuturuuu-commit and
keep docs, CI, and validator changes split only when they are independently
revertible.
CI Patterns
- Prefer narrow validation jobs that do not install the full monorepo unless the check needs dependencies.
- Keep plugin and script validators standard-library based when feasible so CI stays fast and stable.
- Add new workflows to
tuturuuu.tsso the repo CI switchboard can enable or disable them consistently. - Use read-only permissions for validation jobs unless a workflow truly writes commits, comments, or artifacts.
- Finite builds needed to validate the authorized change may run; starting a long-lived server requires the runtime task to need it. Deployment authority remains separate.
Documentation Patterns
- Put durable team-facing knowledge in
apps/docs. - Prefer updating an existing page when the topic already fits the docs tree.
- Add new pages to
apps/docs/docs.jsonin the relevant navigation group. - Document validation commands and known environment requirements next to the workflow they support.
- Keep runbooks operational and specific: paths, commands, failure modes, and expected outputs are more useful than broad prose.
Verification
For CI and docs work:
- Run the changed validator directly.
- Parse changed JSON with
python3 -m json.tool. - Run formatter/linter commands required by the repo for touched files.
- Run
git diff --check. - If root TypeScript config changed, finish with
bun checkwhen feasible.
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago Changed · -41 tokens per session 99ccaa392706
- 7d ago First seen · 48 lines · 63 tokens per session scan A 82946a832a7a
tuturuuu-ci-docs is a skill published in the GitHub repository tutur3u/platform (53 stars, last pushed today), licensed Apache-2.0. It adds 22 tokens to every session and 501 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-09-03.
Other skills, from other repositories
magic-ui
Use this skill when users want to add, customize, or troubleshoot Magic UI components in React/Next.js projects. It covers component selection, shadcn registry installation (@magicui/), integration patterns, and practical quality checks for accessibility and maintainability.
frontend-engineer
!cat skills/shared/protocols/ux-protocol.md 2>/dev/null || true !cat skills/shared/protocols/input-validation.md 2>/dev/null || true !cat skills/shared/protocols/tool-efficiency.md 2>/dev/null || true !cat .production-grade.yaml 2>/dev/null || echo "No config — using defaults" !cat .forgewright/codebase-context.md…
nextjs-pages-router
Set up tRPC in Next.js Pages Router with createNextApiHandler, createTRPCNext, withTRPC HOC, SSR via ssr option and ssrPrepass, SSG via createServerSideHelpers with getStaticProps, and server-side helpers for getServerSideProps prefetching.
react-query-setup
Set up @trpc/tanstack-react-query with createTRPCContext(), TRPCProvider, useTRPC() hook, queryOptions/mutationOptions factories, query invalidation via queryClient.invalidateQueries with queryFilter, and type inference with inferInput/inferOutput.
server-side-calls
Call tRPC procedures directly from server code using t.createCallerFactory() and router.createCaller(context) for integration testing, internal server logic, and custom API endpoints. Catch TRPCError and extract HTTP status with getHTTPStatusCodeFromError(). Error handling via onError option.
trpc-router
Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.