Skip to content

Commit a52a552

Browse files
committed
style(agent-loop): format markdown files with prettier
1 parent 511368a commit a52a552

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

CLAUDE.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ Codex plugin metadata is maintained beside Claude metadata in each plugin:
3131

3232
Follow semantic versioning (semver) for all plugins:
3333

34-
| Change Type | Version Bump | Example |
35-
|-------------|--------------|---------|
36-
| Bug fix, docs | Patch | 1.0.0 → 1.0.1 |
37-
| New feature, minor change | Minor | 1.0.0 → 1.1.0 |
38-
| Breaking change | Major | 1.0.0 → 2.0.0 |
34+
| Change Type | Version Bump | Example |
35+
| ------------------------- | ------------ | ------------- |
36+
| Bug fix, docs | Patch | 1.0.0 → 1.0.1 |
37+
| New feature, minor change | Minor | 1.0.0 → 1.1.0 |
38+
| Breaking change | Major | 1.0.0 → 2.0.0 |
3939

4040
**When to bump:**
41+
4142
- Adding new commands, skills, or agents → **Minor**
4243
- Modifying existing behavior → **Minor** (or Major if breaking)
4344
- Updating documentation only → **Patch**
@@ -69,6 +70,7 @@ machine-specific information into any plugin file (manifests, hooks, scripts,
6970
skills, commands, configs, docs, examples).
7071

7172
**Never hardcode:**
73+
7274
- Absolute home paths (`/Users/<you>/…`) — use `$HOME`, `~`, `${CLAUDE_PLUGIN_ROOT}`, or `$PWD`.
7375
- Personal secret-file conventions (e.g. `~/.secret`) — read secrets from documented env vars; allow an optional, user-set key-file path.
7476
- Real project, client, host, or repo names — use neutral placeholders (`demo-project`, `/path/to/project`).

agent-loop/commands/resume.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ description: Resume the agent-loop from the last persisted state in .agent-loop/
88
Resume the continuous agent-loop from the last saved state in `.agent-loop/state.json`.
99

1010
The loop will load the state file to recover statistics (cycle count, items processed, PRs merged) and continue the cycle:
11+
1112
1. **Load State** — parse `.agent-loop/state.json` to restore loop context
1213
2. **Wait** — sleep for configured interval (default: 5 min)
1314
3. **Triage** — scan repo queues for actionable items

0 commit comments

Comments
 (0)