straymark-statuslisted
Install: claude install-skill StrangeDaysTech/straymark
# StrayMark Status Skill
This skill checks the documentation status of the StrayMark in the current project.
## Instructions
When invoked, perform the following checks and display the results:
### 1. Find Recent StrayMark Documents
Search for StrayMark documents created or modified in the last hour:
```bash
# Committed in the last hour
git log --since="1 hour ago" --name-only --pretty=format: -- ".straymark/**/*.md" | sort -u | grep -v "^$"
# PLUS uncommitted StrayMark docs (staged + unstaged + untracked) — this skill runs
# pre-commit, so newly created docs are usually NOT in the git log yet.
git status --porcelain -- ".straymark" | grep '\.md$'
```
If git is not available or the directory is not a git repo, use file modification times.
Check these directories for each document type:
| Type | Prefix | Directory |
|------|--------|-----------|
| AILOG | `AILOG-` | `.straymark/07-ai-audit/agent-logs/` |
| AIDEC | `AIDEC-` | `.straymark/07-ai-audit/decisions/` |
| ADR | `ADR-` | `.straymark/02-design/decisions/` |
| ETH | `ETH-` | `.straymark/07-ai-audit/ethical-reviews/` |
| REQ | `REQ-` | `.straymark/01-requirements/` |
| TES | `TES-` | `.straymark/04-testing/` |
| INC | `INC-` | `.straymark/05-operations/incidents/` |
| TDE | `TDE-` | `.straymark/06-evolution/technical-debt/` |
| SEC | `SEC-` | `.straymark/08-security/` |
| MCARD | `MCARD-` | `.straymark/09-ai-models/` |
| SBOM | `SBOM-` | `.straymark/07-ai-audit/` |
| DPIA | `DPIA-` | `.straymark/07-ai-audit/ethica