agents-templated 2.2.14 → 2.2.15
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 +36 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,17 @@ Agents Templated is a project governance and agent-orchestration scaffold.
|
|
|
32
32
|
- It installs rule modules in `.claude/rules/` for security, testing, planning, workflows, and guardrails.
|
|
33
33
|
- It includes `validate`, `doctor`, `update`, and `workflow` commands to keep scaffolds healthy over time.
|
|
34
34
|
|
|
35
|
+
## Orchestration-First Workflow (Current Model)
|
|
36
|
+
|
|
37
|
+
The current model is orchestration-first: give one objective and let the CLI generate a deterministic multi-phase specialist handoff.
|
|
38
|
+
|
|
39
|
+
- Use `agents-templated orchestrate "<objective>"` to run end-to-end routing.
|
|
40
|
+
- Subagent selection is automatic and policy-driven from `CLAUDE.md`.
|
|
41
|
+
- Mode-locked specialists require explicit mode handling (`qa-specialist`, `performance-specialist`).
|
|
42
|
+
- Security escalation is conditionally mandatory based on trigger conditions.
|
|
43
|
+
- Deprecated specialist aliases are redirected to canonical agents with explicit notices.
|
|
44
|
+
- Orchestration stops on blocked/failed phases and returns structured stop conditions.
|
|
45
|
+
|
|
35
46
|
What it is not:
|
|
36
47
|
|
|
37
48
|
- Not a framework generator.
|
|
@@ -51,6 +62,7 @@ npx agents-templated@latest wizard
|
|
|
51
62
|
```bash
|
|
52
63
|
agents-templated workflow
|
|
53
64
|
agents-templated problem-map "daily briefing assistant for founders"
|
|
65
|
+
agents-templated orchestrate "build auth API and admin dashboard"
|
|
54
66
|
```
|
|
55
67
|
|
|
56
68
|
### 3. Optional preset bootstrap
|
|
@@ -111,6 +123,7 @@ Your AI assistant will auto-load the configurations and follow enterprise patter
|
|
|
111
123
|
| **Interactive Wizard** | Guided setup with personalized recommendations |
|
|
112
124
|
| **AI Agents Supported** | Cursor, GitHub Copilot, Claude, and generic agents via `AGENTS.MD` |
|
|
113
125
|
| **Deterministic Commands** | Slash-command contracts with strict structured outputs |
|
|
126
|
+
| **Automatic Orchestration** | Objective-to-specialist auto-routing via `orchestrate` with deterministic phase outputs |
|
|
114
127
|
| **Intent-Routing Ready** | Command schema supports `slash-command-auto` mode for agent-side routing policies |
|
|
115
128
|
| **Security-First** | OWASP Top 10 protection patterns built-in |
|
|
116
129
|
| **Hardening Workflow** | Risk-based hardening rules plus verification/release gates |
|
|
@@ -238,6 +251,7 @@ agents-templated list
|
|
|
238
251
|
|
|
239
252
|
# Lifecycle workflow and specialist commands
|
|
240
253
|
agents-templated workflow
|
|
254
|
+
agents-templated orchestrate "build auth API and dashboard"
|
|
241
255
|
```
|
|
242
256
|
|
|
243
257
|
### Workflow Commands
|
|
@@ -260,6 +274,28 @@ These commands provide deterministic specialist guidance aligned to the sprint l
|
|
|
260
274
|
|
|
261
275
|
Each command maps to deterministic contract files in `.claude/commands/` and uses the schema in `.claude/commands/SCHEMA.md`.
|
|
262
276
|
|
|
277
|
+
### Automatic Orchestration Command
|
|
278
|
+
|
|
279
|
+
Use orchestration when you want the system to chain specialists automatically from one objective.
|
|
280
|
+
|
|
281
|
+
```bash
|
|
282
|
+
# Human-readable orchestration summary
|
|
283
|
+
agents-templated orchestrate "build auth API and dashboard"
|
|
284
|
+
|
|
285
|
+
# Structured output for pipelines and automation
|
|
286
|
+
agents-templated orchestrate "prepare production deployment" --json
|
|
287
|
+
|
|
288
|
+
# Force a specific scenario
|
|
289
|
+
agents-templated orchestrate "ship release candidate" --scenario deployment --json
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
Orchestration behavior:
|
|
293
|
+
|
|
294
|
+
- Uses deterministic routing and phase sequencing.
|
|
295
|
+
- Enforces mode-lock constraints for `qa-specialist` and `performance-specialist`.
|
|
296
|
+
- Includes deprecation notices when legacy aliases are routed.
|
|
297
|
+
- Emits structured stop conditions if a phase is blocked or fails.
|
|
298
|
+
|
|
263
299
|
### Deprecated Workflow Aliases
|
|
264
300
|
|
|
265
301
|
The CLI keeps selected legacy names as non-breaking redirects with deterministic notices.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.15",
|
|
4
4
|
"description": "Technology-agnostic development template with multi-AI agent support (Cursor, Copilot, VSCode, Gemini), security-first patterns, and comprehensive testing guidelines",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|