agent-trace
Agent Trace仕様に基づくAI生成コードの帰属追跡・統計・管理スキル。編集履歴の確認、AI/人間の貢献率分析、コンプライアンス対応レポート生成。
npx skills add majiayu000/claude-skill-registry --skill agent-trace --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Agent Trace - AI生成コード帰属追跡スキル Agent Trace仕様(v0.1.0)に基づくAI生成コードの帰属追跡・管理スキル。 自動記録されたトレースの確認、統計分析、レポート生成を支援。 ## トリガー 以下のキーワードで発動: - 「トレースを確認」「トレース一覧」「Agent Trace」 - 「AI貢献率」「誰が書いた」「帰属確認」 - 「コード履歴」「編集履歴」 - `/agent-trace` ## 機能概要 ``` ┌─────────────────────────────────────────────────────────────┐ │ Agent Trace Management │ ├─────────────────────────────────────────────────────────────┤ │ 📊 統計表示 - AI/人間の貢献率、モデル別統計 │ │ 📋 一覧表示 - 最近のトレース一覧 │ │ 🔍 検索 - ファイル別、日付別のトレース検索 │ │ 📄 レポート生成 - コンプライアンス用レポート │ │ 🗄️ アーカイブ - 古いトレースの整理 │ └─────────────────────────────────────────────────────────────┘ ``` ## 使用方法 ### 統計を確認 ```bash # プロジェクトの統計を表示 node -e " const { TraceStore } = require('./.claude/lib/trace-store.ts'); const store = new TraceStore(process.cwd()); const stats = store.getStatistics(); console.log(JSON.stringify(stats, null, 2)); " ``` ### 最近のトレースを確認 ```bash # 最新10件のトレースを表示 node -e " const { TraceStore } = require('./.claude/lib/trace-store.ts'); const store = new TraceStore(process.cwd()); const traces = store.list(10); traces.forEach(t => { console.log(\`[\${t.timestamp}] \${t.files.map(f => f.path).join(', ')}\`); }); " ``` ### 特定ファイルのトレースを検索 ```bash # src/api/auth.ts のトレース履歴を表示 node -e
- トリガー
- 機能概要
- 使用方法
- 統計を確認
- 最近のトレースを確認
- 特定ファイルのトレースを検索
- 自動記録の仕組み
- トレースレコード構造
- 貢献者タイプ
- 除外パターン
- コマンドリファレンス
- /agent-trace stats
- /agent-trace list [count]
- /agent-trace find <file-path>
node -e "
const { TraceStore } = require('./.claude/lib/trace-store.ts');
const store = new TraceStore(process.cwd());
const stats = store.getStatistics();
const traces = store.list(10);
src/api/auth.ts のトレース履歴を表示
const traces = store.findByFile('src/api/auth.ts');What does the agent-trace skill do?
Agent Trace仕様に基づくAI生成コードの帰属追跡・統計・管理スキル。編集履歴の確認、AI/人間の貢献率分析、コンプライアンス対応レポート生成。
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-trace --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
