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 +5 -7
- package/docs/pdlc.md +5 -5
- package/package.json +1 -1
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($
|
|
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 |
|
|
9
|
-
| ๐ง Brainstorming |
|
|
10
|
-
| ๐ Detail Solution |
|
|
11
|
-
| โ
Approval |
|
|
12
|
-
| โ๏ธ 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 |
|