create-agentic-pdlc 2.1.5 → 2.1.6
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 +8 -0
- package/package.json +1 -1
- package/templates/AGENTS.md +10 -0
package/README.md
CHANGED
|
@@ -33,6 +33,14 @@ npx create-agentic-pdlc
|
|
|
33
33
|
|
|
34
34
|
The CLI sets up your GitHub board, labels, and workflows, then hands over to your AI assistant to finish the configuration interactively. No YAML editing. No manual config.
|
|
35
35
|
|
|
36
|
+
**Already set up? Add or reconfigure optional agents at any time:**
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npx create-agentic-pdlc --update
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Detects what is already configured (Jules, QA Agent, Sentinel) and interactively sets up what is missing. Your existing board IDs and customizations are never touched.
|
|
43
|
+
|
|
36
44
|
---
|
|
37
45
|
|
|
38
46
|
## 🏗️ How It Works
|
package/package.json
CHANGED
package/templates/AGENTS.md
CHANGED
|
@@ -64,6 +64,16 @@ When detailing a solution in an issue body, you must **always** include both the
|
|
|
64
64
|
- `path/to/file.ts` — what changes
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
## Pipeline Updates
|
|
68
|
+
|
|
69
|
+
To add or configure optional agents (Jules, QA Agent, Sentinel) at any time:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
npx create-agentic-pdlc --update
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Run this when the user says anything like "update the pipeline", "update the board", or "configure the agents". It detects what is already configured and interactively sets up what is missing — without touching this file or any user-owned config.
|
|
76
|
+
|
|
67
77
|
## What NOT to do
|
|
68
78
|
|
|
69
79
|
- Never commit directly to `main`.
|