syntropic 0.5.0 → 0.5.1

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,6 +1,6 @@
1
1
  # syntropic
2
2
 
3
- A development methodology for AI-assisted coding. Works with **Claude Code**, **Cursor**, **Windsurf**, and **GitHub Copilot**.
3
+ A development methodology for AI-assisted coding. Works with **Claude Code**, **Cursor**, **Windsurf**, **GitHub Copilot**, and **OpenAI Codex**.
4
4
 
5
5
  One command gives your AI coding tools a disciplined development pipeline — so they research before they plan, plan before they build, and review before they ship.
6
6
 
@@ -21,10 +21,11 @@ You'll be asked which AI tools you use. The CLI generates the right instruction
21
21
 
22
22
  | Tool | File Generated |
23
23
  |------|---------------|
24
- | Claude Code | `CLAUDE.md` + `.claude/commands/` agents |
24
+ | Claude Code | `CLAUDE.md` + `.claude/commands/` agents + `SKILL.md` |
25
25
  | Cursor | `.cursorrules` |
26
26
  | Windsurf | `.windsurfrules` |
27
27
  | GitHub Copilot | `.github/copilot-instructions.md` |
28
+ | OpenAI Codex | `AGENTS.md` + `SKILL.md` |
28
29
 
29
30
  ## What You Get
30
31
 
@@ -46,11 +47,14 @@ You'll be asked which AI tools you use. The CLI generates the right instruction
46
47
  ## Commands
47
48
 
48
49
  ```bash
49
- # Scaffold a new project (interactive)
50
+ # Scaffold a new project
50
51
  npx syntropic init my-project
51
52
 
52
- # Non-interactive with flags
53
- npx syntropic init my-project --tools claude,cursor --name "My App" --domain myapp.com --test-url /staging --prod-url /
53
+ # Select specific tools
54
+ npx syntropic init my-project --tools claude,cursor
55
+
56
+ # Customise project URLs (optional — sensible defaults applied)
57
+ npx syntropic init my-project --name "My App" --domain myapp.com --test-url /staging --prod-url /
54
58
 
55
59
  # Add a tool to an existing project
56
60
  npx syntropic add cursor
@@ -88,7 +92,8 @@ Scale the process to the task. A typo fix doesn't need research. A new feature d
88
92
  ## Links
89
93
 
90
94
  - [Website](https://www.syntropicworks.com)
91
- - [GitHub](https://github.com/petercholford-ship-it/syntropicworks)
95
+ - [GitHub](https://github.com/petercholford-ship-it/syntropic-cli)
96
+ - [Intelligent Analyser](https://www.syntropicworks.com/intelligent-analyser) — deep-dive analysis through 8 philosophy lenses
92
97
 
93
98
  ## License
94
99
 
package/commands/init.js CHANGED
@@ -178,9 +178,9 @@ async function run(args) {
178
178
  const isInteractive = process.stdin.isTTY !== false && !flags.yes;
179
179
 
180
180
  const projectName = flags.name || (isInteractive ? await ask(` Project name (${dirName}): `) : '') || dirName;
181
- const testUrl = flags['test-url'] || (isInteractive ? await ask(' Test page URL path (e.g. /test): ') : '') || '/test';
182
- const prodUrl = flags['prod-url'] || (isInteractive ? await ask(' Production URL path (e.g. /): ') : '') || '/';
183
- const prodDomain = flags.domain || (isInteractive ? await ask(' Production domain (e.g. example.com): ') : '') || 'example.com';
181
+ const testUrl = flags['test-url'] || '/test';
182
+ const prodUrl = flags['prod-url'] || '/';
183
+ const prodDomain = flags.domain || 'example.com';
184
184
 
185
185
  // Select AI tools
186
186
  let selectedTools;
@@ -280,6 +280,10 @@ ${toolFiles}${extras}
280
280
  Minimum: dev -> test
281
281
 
282
282
  The methodology is your superpower. Ship and iterate.
283
+
284
+ Want deeper analysis? Our Intelligent Analyser runs 8 philosophy
285
+ lenses against your idea: syntropicworks.com/intelligent-analyser
286
+
283
287
  Learn more: https://www.syntropicworks.com
284
288
  `);
285
289
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syntropic",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Philosophy-as-code development pipeline for Claude Code, Cursor, Windsurf, GitHub Copilot, and OpenAI Codex.",
5
5
  "bin": {
6
6
  "syntropic": "./bin/syntropic.js"
@@ -36,7 +36,5 @@
36
36
  "commands/",
37
37
  "templates/"
38
38
  ],
39
- "dependencies": {
40
- "user": "^0.0.0"
41
- }
39
+ "dependencies": {}
42
40
  }