22
33Continuous overnight/day repository maintenance with autonomous agent loops.
44
5- ```
5+ ``` text
66Wake every 5m ──► Triage repos ──► Dispatch threads ──► Track & land
77```
88
@@ -25,24 +25,24 @@ That makes it easy to parallelize + steer work as needed.
2525
2626### Skills
2727
28- | Skill | Purpose |
29- | -------| ---------|
28+ | Skill | Purpose |
29+ | --------------------------- | ------------------------------------------------------ |
3030| ** agent-loop-orchestrator** | Core loop: wait → triage → dispatch → monitor → report |
31- | ** agent-loop-triage** | GitHub issue/PR queue scanning and classification |
32- | ** agent-loop-autoreview** | Autonomous PR review, fix application, and merging |
33- | ** agent-loop-browser** | Browser automation for live UI proof and verification |
31+ | ** agent-loop-triage** | GitHub issue/PR queue scanning and classification |
32+ | ** agent-loop-autoreview** | Autonomous PR review, fix application, and merging |
33+ | ** agent-loop-browser** | Browser automation for live UI proof and verification |
3434
3535### Commands
3636
37- | Command | Description |
38- | ---------| -------------|
39- | ` /agent-loop:start ` | Start the continuous maintenance loop |
40- | ` /agent-loop:stop ` | Gracefully stop the loop |
41- | ` /agent-loop:status ` | Check loop status and history |
42- | ` /agent-loop:triage ` | One-shot repo queue triage |
43- | ` /agent-loop:autoreview ` | One-shot PR review and fix |
37+ | Command | Description |
38+ | ------------------------ | ------------------------------------- |
39+ | ` /agent-loop:start ` | Start the continuous maintenance loop |
40+ | ` /agent-loop:stop ` | Gracefully stop the loop |
41+ | ` /agent-loop:status ` | Check loop status and history |
42+ | ` /agent-loop:triage ` | One-shot repo queue triage |
43+ | ` /agent-loop:autoreview ` | One-shot PR review and fix |
4444
45- ## Skills
45+ ## Skill Sources
4646
4747Sources adapted for the agent-loop plugin:
4848
@@ -72,18 +72,18 @@ Sources adapted for the agent-loop plugin:
7272
7373## Configuration
7474
75- | Env Variable | Default | Description |
76- | -------------| ---------| -------------|
77- | ` AGENT_LOOP_INTERVAL ` | 300 | Sleep between cycles (seconds) |
78- | ` AGENT_LOOP_MAX_CONCURRENCY ` | 3 | Max parallel worker threads |
79- | ` AGENT_LOOP_SCOPE ` | current | Default triage scope |
80- | ` AGENT_LOOP_LOG_DIR ` | .agent-loop/logs | Log output directory |
81- | ` AGENT_LOOP_STATE_FILE ` | .agent-loop/state.json | Persisted loop state |
82- | ` AGENT_LOOP_REPOS ` | (from git remote) | Comma-separated repo list |
75+ | Env Variable | Default | Description |
76+ | ---------------------------- | ---------------------- | ------------------------------ |
77+ | ` AGENT_LOOP_INTERVAL ` | 300 | Sleep between cycles (seconds) |
78+ | ` AGENT_LOOP_MAX_CONCURRENCY ` | 3 | Max parallel worker threads |
79+ | ` AGENT_LOOP_SCOPE ` | current | Default triage scope |
80+ | ` AGENT_LOOP_LOG_DIR ` | .agent-loop/logs | Log output directory |
81+ | ` AGENT_LOOP_STATE_FILE ` | .agent-loop/state.json | Persisted loop state |
82+ | ` AGENT_LOOP_REPOS ` | (from git remote) | Comma-separated repo list |
8383
8484## Plugin Structure
8585
86- ```
86+ ``` text
8787agent-loop/
8888├── .claude-plugin/
8989│ └── plugin.json # Manifest (version 0.2.0)
@@ -111,17 +111,17 @@ agent-loop/
111111
112112Follow semantic versioning (semver):
113113
114- | Change Type | Version Bump | Example |
115- | -------------| -------------- | ---------|
116- | Bug fix, docs | Patch | 0.2.0 → 0.2.1 |
117- | New feature, minor change | Minor | 0.2.0 → 0.3.0 |
118- | Breaking change | Major | 0.2.0 → 1.0.0 |
114+ | Change Type | Version Bump | Example |
115+ | ------------------------- | ------------ | ------------- |
116+ | Bug fix, docs | Patch | 0.2.0 → 0.2.1 |
117+ | New feature, minor change | Minor | 0.2.0 → 0.3.0 |
118+ | Breaking change | Major | 0.2.0 → 1.0.0 |
119119
120120## Commit Convention
121121
122122Use semantic commits with plugin scope:
123123
124- ```
124+ ``` text
125125feat(agent-loop): add new feature
126126fix(agent-loop): fix bug
127127docs(agent-loop): update documentation
0 commit comments