Borrowing it
Nothing to install: this file belongs to j5ik2o/oni-comb-rs. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/j5ik2o/oni-comb-rs/main/.agents/skills/takt-skill-updater/SKILL.mdgit clone --depth 1 https://github.com/j5ik2o/oni-comb-rsWrote 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/j5ik2o/oni-comb-rs/takt-skill-updater)<a href="https://agentmods.dev/skills/j5ik2o/oni-comb-rs/takt-skill-updater"><img src="https://agentmods.dev/badge/skills/j5ik2o/oni-comb-rs/takt-skill-updater/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/j5ik2o/oni-comb-rs/takt-skill-updater"><img src="https://agentmods.dev/badge/skills/j5ik2o/oni-comb-rs/takt-skill-updater.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.00167 | $0.04185 |
| Opus 5 | $0.00084 | $0.02093 |
| Sonnet 5 | $0.00033 | $0.00837 |
| Haiku 4.5 | $0.00017 | $0.00419 |
Grade A, and why
takt-skill-updater 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 10d 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 — 279 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TAKT Skill Updater
references/taktサブモジュール更新後に、takt-*スキル群を最新バージョンに追従させる。
前提 takt バージョン: v0.31.0
パス表記について
本スキルでは skills/ で始まるパスを使用する。実際のパスは実行環境に応じて読み替える:
| 環境 | プレフィックス |
|---|---|
| Claude Code | .claude/skills/ |
| Codex CLI | .codex/skills/ |
| 共通(実体) | .agents/skills/ |
対象スキル
| スキル | 実体パス | チェック対象 |
|---|---|---|
| takt-task-builder | skills/takt-task-builder/SKILL.md |
TaskRecordスキーマ、ステータス遷移、フィールド一覧 |
| takt-piece-builder | skills/takt-piece-builder/SKILL.md |
ビルトインピース一覧、YAML構造、新機能フィールド |
| takt-facet-builder | skills/takt-facet-builder/SKILL.md |
ファセット種別、スタイルガイド参照パス |
| takt-analyzer | skills/takt-analyzer/SKILL.md |
エンジン仕様参照、ビルトインパス |
| takt-optimizer | skills/takt-optimizer/SKILL.md |
ログ形式、最適化パラメータ |
ワークフロー
Step 1: takt バージョン確認
references/taktの現在のバージョンと、各スキルが前提とするバージョンを比較する。
# 現在のサブモジュールバージョン
NEW_VERSION=$(cd references/takt && git describe --tags --abbrev=0)
echo "現在のtaktバージョン: ${NEW_VERSION}"
# 各スキルの前提バージョン(旧バージョンの特定に使う)
grep -r "前提 takt バージョン" skills/takt-*-builder/SKILL.md skills/takt-analyzer/SKILL.md skills/takt-optimizer/SKILL.md
各スキルの前提バージョンから旧バージョン(OLD_VERSION)を特定する。全スキルが同じバージョンであればその値を使う。異なる場合は最も古いバージョンを OLD_VERSION とする。
OLD_VERSION と NEW_VERSION が一致していれば更新不要。差分がある場合は Step 1.5 に進む。
Step 1.5: リファレンスファイルの同期
サブモジュール更新後、各スキルの references/takt/ ディレクトリにリファレンスファイルを同期する。
rsync --delete により、サブモジュール側で削除されたファイルもスキル側から自動的に削除される。
# dry-run で確認
scripts/sync-takt-references.sh --dry-run
# 問題なければ実行
scripts/sync-takt-references.sh
各スキルには自身が参照する takt リソースのサブセットのみが同期される。
同期対象の定義は scripts/sync-takt-references.sh 内の各スキルセクションを参照。
Step 2: タグ間差分の取得
旧バージョンと現バージョン間の差分を取得し、どのスキルに影響があるかを判定する。
cd references/takt
# 変更されたファイル一覧
git diff --name-only ${OLD_VERSION}..${NEW_VERSION}
# 変更の統計(追加/削除行数)
git diff --stat ${OLD_VERSION}..${NEW_VERSION}
# 変更履歴(コミットメッセージ)
git log --oneline ${OLD_VERSION}..${NEW_VERSION}
影響スキルの判定
変更されたファイルパスから影響スキルを判定する。該当しないスキルは以降のステップをスキップする。
What ships with it
60 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.
- references/takt/builtins/ja/config.yaml 5.1 KB
- references/takt/builtins/ja/facets/instructions/ai-fix.md 2.2 KB
- references/takt/builtins/ja/facets/instructions/ai-review.md 901 B
- references/takt/builtins/ja/facets/instructions/arbitrate.md 677 B
- references/takt/builtins/ja/facets/instructions/architect.md 762 B
- references/takt/builtins/ja/facets/instructions/dual-team-leader-implement.md 2.3 KB
- references/takt/builtins/ja/facets/instructions/fix-supervisor.md 863 B
- references/takt/builtins/ja/facets/instructions/fix.md 1.7 KB
- references/takt/builtins/ja/facets/instructions/gather-review.md 2.7 KB
- references/takt/builtins/ja/facets/instructions/implement-after-tests.md 3.1 KB
- references/takt/builtins/ja/facets/instructions/implement-e2e-test.md 1.7 KB
- references/takt/builtins/ja/facets/instructions/implement-terraform.md 1.8 KB
- references/takt/builtins/ja/facets/instructions/implement-test.md 1.6 KB
- references/takt/builtins/ja/facets/instructions/implement.md 2.9 KB
- references/takt/builtins/ja/facets/instructions/loop-monitor-ai-fix.md 529 B
- references/takt/builtins/ja/facets/instructions/loop-monitor-reviewers-fix.md 515 B
- references/takt/builtins/ja/facets/instructions/plan-e2e-test.md 791 B
- references/takt/builtins/ja/facets/instructions/plan-investigate.md 693 B
- references/takt/builtins/ja/facets/instructions/plan-test.md 750 B
- references/takt/builtins/ja/facets/instructions/plan.md 2.3 KB
- references/takt/builtins/ja/facets/instructions/research-analyze.md 1.1 KB
- references/takt/builtins/ja/facets/instructions/research-dig.md 1.7 KB
- references/takt/builtins/ja/facets/instructions/research-plan.md 573 B
- references/takt/builtins/ja/facets/instructions/research-supervise.md 549 B
- references/takt/builtins/ja/facets/instructions/review-ai.md 560 B
- references/takt/builtins/ja/facets/instructions/review-arch.md 1.7 KB
- references/takt/builtins/ja/facets/instructions/review-cqrs-es.md 1.3 KB
- references/takt/builtins/ja/facets/instructions/review-frontend.md 1.2 KB
- references/takt/builtins/ja/facets/instructions/review-qa.md 1.4 KB
- references/takt/builtins/ja/facets/instructions/review-requirements.md 1.5 KB
- references/takt/builtins/ja/facets/instructions/review-security.md 964 B
- references/takt/builtins/ja/facets/instructions/review-terraform.md 1.8 KB
- references/takt/builtins/ja/facets/instructions/review-test.md 1.0 KB
- references/takt/builtins/ja/facets/instructions/supervise.md 2.4 KB
- references/takt/builtins/ja/facets/instructions/team-leader-implement.md 1.9 KB
- references/takt/builtins/ja/facets/instructions/write-tests-first.md 2.4 KB
- references/takt/builtins/ja/facets/knowledge/architecture.md 17 KB
- references/takt/builtins/ja/facets/knowledge/backend.md 18 KB
- references/takt/builtins/ja/facets/knowledge/cqrs-es.md 24 KB
- references/takt/builtins/ja/facets/knowledge/frontend.md 26 KB
- references/takt/builtins/ja/facets/knowledge/research-comparative.md 1.3 KB
- references/takt/builtins/ja/facets/knowledge/research.md 2.3 KB
- references/takt/builtins/ja/facets/knowledge/security.md 7.3 KB
- references/takt/builtins/ja/facets/knowledge/takt.md 5.7 KB
- references/takt/builtins/ja/facets/knowledge/task-decomposition.md 2.7 KB
- references/takt/builtins/ja/facets/knowledge/terraform-aws.md 7.7 KB
- references/takt/builtins/ja/facets/output-contracts/ai-review.md 1.8 KB
- references/takt/builtins/ja/facets/output-contracts/architecture-design.md 419 B
- references/takt/builtins/ja/facets/output-contracts/architecture-review.md 1.8 KB
- references/takt/builtins/ja/facets/output-contracts/coder-decisions.md 185 B
- references/takt/builtins/ja/facets/output-contracts/coder-scope.md 301 B
- references/takt/builtins/ja/facets/output-contracts/cqrs-es-review.md 1.8 KB
- references/takt/builtins/ja/facets/output-contracts/frontend-review.md 1.7 KB
- references/takt/builtins/ja/facets/output-contracts/plan.md 794 B
- references/takt/builtins/ja/facets/output-contracts/qa-review.md 1.6 KB
- references/takt/builtins/ja/facets/output-contracts/requirements-review.md 1.9 KB
- references/takt/builtins/ja/facets/output-contracts/research-report.md 613 B
- references/takt/builtins/ja/facets/output-contracts/review-gather.md 1.1 KB
- references/takt/builtins/ja/facets/output-contracts/security-review.md 1.9 KB
- references/takt/builtins/ja/facets/output-contracts/summary.md 283 B
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.
- 10d ago First seen · 279 lines · 167 tokens per session scan A 2945adeb81e9
takt-skill-updater is a skill published in the GitHub repository j5ik2o/oni-comb-rs (41 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 167 tokens to every session and 4,185 once invoked, about $0.0008 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-01.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
workthreads
SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
magpie-security-issue-import-from-md
Open one or more tracking issues from a markdown file containing a batch of security findings. Each finding becomes one tracker landing in the Needs triage board column. The file itself is the full report — there is no inbound reporter to reply to and no PR to inspect.
remove
Remove a deployed framework or addon from the current workspace.
handle-linkedin-connection-request-signal
Use this skill when someone sends a team member an inbound LinkedIn connection request. An inbound request is a deliberate, ACTIVE first-party intent signal — meaningfully stronger than a passive profile view — and it deserves different scoring rules. The skill resolves and enriches the requester, gates them through…