the-grid-cc 1.7.22 → 1.7.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/agents/grid-upscaler.md +992 -0
- package/commands/grid/VERSION +1 -1
- package/commands/grid/mc.md +114 -9
- package/demos/tron-dashboard.html +1335 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -170,6 +170,38 @@ Collaborative. Grid proposes, you approve. More control, more questions.
|
|
|
170
170
|
|
|
171
171
|
---
|
|
172
172
|
|
|
173
|
+
## Features
|
|
174
|
+
|
|
175
|
+
### Prompt Upscaling
|
|
176
|
+
|
|
177
|
+
Every mission passes through the **Upscaler** - a research-backed agent that transforms vague prompts into industry-grade specifications:
|
|
178
|
+
|
|
179
|
+
- **Domain Detection**: Identifies software, science, business, healthcare, finance, legal contexts
|
|
180
|
+
- **Best Practice Research**: Searches for current industry standards using Exa
|
|
181
|
+
- **Constraint Decomposition**: Transforms vague requirements into explicit specifications
|
|
182
|
+
- **Industry Injection**: Auto-adds domain-specific requirements (security for code, HIPAA for healthcare, etc.)
|
|
183
|
+
- **Self-Refine Loop**: Scores and iteratively improves enhancement quality
|
|
184
|
+
|
|
185
|
+
**Example:**
|
|
186
|
+
```
|
|
187
|
+
Input: "build me a login page"
|
|
188
|
+
|
|
189
|
+
Output: Secure authentication system with:
|
|
190
|
+
- OWASP-compliant input validation
|
|
191
|
+
- Rate limiting (5 attempts/15 min)
|
|
192
|
+
- Argon2 password hashing
|
|
193
|
+
- CSRF protection
|
|
194
|
+
- Accessible (WCAG 2.1 AA)
|
|
195
|
+
- Session security (httpOnly, secure, sameSite)
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
Mode-aware behavior:
|
|
199
|
+
- **AUTOPILOT**: Silent enhancement, proceeds immediately
|
|
200
|
+
- **GUIDED**: Mostly silent, rare clarification if ambiguous
|
|
201
|
+
- **HANDS ON**: Shows enhanced version for approval before proceeding
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
173
205
|
## Commands
|
|
174
206
|
|
|
175
207
|
| Command | What It Does |
|
|
@@ -295,6 +327,7 @@ Grid uses some themed terminology. Here's the plain-English translation:
|
|
|
295
327
|
|-----------|---------------|
|
|
296
328
|
| Master Control | The orchestrating agent (your main conversation) |
|
|
297
329
|
| Program | Worker agent (subagent doing a specific task) |
|
|
330
|
+
| Upscaler | Prompt enhancement agent (transforms vague input into detailed specs) |
|
|
298
331
|
| Recognizer | Quality checker (verifies work meets goals) |
|
|
299
332
|
| Refinement Swarm | Testing suite (visual, E2E, persona simulation) |
|
|
300
333
|
|