straymark-ailog
Create an AILOG (AI Action Log) document for the current changes. Quick shortcut for the most common document type.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create an AILOG (AI Action Log) document for the current changes. Quick shortcut for the most common document type.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Maintain the follow-ups backlog registry — the canonical answer to "what's pending?". Session-start glance, pre-commit drift --apply, post-Charter-close triage (note / set-status), ex-ante creation at Charter declaration (new), and operator-gated promote. Thin wrapper over the straymark followups CLI; never edits CLI-owned counters by hand.
Maintain the follow-ups backlog registry — the canonical answer to "what's pending?". Session-start glance, pre-commit drift --apply, post-Charter-close triage (note / set-status), ex-ante creation at Charter declaration (new), and operator-gated promote. Thin wrapper over the straymark followups CLI; never edits CLI-owned counters by hand.
Execute an external audit of a Charter inside an auditor-side CLI (gemini-cli, claude-cli, copilot-cli, codex-cli). Reads the resolved audit prompt from the canonical location, audits with tool use, writes the report. Operator invokes one instance per CLI.
Generate the unified audit prompt for a Charter at the canonical filesystem location. The operator then opens N auditor-side CLIs (gemini-cli, claude-cli, copilot-cli, etc.) and invokes /straymark-audit-execute in each — no copy/paste. Counterpart of /straymark-audit-review.
Consolidate N external auditor reports into a critical review document with verdicts, remediation plan, and auditor ratings. Then merge the external_audit YAML block into the Charter telemetry. Counterpart of /straymark-audit-prompt and /straymark-audit-execute.
Execute an external audit of a Charter inside an auditor-side CLI (gemini-cli, claude-cli, copilot-cli, codex-cli). Reads the resolved audit prompt from the canonical location, audits with tool use, writes the report. Operator invokes one instance per CLI.
| name | straymark-ailog |
| description | Create an AILOG (AI Action Log) document for the current changes. Quick shortcut for the most common document type. |
Quickly create an AI Action Log (AILOG) document for the current changes.
This is a shortcut skill that creates AILOG documents directly.
# Get current date
date +%Y-%m-%d
# Get modified files
git status --porcelain
# Summarize the CURRENT work (staged + unstaged + untracked) — label each block.
# Avoid `HEAD~1`: it summarizes the previous commit, not the work being logged.
git diff --cached --stat # staged changes
git diff --stat # unstaged changes
git status --porcelain # includes untracked files
Always confirm before creating:
╔══════════════════════════════════════════════════════════════════╗
║ StrayMark AILOG ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ 📊 Changes detected: ║
║ • Files: [list of modified files] ║
║ • Lines: [+X / -Y] ║
║ ║
║ 📝 Will create: ║
║ AILOG-YYYY-MM-DD-NNN-[description].md ║
║ ║
║ Please provide a brief description of what was done: ║
╚══════════════════════════════════════════════════════════════════╝
# Count existing AILOGs for today
ls .straymark/07-ai-audit/agent-logs/AILOG-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
Next number = count + 1, formatted as 3 digits (001, 002, etc.)
Read .straymark/config.yml for language setting:
en (default): .straymark/templates/TEMPLATE-AILOG.mdes: .straymark/templates/i18n/es/TEMPLATE-AILOG.mdFill template with:
id: AILOG-YYYY-MM-DD-NNNtitle: User-provided descriptioncreated: Current dateagent: your runtime's canonical agent identity (see AGENT-RULES.md §1 — e.g. claude-code-v1.0, gemini-cli-v1.0, codex-cli-v1.0; do not assume Claude)confidence: based on change complexityrisk_level: based on files modifiedSave to: .straymark/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md
✅ AILOG created:
.straymark/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md
StrayMark: Created AILOG-YYYY-MM-DD-NNN-description.md
| Indicator | Risk Level |
|---|---|
| Config/settings changes | low |
| Business logic changes | medium |
| Auth, security, payments | high |
| Database schema, migrations | critical |
Terminal compatibility: If the terminal does not support box-drawing characters (Unicode), use plain-text formatting with dashes and pipes instead (e.g.,
+--+instead of╔══╗).