@ktpartners/dgs-platform 2.6.2 → 2.6.3
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 +4 -32
- package/deliver-great-systems/bin/lib/docs.cjs +25 -9
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -7,10 +7,7 @@
|
|
|
7
7
|
**Solves context rot — the quality degradation that happens as Claude fills its context window.**
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@ktpartners/dgs-platform)
|
|
10
|
-
[](https://discord.gg/5JJgD5svVS)
|
|
12
|
-
[](https://github.com/TraceTasks/deliver-great-systems)
|
|
13
|
-
[](LICENSE)
|
|
10
|
+
[](https://kt-partners-ltd.github.io/dgs-platform-docs/)
|
|
14
11
|
|
|
15
12
|
<br>
|
|
16
13
|
|
|
@@ -22,7 +19,7 @@ npx @ktpartners/dgs-platform@latest
|
|
|
22
19
|
|
|
23
20
|
<br>
|
|
24
21
|
|
|
25
|
-
[Why I Built This](#why-i-built-this) · [How It Works](#how-it-works) · [Commands](#commands) · [Why It Works](#why-it-works) · [
|
|
22
|
+
[Why I Built This](#why-i-built-this) · [How It Works](#how-it-works) · [Commands](#commands) · [Why It Works](#why-it-works) · [Documentation](https://kt-partners-ltd.github.io/dgs-platform-docs/)
|
|
26
23
|
|
|
27
24
|
</div>
|
|
28
25
|
|
|
@@ -813,39 +810,14 @@ This removes all DGS commands, agents, hooks, and settings while preserving your
|
|
|
813
810
|
|
|
814
811
|
---
|
|
815
812
|
|
|
816
|
-
## Community Ports
|
|
817
|
-
|
|
818
|
-
OpenCode and Gemini CLI are now natively supported via `npx @ktpartners/dgs-platform`.
|
|
819
|
-
|
|
820
|
-
These community ports pioneered multi-runtime support for the original GSD project:
|
|
821
|
-
|
|
822
|
-
| Project | Platform | Description |
|
|
823
|
-
|---------|----------|-------------|
|
|
824
|
-
| [gsd-opencode](https://github.com/rokicool/gsd-opencode) | OpenCode | Original GSD OpenCode adaptation |
|
|
825
|
-
| gsd-gemini (archived) | Gemini CLI | Original GSD Gemini adaptation by uberfuzzy |
|
|
826
|
-
|
|
827
|
-
---
|
|
828
|
-
|
|
829
|
-
## Star History
|
|
830
|
-
|
|
831
|
-
<a href="https://star-history.com/#glittercowboy/get-shit-done&Date">
|
|
832
|
-
<picture>
|
|
833
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date&theme=dark" />
|
|
834
|
-
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date" />
|
|
835
|
-
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date" />
|
|
836
|
-
</picture>
|
|
837
|
-
</a>
|
|
838
|
-
|
|
839
|
-
---
|
|
840
|
-
|
|
841
813
|
## License
|
|
842
814
|
|
|
843
|
-
|
|
815
|
+
See [LICENSE](LICENSE) for details.
|
|
844
816
|
|
|
845
817
|
---
|
|
846
818
|
|
|
847
819
|
<div align="center">
|
|
848
820
|
|
|
849
|
-
**Claude Code is powerful. DGS makes it
|
|
821
|
+
**Claude Code is powerful. DGS makes it an Engineering platform.**
|
|
850
822
|
|
|
851
823
|
</div>
|
|
@@ -160,15 +160,31 @@ function extractText(filePath, ext) {
|
|
|
160
160
|
|
|
161
161
|
if (ext === '.xlsx') {
|
|
162
162
|
try {
|
|
163
|
-
const
|
|
164
|
-
const
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
163
|
+
const { execSync } = require('child_process');
|
|
164
|
+
const script = `
|
|
165
|
+
const ExcelJS = require('exceljs');
|
|
166
|
+
const workbook = new ExcelJS.Workbook();
|
|
167
|
+
workbook.xlsx.readFile(${JSON.stringify(filePath)}).then(() => {
|
|
168
|
+
const texts = [];
|
|
169
|
+
workbook.eachSheet((sheet) => {
|
|
170
|
+
const rows = [];
|
|
171
|
+
sheet.eachRow((row) => {
|
|
172
|
+
rows.push(row.values.slice(1).map(v => v == null ? '' : String(v)).join(','));
|
|
173
|
+
});
|
|
174
|
+
texts.push('--- Sheet: ' + sheet.name + ' ---\\n' + rows.join('\\n'));
|
|
175
|
+
});
|
|
176
|
+
process.stdout.write(JSON.stringify({ text: texts.join('\\n\\n') }));
|
|
177
|
+
}).catch(err => {
|
|
178
|
+
process.stdout.write(JSON.stringify({ error: err.message }));
|
|
179
|
+
});
|
|
180
|
+
`;
|
|
181
|
+
const out = execSync(`node -e ${JSON.stringify(script)}`, {
|
|
182
|
+
encoding: 'utf-8',
|
|
183
|
+
timeout: 30000,
|
|
184
|
+
}).trim();
|
|
185
|
+
const parsed = JSON.parse(out);
|
|
186
|
+
if (parsed.error) return { text: null, error: parsed.error };
|
|
187
|
+
return { text: parsed.text, error: null };
|
|
172
188
|
} catch (e) {
|
|
173
189
|
return { text: null, error: `XLSX extraction failed: ${e.message}` };
|
|
174
190
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ktpartners/dgs-platform",
|
|
3
|
-
"homepage": "https://kt-partners.github.io/dgs-platform-docs/",
|
|
3
|
+
"homepage": "https://kt-partners-ltd.github.io/dgs-platform-docs/",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/KT-Partners-Ltd/dgs-platform-docs/issues"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.6.
|
|
7
|
+
"version": "2.6.3",
|
|
8
8
|
"description": "Deliver Great Systems Platform — A meta-prompting, context engineering and spec-driven development system for Claude Code and Gemini by KT Partners.",
|
|
9
9
|
"bin": {
|
|
10
10
|
"dgs": "bin/install.js"
|
|
@@ -47,10 +47,7 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"mammoth": "^1.11.0",
|
|
49
49
|
"pdf-parse": "^2.4.5",
|
|
50
|
-
"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"esbuild": "^0.24.0"
|
|
50
|
+
"exceljs": "^4.4.0"
|
|
54
51
|
},
|
|
55
52
|
"scripts": {
|
|
56
53
|
"build:hooks": "node scripts/build-hooks.js",
|