Agent skill · AI & Agents

agent-trace

Agent Trace仕様に基づくAI生成コードの帰属追跡・統計・管理スキル。編集履歴の確認、AI/人間の貢献率分析、コンプライアンス対応レポート生成。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agent-trace --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/agent/agent-trace/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. トリガー
  2. 機能概要
  3. 使用方法
  4. 統計を確認
  5. 最近のトレースを確認
  6. 特定ファイルのトレースを検索
  7. 自動記録の仕組み
  8. トレースレコード構造
  9. 貢献者タイプ
  10. 除外パターン
  11. コマンドリファレンス
  12. /agent-trace stats
  13. /agent-trace list [count]
  14. /agent-trace find <file-path>
Ships with 1 file
  • metadata.json
Commands it runs
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');
More from claude-skill-registry
All skills →
About this skill
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.

Keep going