You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The system achieves these goals through clear component separation, structured workflows, automatic context management, and a modular marketplace architecture, creating a robust foundation for AI-assisted software development.
Copy file name to clipboardExpand all lines: MANUAL.md
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Ring Marketplace Manual
2
2
3
-
Quick reference guide for the Ring skills library and workflow system. This monorepo provides 5 plugins with 59 skills, 22 agents, and 23 slash commands for enforcing proven software engineering practices across the entire software delivery value chain.
3
+
Quick reference guide for the Ring skills library and workflow system. This monorepo provides 5 plugins with 56 skills, 24 agents, and 22 slash commands for enforcing proven software engineering practices across the entire software delivery value chain.
4
4
5
5
---
6
6
@@ -13,9 +13,9 @@ Quick reference guide for the Ring skills library and workflow system. This mono
@@ -127,7 +129,7 @@ Commands are invoked directly: `/command-name`.
127
129
128
130
## 💡 About Skills
129
131
130
-
Skills (59) are workflows that Claude Code invokes automatically when it detects they're applicable. They handle testing, debugging, verification, planning, and code review enforcement. You don't call them directly – Claude Code uses them internally to enforce best practices.
132
+
Skills (56) are workflows that Claude Code invokes automatically when it detects they're applicable. They handle testing, debugging, verification, planning, and code review enforcement. You don't call them directly – Claude Code uses them internally to enforce best practices.
131
133
132
134
Examples: ring:test-driven-development, ring:systematic-debugging, ring:requesting-code-review, verification-before-completion, etc.
133
135
@@ -157,15 +159,17 @@ Invoke via `Task tool with subagent_type: "..."`.
157
159
158
160
### Code Review (ring-default)
159
161
160
-
**Always dispatch all 3 in parallel** (single message, 3 Task calls):
162
+
**Always dispatch all 5 in parallel** (single message, 5 Task calls):
161
163
162
164
| Agent | Purpose | Model |
163
165
|-------|---------|-------|
164
166
|`ring:code-reviewer`| Architecture, patterns, maintainability | Opus |
165
167
|`ring:business-logic-reviewer`| Domain correctness, edge cases, requirements | Opus |
166
168
|`ring:security-reviewer`| Vulnerabilities, OWASP, auth, validation | Opus |
169
+
|`ring:test-reviewer`| Test coverage, quality, and completeness | Opus |
170
+
|`ring:nil-safety-reviewer`| Nil/null pointer safety analysis | Opus |
167
171
168
-
**Example:** Before merging, run all 3 parallel reviewers via `/ring:codereview src/`
172
+
**Example:** Before merging, run all 5 parallel reviewers via `/ring:codereview src/`
169
173
170
174
### Planning & Analysis (ring-default)
171
175
@@ -274,6 +278,8 @@ Runs in parallel:
274
278
• ring:code-reviewer (Opus)
275
279
• ring:business-logic-reviewer (Opus)
276
280
• ring:security-reviewer (Opus)
281
+
• ring:test-reviewer (Opus)
282
+
• ring:nil-safety-reviewer (Opus)
277
283
↓
278
284
Consolidated report with recommendations
279
285
```
@@ -338,7 +344,7 @@ These enforce quality standards:
338
344
### Session Startup
339
345
340
346
1. SessionStart hook runs automatically
341
-
2. All 59 skills are auto-discovered and available
347
+
2. All 56 skills are auto-discovered and available
342
348
3.`ring:using-ring` workflow is activated (skill checking is now mandatory)
0 commit comments