@karthikrajkumar.kannan/get-things-done 1.0.4 → 1.0.6
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 +12 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -24,6 +24,9 @@ npx @karthikrajkumar.kannan/get-things-done@latest
|
|
|
24
24
|
|
|
25
25
|
**Also available as an MCP server** -- use GTD tools from Python, TypeScript, Go, Rust, or any language.
|
|
26
26
|
|
|
27
|
+
**Home page:** [https://github.com/karthikrajkumar/gtd](https://github.com/karthikrajkumar/gtd)
|
|
28
|
+
**Repository:** [https://github.com/karthikrajkumar/gtd](https://github.com/karthikrajkumar/gtd)
|
|
29
|
+
|
|
27
30
|
</div>
|
|
28
31
|
|
|
29
32
|
---
|
|
@@ -37,6 +40,7 @@ npx @karthikrajkumar.kannan/get-things-done@latest
|
|
|
37
40
|
- [Installation](#installation)
|
|
38
41
|
- [MCP Server -- Use GTD as Tools from Any Language](#mcp-server----use-gtd-as-tools-from-any-language)
|
|
39
42
|
- [Cloud-hosted code and local access](#cloud-hosted-code-and-local-access)
|
|
43
|
+
- [Docker project workspace and volumes](#docker-project-workspace-and-volumes)
|
|
40
44
|
- [SDK for CI/CD](#sdk-for-cicd)
|
|
41
45
|
- [Architecture](#architecture)
|
|
42
46
|
- [Document Formats](#document-formats)
|
|
@@ -637,6 +641,14 @@ For embedding GTD in your own app (SDK, MCP, prompts), see **[docs/CUSTOM-INTEGR
|
|
|
637
641
|
|
|
638
642
|
---
|
|
639
643
|
|
|
644
|
+
## Docker project workspace and volumes
|
|
645
|
+
|
|
646
|
+
When GTD or your orchestrator runs **inside Docker**, keep the repo on a **named volume** or **bind mount** so `git`, `gtd-tools`, and `.planning/` behave like a normal project tree. Object stores (e.g. MinIO) are better for **artifacts**, not as the primary editable workspace.
|
|
647
|
+
|
|
648
|
+
**Step-by-step guide (junior-friendly):** [docs/VOLUME_USAGE.md](docs/VOLUME_USAGE.md)
|
|
649
|
+
|
|
650
|
+
---
|
|
651
|
+
|
|
640
652
|
## SDK for CI/CD
|
|
641
653
|
|
|
642
654
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karthikrajkumar.kannan/get-things-done",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Bidirectional spec-driven agentic framework — Forward (idea to code to deploy), Backward (code to docs), Sync (drift detection and reconciliation). The first framework that goes both ways.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -23,9 +23,13 @@
|
|
|
23
23
|
],
|
|
24
24
|
"author": "GTD Contributors",
|
|
25
25
|
"license": "MIT",
|
|
26
|
+
"homepage": "https://github.com/karthikrajkumar/gtd",
|
|
26
27
|
"repository": {
|
|
27
28
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/
|
|
29
|
+
"url": "https://github.com/karthikrajkumar/gtd.git"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/karthikrajkumar/gtd/issues"
|
|
29
33
|
},
|
|
30
34
|
"bin": {
|
|
31
35
|
"get-things-done": "./bin/install.js",
|