create-agentic-pdlc 2.1.0 → 2.1.1

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 CHANGED
@@ -1,88 +1,81 @@
1
1
  # 🤖 Agentic PDLC Framework
2
2
 
3
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
- [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
5
-
6
- > **Stop fighting your AI agents. Give them structure.**
7
-
8
- **Agentic PDLC** is a lightweight, zero-dependency boilerplate that transforms chaotic AI coding into a deterministic, automated software assembly line.
3
+ > Do your AI agents build features that don't match the spec?
4
+ > Do you find bugs and architecture violations only at the end of the lifecycle?
5
+ > Are you the one manually moving cards across your board — every single time?
9
6
 
10
- It standardizes how your AI assistants (Claude, Cursor, Copilot, Jules) interpret tasks, respect invariants, and collaborate seamlessly from an idea to production.
7
+ **Agentic PDLC** gives your agents a shared rulebook, a self-moving board, and a CI that won't let broken code reach production. One `npx` command to set up.
11
8
 
12
9
  <div align="center">
13
10
  <img src=".github/assets/agentic-pdlc-flow.svg" alt="Agentic PDLC Architecture Flow" width="100%">
14
11
  </div>
15
12
 
13
+ Solo devs and small teams hit the same wall: one agent writes the spec, another implements it differently, a third reviews without knowing either. Agentic PDLC gives all of them a shared brief, automates the board, and puts a CI guard between your agents and production.
14
+
16
15
  ---
17
16
 
18
- ## ⚡ Why you need this
17
+ ## ⚡ Why it works
18
+
19
+ - 🗺️ **A transparent lifecycle** — Every feature travels a Kanban board from Idea to Production. You always know where things are.
20
+ - 🤖 **A board that moves itself** — When you approve a spec, the card moves. When an agent opens a PR, the card moves. You just approve or reject.
21
+ - 🧠 **Agents that agree with each other** — One briefing (`AGENTS.md`), read by every agent. Claude, Jules, Gemini — all pulling in the same direction, without you copy-pasting context between tabs.
22
+ - 🛡️ **Code that can't silently break production** — A CI auditor checks every PR for architecture violations before anything reaches your main branch. *(Maturity Model — coming soon)*
23
+
24
+ ---
25
+
26
+ ## 🚀 Quick Start
27
+
28
+ Run this in the root of your project:
29
+
30
+ ```bash
31
+ npx create-agentic-pdlc
32
+ ```
19
33
 
20
- - 🧠 **One Contract to Rule Them All**: `AGENTS.md` is your single source of truth. Stop repeating yourself; let every AI read the same invariants.
21
- - 🤖 **Automated Handoffs**: Move cards across your GitHub board with labels. Brainstorm with Claude upstream, let Jules code downstream.
22
- - 🚀 **Interactive Setup**: Run one `npx` command and let your favorite AI assistant scaffold the framework into your project interactively.
23
- - 📈 **Maturity Model**: A clear path from structured (Level 1) to semi-autonomous (Level 3) development. [Read the Agentic Maturity Model](docs/maturity-model.md).
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.
24
35
 
25
36
  ---
26
37
 
27
- ## 🏗️ How It Works: The Two Scopes
38
+ ## 🏗️ How It Works
28
39
 
29
- The Agentic PDLC bridges the gap between high-level human ideas and deterministic AI execution. It splits the workflow into two clear phases:
40
+ The framework splits work into two phases:
30
41
 
31
- ### 🌊 1. Upstream (Idea → Spec)
32
- You use conversational AI (e.g., **Claude Code**, **Cursor Chat**) as your brainstorming partner. Together, you flesh out user stories, acceptance criteria, and technical specifications until they are rock solid.
42
+ ### 1. You + AI: Idea → Spec
43
+ Use conversational AI (e.g., **Claude Code**, **Gemini CLI**) as your brainstorming partner. Together, you flesh out user stories, acceptance criteria, and technical specifications until they are solid.
33
44
 
34
- ### 🏭 2. Downstream (Spec → Production)
35
- Once the spec is approved, autonomous implementation agents (e.g., **Jules**, **Sweep**, **Copilot Workspace**) pick up the task via an automated GitHub Project board flow. They execute the deterministic specs while being strictly governed by your project's invariants.
45
+ ### 2. Your agents: Spec → Production
46
+ Once you approve the spec, autonomous implementation agents (e.g., **Jules**, **Sweep**, **Copilot Workspace**) pick up the task. The board moves automatically; the CI auditor guards the main branch.
36
47
 
37
48
  ---
38
49
 
39
- ## 🤝 Universal Multi-Assistant Support
50
+ ## 🤝 Works with every AI assistant
40
51
 
41
- The framework relies on a universal source of truth (`AGENTS.md`), but uses elegant adapters to teach specific AI platforms how to read them.
52
+ One shared brief (`AGENTS.md`). Every agent reads it.
42
53
 
43
54
  | AI Assistant | Instruction File | How it Integrates |
44
55
  |:---|:---|:---|
45
56
  | **Claude Code** | `CLAUDE.md` + Claude Skill | Uses `adapters/claude-code/skill.md` *(Includes Auto-Setup Mode)* |
57
+ | **Gemini CLI** | `AGENTS.md` | Reads the rulebook natively |
46
58
  | **Cursor** | `.cursor/rules/*.md` | Uses `adapters/cursor/rules.md` |
47
59
  | **GitHub Copilot** | `.github/copilot-instructions.md` | Uses `templates/.github/copilot-instructions.md` |
48
- | **Codex / Antigravity** | `AGENTS.md` | Reads the contract natively |
49
-
50
- *No matter which AI you pair with, they will all share the exact same context.*
60
+ | **Codex / Antigravity** | `AGENTS.md` | Reads the rulebook natively |
51
61
 
52
62
  ---
53
63
 
54
- ## 📂 Expected Structure
64
+ ## 📦 What you get
55
65
 
56
- Once initialized in your project, the framework provides the following layout:
66
+ After setup, your project has:
57
67
 
58
- ```text
59
- your-project/
60
- ├── AGENTS.md ← The universal contract mapping rules to any AI.
61
- ├── docs/
62
- │ └── pdlc.md ← The PDLC pipeline defining board columns and IDs.
63
- └── .github/
64
- └── workflows/
65
- ├── project-automation.yml ← Automates GitHub Project card movement.
66
- ├── agent-trigger.yml ← Wakes up your agent upon `spec:approved`.
67
- └── ci.yml ← The Sentinel enforcing invariants and tests.
68
- ```
68
+ - **`AGENTS.md`** — The shared brief every agent reads. Your rules, once.
69
+ - **`docs/pdlc.md`** — Your pipeline map: board columns, IDs, and who does what.
70
+ - **`.github/workflows/`** Three automations: board moves itself, agent wakes on spec approval, CI audits every PR.
69
71
 
70
72
  ---
71
73
 
72
- ## 🚀 Quick Start
73
-
74
- Ready to build at the speed of thought? Scaffold the entire framework interactively without copy-pasting code!
75
-
76
- Simply run our installer in the root of your project:
77
-
78
- ```bash
79
- npx create-agentic-pdlc
80
- ```
74
+ ## ❤️ Contributing
81
75
 
82
- > **💡 How it works:** The CLI acts as a bridge. It asks which AI assistant you prefer (e.g., Claude Code, Cursor), drops the required system instructions into your workspace, and hands control over to your AI. Your AI will then chat with you to customize your framework!
76
+ We welcome improvements from solo founders and AI engineers! Please check our **[Contributing Guidelines](CONTRIBUTING.md)** on how to submit PRs, add new AI platform adapters, or improve the documentation.
83
77
 
84
78
  ---
85
79
 
86
- ## ❤️ Contributing
87
-
88
- We welcome improvements from other solo-founders and AI-engineers! Please check our **[Contributing Guidelines](CONTRIBUTING.md)** on how to submit PRs, add new AI platform adapters, or improve the documentation.
80
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
81
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
@@ -33,21 +33,21 @@ If any of these files are missing, you are in **Setup Mode**. Do not proceed wit
33
33
  - **Build command** — the command that compiles or bundles the project (e.g. `npm run build`, `tsc`, `go build ./...`, `./gradlew build`) — reply "none" if not applicable.
34
34
  - **Invariants:** Critical business rules agents must never violate (e.g. Human-in-the-loop).
35
35
  - **Board IDs:** Skip entirely if `.agentic-pdlc/templates/docs/pdlc.md` is already pre-filled (no `{{...}}` placeholders). Only ask if placeholders remain.
36
- - **Auditoria de Arquitetura (CI):** Pergunta: *"Seu projeto usa auditoria automatizada de arquitetura (CI job que cria issues com a label `architecture-violation`)?"* Apresente as opções:
37
- - a) **Não uso, mas quero configurar** — *Deixa o pipeline CI/CD mais robusto via Gemini Code Assist.* → Guia o usuário na configuração.
38
- - b) **Não agora** — *Deixa comentado para ativar em outro momento.* → Job permanece comentado no `project-automation.yml`.
39
- - c) **Sim, ativar** — *Descomenta o job `move-violation-to-board` no `project-automation.yml`.* → Ativa imediatamente.
40
- - **QA Agent:** Pergunta: *"Quer usar um agente de QA para verificar os PRs automaticamente antes do Code Review?"* Apresente as opções:
41
- - a) **Não (Variant A)** — *PRs vão direto para Code Review. Padrão e mais simples.*
42
- - b) **Sim (Variant B), mas preciso de ajuda pra configurar** — *PRs passam por um Agente de QA antes de serem revisados. Requer um QA Agent (ex: QAWolf).* → Guia o usuário na configuração.
43
- - c) **Sim (Variant B), tenho configurado** — *PRs passam por um Agente de QA antes de serem revisados.* → Ativa Variant B imediatamente: muda `STATUS_CODE_REVIEW_PR` para `STATUS_TESTING` no job `move-card-on-pr-open` e descomenta o job `move-card-on-qa-pass` no `project-automation.yml`.
44
- - **Agente de implementação:** Pergunta: *"Usa um agente de implementação autônomo? (Ele implementa as features que você aprova para desenvolvimento)"* Apresente as opções:
45
- - a) **Não** — *Sem agente de implementação autônomo.*
46
- - b) **@google-labs-jules** — *Jules (recomendado caso não tenha nenhum).*
47
- - c) **Outro** — *Digite o handle do agente.*
36
+ - **Architecture Audit (CI):** Ask: *"Does your project use automated architecture auditing (a CI job that creates issues with the `architecture-violation` label)?"* Present the options:
37
+ - a) **I don't use it, but I want to configure it** — *Makes the CI/CD pipeline more robust via Gemini Code Assist.* → Guide the user through configuration.
38
+ - b) **Not now** — *Leave it commented to activate later.* → Job remains commented in `project-automation.yml`.
39
+ - c) **Yes, activate** — *Uncomment the `move-violation-to-board` job in `project-automation.yml`.* → Activate immediately.
40
+ - **QA Agent:** Ask: *"Do you want to use a QA agent to verify PRs automatically before Code Review?"* Present the options:
41
+ - a) **No (Variant A)** — *PRs go straight to Code Review. Standard and simpler.*
42
+ - b) **Yes (Variant B), but I need help configuring it** — *PRs pass through a QA Agent before being reviewed. Requires a QA Agent (e.g., QAWolf).* → Guide the user through configuration.
43
+ - c) **Yes (Variant B), I already have it configured** — *PRs pass through a QA Agent before being reviewed.* → Activate Variant B immediately: change `STATUS_CODE_REVIEW_PR` to `STATUS_TESTING` in the `move-card-on-pr-open` job and uncomment the `move-card-on-qa-pass` job in `project-automation.yml`.
44
+ - **Implementation Agent:** Ask: *"Do you use an autonomous implementation agent? (It implements the features you approve for development)"* Present the options:
45
+ - a) **No** — *No autonomous implementation agent.*
46
+ - b) **@google-labs-jules** — *Jules (recommended if you don't have one).*
47
+ - c) **Other** — *Enter the agent's handle.*
48
48
  5. Generate and write the missing files replacing the `{{SCREAMING_SNAKE_CASE}}` placeholders using the templates in `.agentic-pdlc/templates/`.
49
49
  6. Offer to run the `gh` commands for labels (`spec:approved`, `pr:in-review`, `pr:approved`, `architecture-violation`).
50
- 7. **IMPORTANTE:** Delete this setup prompt file (`.agentic-setup.md`, `.agentic-setup-prompt.md`, or `.agentic-pdlc/SETUP_PROMPT.md`) using only `rm <arquivo>` — **do NOT run `git add` or any other git command**. This file was never committed and does not exist in the git index. Delete it **before** the commit step so it is never accidentally included in the repository history.
50
+ 7. **IMPORTANT:** Delete this setup prompt file (`.agentic-setup.md`, `.agentic-setup-prompt.md`, or `.agentic-pdlc/SETUP_PROMPT.md`) using only `rm <file>` — **do NOT run `git add` or any other git command**. This file was never committed and does not exist in the git index. Delete it **before** the commit step so it is never accidentally included in the repository history.
51
51
  8. Commit everything with the message: `chore: setup agentic-pdlc framework`.
52
52
  9. Conclude Setup Mode.
53
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-agentic-pdlc",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Agentic PDLC Framework - Conversational setup for your AI coding assistants",
5
5
  "type": "commonjs",
6
6
  "bin": {