KB: todo-app
← All workspaces3864 results — page 29 of 78
| Title | Domain | Type | Severity | Source | Freshness | Updated |
|---|---|---|---|---|---|---|
| [Tool usage] qa-ops: 6. Create PR | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
git add .
git commit -m "feat: description
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>"
git push -u origin {branch}
gh pr create --title "{title}" --body "{description}"
```
Report: PR URL
|
||||||
| [Tool usage] qa-ops: 5. Build Assets | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
npm run build
```
Report: Build success/failure, asset sizes
|
||||||
| [Tool usage] qa-ops: 4. Validate Code Quality | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
vendor/bin/phpstan analyse
vendor/bin/phpcs
npm run lint
```
Report: Errors/warnings count, blocker issues
|
||||||
| [Tool usage] qa-ops: 3. Run Test Suite | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
php artisan test --parallel
```
Report: Pass/fail count, any failures with details
|
||||||
| [Tool usage] qa-ops: 2. Run Migrations Only | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
php artisan migrate --force
php artisan migrate:status
```
Report: Migrations applied, status
|
||||||
| [Guardrail] qa-ops: 1. Post-Parallel Integration (orchestrator calls this) | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**Full integration workflow after all parallel agents finish:**
```bash
# Step -1: CACHE INVALIDATION (MANDATORY FIRST!)
echo "🧹 Clearing all caches FIRST (prevents stale code bugs)..."
php artisan queue:restart
php artisan optimize:clear
npm run build
sleep 5
echo "✅ Caches cleared, queue workers restarting"
# Step 0: SAFETY CHECKS (CRITICAL!)
echo "🔒 Running safety checks..."
# 🚨 CRITICAL: THIS IS LIVE PRODUCTION DATABASE!
# - NO staging environment exists
# - NO separate dev database
# -...
|
||||||
| [Tool usage] qa-ops: Tools | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**Database:**
```bash
php artisan migrate # Run migrations
php artisan migrate:status # Check migration status
php artisan migrate:rollback # Rollback last migration
php artisan db:seed # Run seeders
php artisan db:seed --class={name} # Specific seeder
```
**Build:**
```bash
npm run build # Production build
npm run dev # Development build
php artisan optimize # Optimize Laravel
php...
|
||||||
| [Guardrail] qa-ops: CACHE INVALIDATION - MANDATORY (NEW!) | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**⚠️ CRITICAL: Code changes are INVISIBLE until caches are cleared!**
**History:** Multiple LLM agents have wasted 2-10+ HOURS debugging "bugs" that were
actually just old cached code. Queue workers hold PHP code in memory!
**MANDATORY in Post-Parallel Integration:**
```bash
# BEFORE running tests, ALWAYS clear caches:
php artisan queue:restart && php artisan optimize:clear && npm run build && sleep 5
```
**Why this matters for QA:**
- Tests will pass/fail based on OLD code if caches aren't...
|
||||||
| [Guardrail] qa-ops: FORBIDDEN #4: Destructive Database Commands | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# ❌ NEVER ON PRODUCTION:
php artisan migrate:fresh # CATASTROPHIC
php artisan migrate:reset # CATASTROPHIC
php artisan db:wipe # CATASTROPHIC
```
**Safety is MANDATORY. These rules cannot be bypassed.**
skills: [_gap-posting]
---
|
||||||
| [Guardrail] qa-ops: FORBIDDEN #3: `git push --force` | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# ❌ NEVER without explicit approval:
git push --force
# If user requests it, ask:
# "⚠️ Force push overwrites remote history. Confirm? (yes/no)"
```
|
||||||
| [Guardrail] qa-ops: FORBIDDEN #2: Cleanup Before Safety Check | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# ❌ NEVER skip safety checks:
git worktree remove <path> # Without verifying merge status
git branch -D <branch> # Without verifying merge status
# ✅ CORRECT: cleanup-worktrees.sh runs safety check FIRST
# It will BLOCK if branches unmerged or changes uncommitted
```
|
||||||
| [Guardrail] qa-ops: FORBIDDEN #1: `git reset --hard` | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# ❌ NEVER RUN - DESTROYS UNCOMMITTED WORK:
git reset --hard HEAD
git reset --hard origin/main
# INCIDENT (2025-11-20): Lost commits = production bugs
# INCIDENT (2025-11-20 LATER): Another orchestrator did it again!
# NO EXCEPTIONS - NEVER USE THIS COMMAND
```
|
||||||
| [Guardrail] qa-ops: GIT FORBIDDEN OPERATIONS (CRITICAL - READ FIRST!) | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**⚠️ MANDATORY: Read docs/llm/CRITICAL_SAFETY_CHECKS.md before ANY git operations!**
**THESE COMMANDS ARE ABSOLUTELY FORBIDDEN - NEVER USE THEM:**
|
||||||
| [Guardrail] qa-ops: Sudo Access Policy | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**CRITICAL:** You do NOT have sudo privileges and cannot execute privileged commands.
**If sudo is required:**
1. Stop and inform the user clearly
2. Provide exact command to run
3. Wait for user confirmation before proceeding
4. Document the requirement in your report
**Example:**
```
⚠️ SUDO REQUIRED
Cannot proceed without administrator privileges.
Please run manually:
sudo systemctl restart nginx
Let me know when complete.
```
**Never:**
- Attempt sudo commands directly
- Proceed...
|
||||||
| [Guardrail] qa-ops: File Permissions Policy | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**CRITICAL:** Claude Code Write tool creates files with 600 permissions (owner-only), causing www-data read failures.
**MANDATORY after creating files:**
```bash
./coordination/scripts/fix-permissions.sh
```
**Why 644 is required:**
- 600 = rw------- (only owner can read) ❌
- 644 = rw-r--r-- (www-data can read) ✅
**Symptoms of wrong permissions:**
- "Permission denied" in Laravel logs
- "Kunne ikke laste detaljer" in frontend
- Analysis/Blade rendering failures
**Full protocol:** See...
|
||||||
| [Guardrail] qa-ops: MCP Tools (Always Available) | claude/agents/qa-ops | gotcha | high | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
All MCP servers are active (deferred loading — 0 cost until first use). For QA work:
**Quick Fetch — load these for QA work:**
```
# Code navigation
ToolSearch("select:mcp__serena__find_symbol,mcp__serena__get_symbols_overview,mcp__serena__find_referencing_symbols")
# UI/browser testing
ToolSearch("select:mcp__playwright__browser_navigate,mcp__playwright__browser_snapshot,mcp__playwright__browser_take_screenshot")
# Database
ToolSearch("select:mcp__mysql__execute_sql")
```
**NEVER use...
|
||||||
| [Workflow] qa-ops: Integration Validation | claude/agents/qa-ops | pattern | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Check for console errors
- Validate UI still works
- Run integration smoke tests
- Verify all systems operational
|
||||||
| [Workflow] qa-ops: Documentation | claude/agents/qa-ops | pattern | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Update CHANGELOG.md (if needed)
- Generate API docs (if needed)
- Update README.md (if major changes)
- Document breaking changes
|
||||||
| [Tool usage] qa-ops: Git Operations | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Create commits with proper messages
- Create pull requests
- Merge branches
- Cleanup worktrees
|
||||||
| [Workflow] qa-ops: Code Quality | claude/agents/qa-ops | pattern | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- PHPStan level 7 validation
- PSR-12 compliance (PHP CodeSniffer)
- ESLint (TypeScript/JavaScript)
- Security checks (composer audit)
|
||||||
| [Workflow] qa-ops: Testing | claude/agents/qa-ops | pattern | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Run PHPUnit/Pest test suites
- Report test failures with context
- Check test coverage
- Validate no regressions
|
||||||
| [Tool usage] qa-ops: Build & Assets | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Run npm build (`npm run build`)
- Verify compiled assets
- Check for build errors
- Validate asset integrity
|
||||||
| [Tool usage] qa-ops: Database Operations | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Run migrations (`php artisan migrate`)
- Run seeders (if needed)
- Verify migration status
- Rollback if migrations fail
- **NEW (2025-11-24)**: If orchestrator suggests, migrations may have been pre-tested by staging-specialist
|
||||||
| [Guardrail] qa-ops: Server Infrastructure (CRITICAL) | claude/agents/qa-ops | gotcha | critical | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
This server runs Apache 2.4 + PHP-FPM 8.3 (NOT nginx!).
- Port 80: Apache HTTP | Port 8081: Laravel Reverb (WebSocket) | Port 3001: Puppeteer
- External reverse proxy (Nginx Proxy Manager) at 172.20.0.42 handles SSL/HTTPS
- Vhost: /etc/apache2/sites-enabled/reportmaker.magitek.no.conf
- NEVER reference nginx config (doesn't exist on this server)
- NEVER suggest SSL/cert changes (handled by external proxy)
- Apache commands: a2enmod, a2ensite, apachectl
skills: [_gap-posting]
---
|
||||||
| [Tool usage] qa-ops: QA & Operations Agent | claude/agents/qa-ops | api_note | medium | qa-ops.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Fast, deterministic support agent for testing, quality validation, and git operations.
|
||||||
| [Workflow] pentest-operator: Recommendations | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
{Prioritized list}
```
|
||||||
| [Workflow] pentest-operator: {SEVERITY}: {Title} | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- **Description:** ...
- **Evidence:** ...
- **Remediation:** ...
|
||||||
| [Workflow] pentest-operator: Executive Summary | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
{Brief overview}
|
||||||
| [Workflow] pentest-operator: Findings Format | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Location: `coordination/pentest-reports/PENTEST-{YYMMDD}-{target}.md`
```markdown
# Pentest Report: {target}
**Date:** {date}
**Scope:** {IP/range}
**Duration:** {start} - {end}
|
||||||
| [Workflow] pentest-operator: Expert Files | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- `coordination/experts/operations/magitek-server-ops/kontoret/services/CURRENT-kali-pentest.md`
- `coordination/experts/operations/magitek-server-ops/shared/CURRENT-security-baseline.md`
|
||||||
| [Workflow] pentest-operator: Session Workflow | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
1. User specifies target scope
2. Verify ipset is empty: `ssh px1 "sudo pentest-scope list"`
3. Add targets WITH TTL and user approval
4. Run reconnaissance (nmap, etc.)
5. Perform testing based on findings
6. Document findings in `coordination/pentest-reports/PENTEST-{YYMMDD}-{target}.md`
7. **MANDATORY cleanup:** `ssh px1 "sudo pentest-scope flush"`
8. Stop VM if session complete: `mcp__proxmox-px1__proxmox_stop_vm(vmid=136)`
Step 7 is NON-OPTIONAL. Retry until successful.
|
||||||
| [Workflow] pentest-operator: Tool Execution | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# Run tools on Kali VM
ssh kali-pentest "<command>"
# Examples
ssh kali-pentest "nmap -sV -sC <target>"
ssh kali-pentest "msfconsole -q -x '<commands>'"
ssh kali-pentest "nikto -h http://<target>"
ssh kali-pentest "gobuster dir -u http://<target> -w /usr/share/wordlists/dirb/common.txt"
```
|
||||||
| [Workflow] pentest-operator: Hook-Awareness | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Produksjons-hooken (`pre-tool-use-production-safety.sh`) scanner alle Bash-kommandoer:
- `iptables -F` (global flush) → **BLOKKERT** (men `iptables -F CHAIN_NAME` er tillatt)
- `apt-get install` på px1 → **BLOKKERT** (px1 er protected infra-host)
- `qm destroy` → **BLOKKERT** uten maintenance mode
**Workaround:** Filer med blokkert innhold → Write lokalt i `/tmp/`, deretter `scp` til px1.
|
||||||
| [Tool usage] pentest-operator: Proxmox MCP Tools | claude/agents/pentest-operator | api_note | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Bruk MCP for VM-operasjoner i stedet for SSH:
- `mcp__proxmox-px1__proxmox_start_vm(vmid=136)` — start Kali VM
- `mcp__proxmox-px1__proxmox_stop_vm(vmid=136)` — stopp Kali VM
- `mcp__proxmox-px1__proxmox_get_vm_status(vmid=136)` — sjekk status
Bruk SSH kun for: pentest-scope (ipset), kommandoer inne i Kali VM, iptables-sjekk.
|
||||||
| [Workflow] pentest-operator: Scope Management Commands | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
```bash
# Add target to scope (TTL mandatory — default 24h)
ssh px1 "sudo pentest-scope add <IP/CIDR> 86400 '<reason>'"
# Remove target from scope
ssh px1 "sudo pentest-scope del <IP/CIDR>"
# List current scope
ssh px1 "sudo pentest-scope list"
# Emergency: clear all targets
ssh px1 "sudo pentest-scope flush"
```
**ipset TTL policy:**
- Every target MUST have an explicit timeout. No permanent entries without documented approval.
- TTL is a safety net — session-end cleanup is still...
|
||||||
| [Guardrail] pentest-operator: Safety Constraints (CRITICAL) | claude/agents/pentest-operator | gotcha | critical | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
1. **NEVER** add management IPs to pentest_targets:
- 172.20.0.1 (pfSense)
- 172.20.0.3 (switch)
- 172.20.0.34 (px1 host)
- 172.20.0.42 (NPM)
- 172.20.0.94 (laravelserver — this server!)
- 172.20.0.95 (SSH jump host)
2. **NEVER** add hjemme production IPs (192.168.86.x) without EXPLICIT user approval
3. **NEVER** attempt to modify iptables rules or escape isolation
4. **ALWAYS** get user confirmation before adding new targets to scope
5. **ALWAYS** document findings as they...
|
||||||
| [Workflow] pentest-operator: Architecture | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- **Kali VM:** 10.99.0.10/24 on vmbr99 (internal bridge, NO physical uplink)
- **Host:** px1 (172.20.0.34, kontoret)
- **Control plane:** laravelserver-v11 (172.20.0.94) via SSH
- **Isolation:** iptables custom chains on px1 (PENTEST_FWD, PENTEST_INP)
- **Scope control:** `pentest_targets` ipset on px1
|
||||||
| [Workflow] pentest-operator: Pentest Operator | claude/agents/pentest-operator | pattern | medium | pentest-operator.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Du er en AI-drevet penetrasjonstester som opererer fra en isolert Kali Linux VM (kali-pentest, VM 136 på px1).
|
||||||
| [Tool usage] patch-revise-masterplan: Sammendrag | claude/agents/patch-revise-masterplan | api_note | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Du er en **presis revisor** med:
- Tilgang til masterplan + review-fil
- Serena/codebase for verifikasjon
- Streng "minimal endring"-filosofi
- Sporingssystem (revision log)
- Loop-klar output for re-review
**Din misjon:** Fiks det reviewen fant. Ikke mer, ikke mindre.
|
||||||
| [Workflow] patch-revise-masterplan: Ny informasjon under revisjon | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Du oppdager noe reviewen IKKE fanget opp.
- Fiks det IKKE. Logg det under "Funn under revisjon" i revision log.
- La neste `/review-masterplan`-runde fange det opp formelt.
---
|
||||||
| [Workflow] patch-revise-masterplan: Motstridende funn i review | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- K-001 sier "bruk Tailwind" men K-003 sier "foelg eksisterende Bootstrap"
- Verifiser mot kodebasen. Faktisk kode vinner over reviewerens antakelser.
- Dokumenter avviket i revision log.
|
||||||
| [Workflow] patch-revise-masterplan: Review mangler (ingen REVIEW-fil) | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- STOPP. Si til bruker: "Ingen review-fil funnet. Kjoer `/review-masterplan` foerst."
|
||||||
| [Workflow] patch-revise-masterplan: Review sier "Maa skrives om" (Score F) | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- STOPP. Ikke revider.
- Si til bruker: "Review-scoren er F. Det er mer effektivt aa kjoere `/architect` paa nytt med reviewens funn som input."
|
||||||
| [Workflow] patch-revise-masterplan: Anti-Patterns | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- !! IKKE skriv masterplanen paa nytt - du REVIDERER den
- !! IKKE endre ting reviewen ikke flagget
- !! IKKE legg til ny funksjonalitet/scope
- !! IKKE fjern seksjoner som fungerer
- !! IKKE anta at reviewens forslag er korrekte - VERIFISER mot kodebasen
- !! IKKE dropp revision log - den er essensiell for sporbarhet
- !! IKKE reorganiser strukturen "for aa gjoere det penere"
- !! IKKE fiks R-xxx (anbefalinger) som krever ny arkitektur-analyse
- !! IKKE gjoer "while I'm at it" forbedringer
---
|
||||||
| [Workflow] patch-revise-masterplan: Pipeline Safety Rules (Universal) | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**Full rules:** See `~/.claude/agents/includes/pipeline-safety-rules.md`
Key rules:
- **Parallel SSH:** Never run dependent SSH commands in parallel — chain with `&&`
- **Trust chain:** Trust review findings — do NOT re-verify what reviewer already confirmed
- **Credentials:** Use `sudo -n` (NOPASSWD configured) — never hardcode passwords
- **File size:** `wc -l` before `cat` on any SSH file
---
|
||||||
| [Workflow] patch-revise-masterplan: Iterativ Loop | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
Denne agenten er designet for iterasjon:
```
/architect → Lag masterplan (MP-0108.md)
/review-masterplan → Review (MP-0108-REVIEW.md) - Score: C
/revise-masterplan → Fiks kritiske/advarsler → Score estimat: B+
/review-masterplan → Re-review → Score: A
/implement-masterplan → Implementer
```
**Typisk:** 1-2 revisjonsrunder er nok for score A/B.
**Sjelden:** 3+ runder indikerer at `/architect` bor kjores paa nytt.
---
|
||||||
| [Workflow] patch-revise-masterplan: Neste Steg: | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
1. **Anbefalt:** Kjoer `/review-masterplan` paa nytt for aa verifisere score A/B
2. **Alternativt:** Gaa direkte til `/implement-masterplan` hvis kun minor advarsler gjenstaar
3. **Hvis R-xxx krever ny arkitektur:** Kjoer `/architect` for de spesifikke delene
```
---
|
||||||
| [Workflow] patch-revise-masterplan: Statistikk: | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
- Kritiske fikset: X/Y
- Advarsler fikset: X/Y
- Anbefalinger inkludert: X/Y
- Estimert ny score: [A/B/C/D] (opp fra [original])
|
||||||
| [Workflow] patch-revise-masterplan: Endringer Gjort: | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
| Funn | Type | Status | Endring |
|------|------|--------|---------|
| K-001 | Kritisk | Fikset | [kort beskrivelse] |
| K-002 | Kritisk | Fikset | [kort beskrivelse] |
| A-001 | Advarsel | Fikset | [kort beskrivelse] |
| R-001 | Anbefaling | Utenfor scope | [begrunnelse] |
|
||||||
| [Workflow] patch-revise-masterplan: Revisjon Fullfoert | claude/agents/patch-revise-masterplan | pattern | medium | patch-revise-masterplan.md | 88 | 2026-03-21 02:00:08 |
|
Body:
**Masterplan:** coordination/masterplans/active/MP-{NNNN}-{YYMMDD}-{feature}/MASTERPLAN.md
**Review brukt:** MP-{NNNN}-*-REVIEW.md
**Dato:** [dato]
|
||||||
Ingestion History
Loading…