create-agentic-pdlc 2.0.4 โ†’ 2.0.5

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/bin/cli.js CHANGED
@@ -223,24 +223,22 @@ async function runSetup() {
223
223
  { name: "๐Ÿš€ Production", description: "Merged", color: "GREEN" }
224
224
  ];
225
225
 
226
- const updateFieldQuery = `mutation($projectId: ID!, $fieldId: ID!, $options: [ProjectV2SingleSelectFieldOptionInput!]) {
226
+ const updateFieldQuery = `mutation($fieldId: ID!, $options: [ProjectV2SingleSelectFieldOptionInput!]) {
227
227
  updateProjectV2Field(input: {
228
- projectId: $projectId,
229
228
  fieldId: $fieldId,
230
229
  singleSelectOptions: $options
231
- }) {
232
- projectV2Field {
230
+ }) {
231
+ projectV2Field {
233
232
  ... on ProjectV2SingleSelectField {
234
- options { id name }
233
+ options { id name }
235
234
  }
236
- }
235
+ }
237
236
  }
238
237
  }`;
239
238
 
240
239
  const queryPayload = JSON.stringify({
241
240
  query: updateFieldQuery,
242
241
  variables: {
243
- projectId: projectId,
244
242
  fieldId: statusFieldId,
245
243
  options: columns
246
244
  }
package/docs/pdlc.md CHANGED
@@ -5,11 +5,11 @@
5
5
  | Column | Meaning | Who moves the card |
6
6
  |---|---|---|
7
7
  | ๐Ÿ’ก Idea | Backlog โ€” every new issue lands here | Manual |
8
- | ๐Ÿ” Exploration | Claude is analyzing code and context | Label `stage:exploration` |
9
- | ๐Ÿง  Brainstorming | Claude proposed approaches, awaiting PM gate | Label `stage:brainstorming` |
10
- | ๐Ÿ“ Detail Solution | Claude is writing the technical spec | Label `stage:detailing` |
11
- | โœ… Approval | Spec ready, awaiting `spec:approved` label | Label `spec:approved` |
12
- | โš™๏ธ Development | Agent implementing the spec | Label `stage:development` |
8
+ | ๐Ÿ” Exploration | AI is analyzing code and context | Label `stage:exploration` |
9
+ | ๐Ÿง  Brainstorming | AI proposed approaches and trade-offs | Label `stage:brainstorming` |
10
+ | ๐Ÿ“ Detail Solution | AI is writing the technical spec | Label `stage:detailing` |
11
+ | โœ… Approval | Your turn, awaiting `spec:approved` label | Label `spec:approved` |
12
+ | โš™๏ธ Development | AI implementing the spec | Label `stage:development` |
13
13
  | ๐Ÿงช Testing | CI pipeline running | GitHub Actions |
14
14
  | ๐Ÿ‘ Code Review / PR | PR opened, awaiting human review | GitHub Actions |
15
15
  | ๐Ÿš€ Production | Merged | GitHub Actions |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-agentic-pdlc",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Agentic PDLC Framework - Conversational setup for your AI coding assistants",
5
5
  "type": "commonjs",
6
6
  "bin": {