magic-spec 1.2.0 β†’ 1.2.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 CHANGED
@@ -1,20 +1,20 @@
1
1
  # πŸͺ„ Magic Spec
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/magic-spec)](https://www.npmjs.com/package/magic-spec)
3
+ [![NPM version](https://img.shields.io/npm/v/magic-spec)](https://www.npmjs.com/package/magic-spec)
4
4
  [![PyPI version](https://img.shields.io/pypi/v/magic-spec)](https://pypi.org/project/magic-spec/)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
6
6
 
7
7
  **Specification-Driven Development (SDD) workflow for AI coding agents.**
8
8
 
9
9
  Stop your AI from writing code before it understands the problem.
10
- `magic-spec` installs a structured pipeline β€” *Thought β†’ Spec β†’ Plan β†’ Task β†’ Code* β€” directly into any project, regardless of stack.
10
+ `magic-spec` installs a structured pipeline β€” *Thought β†’ Spec β†’ Task β†’ Run β†’ Code* β€” directly into any project, regardless of stack.
11
11
 
12
12
  ## ✨ What is Magic Spec?
13
13
 
14
14
  `magic-spec` is a set of **markdown-based workflow instructions** for AI coding agents (Cursor, Claude, Gemini, Copilot, etc.). It acts as an operating system for agentic development, enforcing a rigorous, structured pipeline:
15
15
 
16
16
  ```
17
- πŸ’‘ Idea β†’ πŸ“‹ Specification β†’ πŸ—ΊοΈ Plan β†’ ⚑ Task β†’ πŸš€ Code
17
+ πŸ’‘ Idea β†’ πŸ“‹ Specification β†’ πŸ—ΊοΈ Task & Plan β†’ ⚑ Run β†’ πŸš€ Code
18
18
  ```
19
19
 
20
20
  Once installed, your AI agent will automatically:
@@ -54,7 +54,7 @@ Both commands do exactly the same thing:
54
54
  | Principle | Description |
55
55
  | :--- | :--- |
56
56
  | **Specs First, Code Later** | The agent is forbidden from writing code from raw input. All ideas become specs first. |
57
- | **Deterministic Process** | A strict pipeline is enforced: *Thought β†’ Spec β†’ Plan β†’ Task β†’ Code*. |
57
+ | **Deterministic Process** | A strict pipeline is enforced: *Thought β†’ Spec β†’ Task β†’ Run β†’ Code*. |
58
58
  | **Constitution-Driven** | All project decisions live in `.design/RULES.md` β€” the project's living constitution. |
59
59
  | **Self-Improving** | After each phase and at plan completion, the Task workflow automatically runs a retrospective and generates improvement recommendations. |
60
60
 
@@ -5,7 +5,7 @@ const path = require('path');
5
5
  const { spawnSync } = require('child_process');
6
6
  const https = require('https');
7
7
  const os = require('os');
8
- const { version } = require('./package.json');
8
+ const { version } = require('../../package.json');
9
9
 
10
10
  const GITHUB_REPO = 'teratron/magic-spec';
11
11
  const cwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magic-spec",
3
- "version": "1.2.0",
3
+ "version": "1.2.3",
4
4
  "description": "Magic Specification-Driven Development (SDD) Workflow",
5
5
  "author": "Oleg Alexandrov <alexandrovoleg.ru@gmail.com>",
6
6
  "license": "MIT",
@@ -22,7 +22,7 @@
22
22
  "scripts": {
23
23
  "test": "echo \"Error: no test specified\" && exit 1",
24
24
  "build": "echo \"Build is no longer required for the thin client. Use 'npm pack' to verify the package.\"",
25
- "check": "npm pack",
25
+ "check": "npm pack --pack-destination dist",
26
26
  "publish:dry": "npm publish --dry-run"
27
27
  }
28
- }
28
+ }