mycontext-cli 4.1.1 โ 4.1.2
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 -4
- package/dist/README.md +35 -0
- package/dist/package.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# mycontext-cli
|
|
2
2
|
|
|
3
3
|
**The Command-Line Anchor for Zero-Drift Autonomous Development.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`mycontext-cli` is the primary interface for Spec-Driven Development. It allows you to initialize projects, generate code from specifications, and evolve your application autonomously through the **Living Brain**.
|
|
6
6
|
|
|
7
7
|
## ๐ Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g
|
|
10
|
+
npm install -g mycontext-cli
|
|
11
11
|
# or use without installation
|
|
12
|
-
npx
|
|
12
|
+
npx mycontext-cli init
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## ๐ ๏ธ Main Commands
|
package/dist/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# mycontext-cli
|
|
2
|
+
|
|
3
|
+
**The Command-Line Anchor for Zero-Drift Autonomous Development.**
|
|
4
|
+
|
|
5
|
+
`mycontext-cli` is the primary interface for Spec-Driven Development. It allows you to initialize projects, generate code from specifications, and evolve your application autonomously through the **Living Brain**.
|
|
6
|
+
|
|
7
|
+
## ๐ Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g mycontext-cli
|
|
11
|
+
# or use without installation
|
|
12
|
+
npx mycontext-cli init
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## ๐ ๏ธ Main Commands
|
|
16
|
+
|
|
17
|
+
### `mycontext init`
|
|
18
|
+
Initialize a new project with a **Hard Gravity** anchor. It sets up the `.mycontext` directory and creates your initial `design-manifest.json`.
|
|
19
|
+
|
|
20
|
+
### `mycontext status`
|
|
21
|
+
Perform a "Narrative Compliance" check. It analyzes your project's current state against the Living DB manifest and reports on drift.
|
|
22
|
+
|
|
23
|
+
### `mycontext agent`
|
|
24
|
+
The core of the autonomous engine.
|
|
25
|
+
- `--plan`: Generate an implementation plan for a new feature.
|
|
26
|
+
- `--execute`: Trigger agentic code generation.
|
|
27
|
+
|
|
28
|
+
### `mycontext generate`
|
|
29
|
+
Scaffold specific components, context files, or PRDs based on your design tokens.
|
|
30
|
+
|
|
31
|
+
## ๐ฏ The Philosophy: Hard Gravity
|
|
32
|
+
Every project starts with a deterministic spec. The CLI ensures that code never drifts from its design intent, providing a "Hard Gravity" anchor that keeps the project cohesive even as it scales beyond human capacity to track every detail.
|
|
33
|
+
|
|
34
|
+
## ๐ License
|
|
35
|
+
MIT ยฉ MyContext - See [LICENSE](../../LICENSE) for details.
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mycontext-cli",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "CLI tool for spec-driven development - Generate comprehensive context, visual screens, and scaffolding for AI-powered coding",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐งน Cleaned build directory')",
|
|
13
13
|
"build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐จ Compiling TypeScript...') && tsc --noEmitOnError false",
|
|
14
14
|
"build:alias": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Resolving path aliases...') && tsc-alias",
|
|
15
|
-
"build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && cp package.json dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โ
Build complete')",
|
|
15
|
+
"build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && cp package.json dist/ && cp README.md dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โ
Build complete')",
|
|
16
16
|
"dev": "ts-node src/cli.ts",
|
|
17
17
|
"start": "node dist/cli.js",
|
|
18
18
|
"watch": "tsc --watch --pretty",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mycontext-cli",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "CLI tool for spec-driven development - Generate comprehensive context, visual screens, and scaffolding for AI-powered coding",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐งน Cleaned build directory')",
|
|
13
13
|
"build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐จ Compiling TypeScript...') && tsc --noEmitOnError false",
|
|
14
14
|
"build:alias": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Resolving path aliases...') && tsc-alias",
|
|
15
|
-
"build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && cp package.json dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โ
Build complete')",
|
|
15
|
+
"build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && cp package.json dist/ && cp README.md dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โ
Build complete')",
|
|
16
16
|
"dev": "ts-node src/cli.ts",
|
|
17
17
|
"start": "node dist/cli.js",
|
|
18
18
|
"watch": "tsc --watch --pretty",
|