@ktpartners/dgs-platform 2.7.4 → 2.7.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/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [2.7.5] - 2026-03-22
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- **Settings workflow commit/push** — `/dgs:settings` now commits and pushes `config.json` after writing changes, closing the gap where config updates were saved locally but never committed
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **Fast path sync parity** — fast mode now uses `dgs-tools commit --push` instead of raw `git commit`, ensuring automatic push works when `sync_push` is configured
|
|
18
|
+
- **Package metadata** — added `repository` field to package.json for npm registry linking
|
|
19
|
+
|
|
11
20
|
## [2.7.4] - 2026-03-22
|
|
12
21
|
|
|
13
22
|
### Fixed
|
|
@@ -208,8 +208,7 @@ Commit message is NOT shown to user before committing — just commit silently.
|
|
|
208
208
|
**F5. Commit**
|
|
209
209
|
|
|
210
210
|
```bash
|
|
211
|
-
|
|
212
|
-
git commit -m "${commit_message}"
|
|
211
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "${commit_message}" --push
|
|
213
212
|
```
|
|
214
213
|
|
|
215
214
|
Get the short hash:
|
|
@@ -264,11 +263,11 @@ If archival occurred (result contains `"archived": true`), `.planning/quick/HIST
|
|
|
264
263
|
Commit STATE.md and HISTORY.md together so archival data is persisted:
|
|
265
264
|
|
|
266
265
|
```bash
|
|
267
|
-
|
|
266
|
+
FILE_LIST="${state_path}"
|
|
268
267
|
if [ -f "${project_root}/quick/HISTORY.md" ]; then
|
|
269
|
-
|
|
268
|
+
FILE_LIST="${FILE_LIST} ${project_root}/quick/HISTORY.md"
|
|
270
269
|
fi
|
|
271
|
-
|
|
270
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "docs(quick-${quick_id}): track fast task" --push --files ${FILE_LIST} 2>/dev/null || true
|
|
272
271
|
```
|
|
273
272
|
|
|
274
273
|
The `|| true` handles the case where nothing changed (e.g., STATE.md wasn't modified).
|
|
@@ -276,6 +276,11 @@ Set config:
|
|
|
276
276
|
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" config-set workflow.discipline true
|
|
277
277
|
```
|
|
278
278
|
|
|
279
|
+
Track CLAUDE.md as modified:
|
|
280
|
+
```bash
|
|
281
|
+
MODIFIED_FILES="${MODIFIED_FILES} ./CLAUDE.md"
|
|
282
|
+
```
|
|
283
|
+
|
|
279
284
|
Display: `Workflow discipline: On`
|
|
280
285
|
|
|
281
286
|
**If user selects "Off" (toggle off):**
|
|
@@ -314,6 +319,11 @@ Set config:
|
|
|
314
319
|
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" config-set workflow.discipline false
|
|
315
320
|
```
|
|
316
321
|
|
|
322
|
+
Track CLAUDE.md as modified:
|
|
323
|
+
```bash
|
|
324
|
+
MODIFIED_FILES="${MODIFIED_FILES} ./CLAUDE.md"
|
|
325
|
+
```
|
|
326
|
+
|
|
317
327
|
Display: `Workflow discipline: Off`
|
|
318
328
|
|
|
319
329
|
**If "Cancel":**
|
|
@@ -421,6 +431,12 @@ Do NOT use AskUserQuestion for any review settings.
|
|
|
421
431
|
</step>
|
|
422
432
|
|
|
423
433
|
<step name="update_config">
|
|
434
|
+
Track which files will be modified for the commit step:
|
|
435
|
+
|
|
436
|
+
```bash
|
|
437
|
+
MODIFIED_FILES="${config_path}"
|
|
438
|
+
```
|
|
439
|
+
|
|
424
440
|
Merge new settings into existing config:
|
|
425
441
|
|
|
426
442
|
```json
|
|
@@ -497,6 +513,20 @@ Write `~/.dgs/defaults.json` with:
|
|
|
497
513
|
```
|
|
498
514
|
</step>
|
|
499
515
|
|
|
516
|
+
<step name="commit_and_push">
|
|
517
|
+
Commit the config changes and push if sync_push is enabled:
|
|
518
|
+
|
|
519
|
+
```bash
|
|
520
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "chore: update DGS settings" --push --files ${MODIFIED_FILES}
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
This uses dgs-tools commit which:
|
|
524
|
+
- Stages only the specified files
|
|
525
|
+
- Creates the commit
|
|
526
|
+
- With --push, reads sync_push from config and pushes when mode is "auto" (silently) or "prompt" (asks first)
|
|
527
|
+
- If sync_push is "off", no push occurs (commit-only)
|
|
528
|
+
</step>
|
|
529
|
+
|
|
500
530
|
<step name="confirm">
|
|
501
531
|
Display:
|
|
502
532
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ktpartners/dgs-platform",
|
|
3
3
|
"homepage": "https://kt-partners-ltd.github.io/dgs-platform-docs/",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/KT-Partners-Ltd/deliver-great-systems.git"
|
|
7
|
+
},
|
|
4
8
|
"bugs": {
|
|
5
9
|
"url": "https://github.com/KT-Partners-Ltd/dgs-platform-docs/issues"
|
|
6
10
|
},
|
|
7
|
-
"version": "2.7.
|
|
11
|
+
"version": "2.7.5",
|
|
8
12
|
"description": "Deliver Great Systems Platform — A meta-prompting, context engineering and spec-driven development system for Claude Code and Gemini by KT Partners.",
|
|
9
13
|
"bin": {
|
|
10
14
|
"dgs": "bin/install.js"
|