@karthikrajkumar.kannan/get-things-done 1.0.3 → 1.0.4
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 +55 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,6 +36,7 @@ npx @karthikrajkumar.kannan/get-things-done@latest
|
|
|
36
36
|
- [What Makes GTD Different](#what-makes-gtd-different)
|
|
37
37
|
- [Installation](#installation)
|
|
38
38
|
- [MCP Server -- Use GTD as Tools from Any Language](#mcp-server----use-gtd-as-tools-from-any-language)
|
|
39
|
+
- [Cloud-hosted code and local access](#cloud-hosted-code-and-local-access)
|
|
39
40
|
- [SDK for CI/CD](#sdk-for-cicd)
|
|
40
41
|
- [Architecture](#architecture)
|
|
41
42
|
- [Document Formats](#document-formats)
|
|
@@ -582,6 +583,60 @@ You should see two JSON responses: server info + list of 19 tools.
|
|
|
582
583
|
|
|
583
584
|
---
|
|
584
585
|
|
|
586
|
+
## Cloud-hosted code and local access
|
|
587
|
+
|
|
588
|
+
GTD runs against a **project directory on the machine** where you use slash commands, the MCP server (`--project`), or the SDK. If the source of truth lives in the cloud, use one of these patterns to get (and keep) that tree locally.
|
|
589
|
+
|
|
590
|
+
### 1. Git
|
|
591
|
+
|
|
592
|
+
Code lives in **GitHub, GitLab, Azure DevOps, Bitbucket**, or another Git host. Locally: `git clone`, then `git pull` / `git fetch` for updates; use branches and remotes as usual.
|
|
593
|
+
|
|
594
|
+
**When to use:** Default for ongoing development when the repo is the artifact.
|
|
595
|
+
|
|
596
|
+
### 2. Remote development
|
|
597
|
+
|
|
598
|
+
**VS Code Remote-SSH**, **JetBrains Gateway**, **GitHub Codespaces** (browser or VS Code), **cloud workstations**, etc. The canonical tree may stay in the cloud while your editor connects over SSH or a vendor tunnel; some setups also mirror files to disk.
|
|
599
|
+
|
|
600
|
+
**When to use:** You want a powerful or standardized environment without maintaining it on the laptop.
|
|
601
|
+
|
|
602
|
+
### 3. Download / export
|
|
603
|
+
|
|
604
|
+
**Release zips**, **CI artifacts**, **container images** with source, or **object storage** (S3, Azure Blob) with folder download.
|
|
605
|
+
|
|
606
|
+
**When to use:** One-off copies, releases, or generated drops rather than daily edit loops.
|
|
607
|
+
|
|
608
|
+
### 4. Sync clients
|
|
609
|
+
|
|
610
|
+
Cloud folders synced to a local directory (Dropbox-style). Possible for files; **risky for active Git repos** (conflicts, corrupted `.git`) unless the team standardizes carefully.
|
|
611
|
+
|
|
612
|
+
**When to use:** Non-Git assets or small teams with clear rules; usually prefer Git instead.
|
|
613
|
+
|
|
614
|
+
### 5. Private network access
|
|
615
|
+
|
|
616
|
+
Source on a **VM or file share** in a VPC: **VPN**, **ExpressRoute** / private link, **bastion + scp/rsync**, or **SMB/NFS mounts** so your machine sees the path.
|
|
617
|
+
|
|
618
|
+
**When to use:** Enterprise code that never leaves a private boundary except over approved network paths.
|
|
619
|
+
|
|
620
|
+
### 6. API or internal portal
|
|
621
|
+
|
|
622
|
+
Internal “download project” APIs, **package registries** (npm, PyPI, NuGet, Artifactory), or portals that ship **libraries / SDKs** rather than a full app repo.
|
|
623
|
+
|
|
624
|
+
**When to use:** Consuming versioned packages; partial source compared to a full monorepo clone.
|
|
625
|
+
|
|
626
|
+
### Summary
|
|
627
|
+
|
|
628
|
+
| Need | Typical approach |
|
|
629
|
+
|------|------------------|
|
|
630
|
+
| Full project, day-to-day | **Git** clone + pull/push |
|
|
631
|
+
| Edit on a managed remote machine | **Remote dev** / cloud IDE |
|
|
632
|
+
| Snapshot or release | **Download** / artifact / image |
|
|
633
|
+
| Code only inside corporate cloud | **VPN** + Git or **rsync/SSH** |
|
|
634
|
+
| Consume binaries or APIs | **Registry** / internal **API** |
|
|
635
|
+
|
|
636
|
+
For embedding GTD in your own app (SDK, MCP, prompts), see **[docs/CUSTOM-INTEGRATION-GUIDE.md](docs/CUSTOM-INTEGRATION-GUIDE.md)**.
|
|
637
|
+
|
|
638
|
+
---
|
|
639
|
+
|
|
585
640
|
## SDK for CI/CD
|
|
586
641
|
|
|
587
642
|
```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.4",
|
|
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",
|