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 skills/roboco-io/plugins/qanpx skills add roboco-io/plugins --skill qagit clone --depth 1 https://github.com/roboco-io/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.00035 | $0.00753 |
| Opus 5 | $0.00017 | $0.00377 |
| Sonnet 5 | $0.00007 | $0.00151 |
| Haiku 4.5 | $0.00003 | $0.00075 |
Grade A, and why
qa 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 yesterday.
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.
What it actually says
Q&A Recording Skill
기술적/수학적 개념에 대한 질문과 답변을 구조화된 문서로 기록합니다.
사용법
/qa <질문 또는 개념>
예시
/qa Persistent Homology가 뭐야?
/qa Takens embedding의 수학적 원리
/qa Simplicial complex와 graph의 차이점
/qa React Server Components 동작 방식
동작
- 전달된 질문/개념을 분석하고 카테고리 분류
- 체계적이고 명확한 답변 작성
docs/qa/디렉토리에 마크다운 파일로 저장
파일 저장 규칙
- 파일명:
YYYYMMDD-HHMMSS-<slug>.md- 예:
20260118-143052-persistent-homology.md
- 예:
- 저장 위치:
docs/qa/ - 디렉토리가 없으면 자동 생성
파일 구조
---
date: YYYY-MM-DD HH:MM:SS
tags: [관련 태그들]
category: <카테고리>
---
# Q: <질문>
## A: <답변 제목>
<상세 설명>
### 핵심 개념
- ...
### 수학적 정의 (해당시)
- ...
### 예시
- ...
### 관련 개념
- ...
카테고리 분류
| 카테고리 | 설명 | 예시 |
|---|---|---|
math |
수학 전반 | 선형대수, 미적분, 확률론 |
topology |
위상수학 | Persistent Homology, Simplicial Complex |
algebra |
대수학 | Tensor, Matrix Decomposition |
geometry |
기하학 | Manifold, Embedding |
ml |
머신러닝 | Neural Network, Optimization |
statistics |
통계학 | Bayesian, Hypothesis Testing |
cs |
컴퓨터 과학 | Algorithm, Data Structure |
web |
웹 기술 | React, HTTP, REST |
infra |
인프라 | Docker, Kubernetes, AWS |
general |
기타 | 분류 불가한 항목 |
작성 지침
- 직관성: 12살도 이해할 수 있게 직관적으로 설명. 일상적인 비유와 쉬운 예시를 먼저 제시
- 명확성: 직관적 설명 후 학문적 엄밀성을 갖춘 정의 제공
- 구조화: 직관적 설명 → 정의 → 예시 → 응용 순서로 설명
- 시각화: 가능하면 Mermaid 다이어그램 (흑백) 사용
- 연결성: 관련 개념이 있으면 언급
- 실용성: 현재 프로젝트와의 연관성이 있으면 언급
실행 절차
- 질문 분석 및 카테고리 분류
- 체계적인 답변 작성
docs/qa/디렉토리 확인 (없으면 생성)- 파일 저장
- 저장 완료 메시지 출력
질문: $ARGUMENTS
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.
- yesterday First seen · 99 lines · 35 tokens per session scan A 09044e9635b7
qa is a skill published in the GitHub repository roboco-io/plugins (21 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 753 once invoked, about $0.0002 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 skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…