← スキル一覧に戻る

fixlog-writer
by Mic23-01
🚀 Antigravity: The definitive template for production-grade Autonomous Agents. Hybrid architecture, dual-layer memory (ChromaDB + Filesystem), sequential thinking, battle-tested guardrails. From concept to deployment in minutes
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: fixlog_writer description: Standardizes FixLog writing and handles Chrome persistence. version: 1.0.0 author: Antigravity
Operational Instructions
Triggers
- At the end of every workflow involving modifications (
tech_rag,refactor). - When a technical intervention needs to be tracked (Step 6 Persistence).
Inputs
- Prefix: (from
PROJECT_AGENT_CONFIG.md) Project prefix. - ProjectName: (from
PROJECT_AGENT_CONFIG.md) Project name. - Log Data: JSON containing
id,document(description), andmetadatas(project, type, date, files, tests, result).
CLI Parameters (write_log.py)
uv run .agent/skills/fixlog_writer/scripts/write_log.py \
--project "ProjectName" \
--prefix "PREFIX" \
--desc "Description of the fix" \
--files "file1.py,file2.js" \
--test "Test description" \
--result "pass" # ⚠️ VALID VALUES: "pass" or "fail" (NOT "success"!)
Critical Parameter Values:
--result: ONLY accepts"pass"or"fail"(enforced by argparse choices)--files: Comma-separated list of file paths (will be split into array)
Steps
- Prepare Data: Collect intervention data.
- Format JSON: Create a JSON structure compatible with Chroma.
- Persist (Dual Write):
- Write to
.agent/fix_logs/<ID>.json. - Upsert to ChromaDB collection
fix_logs.
- Write to
- Verification: Confirm file exists and Chroma entry is searchable.
Usage Example
uv run .agent/skills/fixlog_writer/scripts/write_log.py \
--project "Antigravity" \
--prefix "AG" \
--desc "Fixed critical bug in authentication flow" \
--files "src/auth.py,tests/test_auth.py" \
--test "pytest tests/test_auth.py - all passed" \
--result "pass"
スコア
総合スコア
75/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です
