Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .claude/agent-memory/archgate-developer/MEMORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Skipping steps 2 or 3 is a workflow violation. The user should NEVER have to inv
- **Pinned version** (`1.3.8`): Set in `.prototools`, referenced in ADR risk sections (ARCH-005, ARCH-006) and CLAUDE.md "Toolchain" section. This is the dev toolchain version.
- These are intentionally different. When upgrading the pinned version, update `.prototools` + ADR risk sections + CLAUDE.md toolchain. Do NOT change the minimum unless a new Bun API is required.

## Git Workflow

- [Always commit with --signoff](feedback_git_signoff.md) — DCO CI check rejects commits without `Signed-off-by`

## Known Bugs

- _(none currently)_
Expand Down
11 changes: 11 additions & 0 deletions .claude/agent-memory/archgate-developer/feedback_git_signoff.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Always commit with --signoff
description: Every git commit must include DCO sign-off (--signoff flag) — CI enforces DCO Sign-off Check
type: feedback
---

Always use `--signoff` (or `-s`) on every `git commit` command. The repo has a DCO Sign-off Check in CI that rejects commits without a `Signed-off-by` trailer.

**Why:** PR #258 failed the DCO check because the commit was created without `--signoff`. The user had to ask for a fix.

**How to apply:** Add `--signoff` to every `git commit` invocation — no exceptions, even for trivial changes.
11 changes: 8 additions & 3 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@
"Bash(ls *)",
"Bash(rm *)",
"Bash(proto *)",
"Skill(archgate:architect)",
"Skill(archgate:quality-manager)",
"Skill(archgate:adr-author)",
"WebSearch",
"Read",
"Write",
"Edit",
"Glob",
"Grep"
]
],
"defaultMode": "bypassPermissions"
},
"hooks": {
"PostToolUse": [
Expand All @@ -26,11 +31,11 @@
"hooks": [
{
"type": "command",
"command": "jq -r '.tool_input.file_path' | xargs -I {} oxfmt --write {}"
"command": "jq -r '.tool_input.file_path' | xargs -I {} bunx oxfmt --write {}"
}
]
}
]
},
"enabledPlugins": { "sentry@claude-plugins-official": true }
"agent": "archgate:developer"
}
12 changes: 0 additions & 12 deletions .claude/settings.local.json

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/backfill-attestations.yml

This file was deleted.

Loading