catalyst-os 0.2.4 → 0.2.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/.catalyst/bin/install.js
CHANGED
|
@@ -11,7 +11,7 @@ const dim = '\x1b[2m';
|
|
|
11
11
|
const reset = '\x1b[0m';
|
|
12
12
|
|
|
13
13
|
// Get version from package.json
|
|
14
|
-
const pkg = require('
|
|
14
|
+
const pkg = require('../../package.json');
|
|
15
15
|
|
|
16
16
|
const banner = `
|
|
17
17
|
${cyan} ██████╗ █████╗ ████████╗ █████╗ ██╗ ██╗ ██╗███████╗████████╗
|
|
@@ -90,7 +90,7 @@ function copyFile(src, dest) {
|
|
|
90
90
|
* Install catalyst-os to current directory
|
|
91
91
|
*/
|
|
92
92
|
function install() {
|
|
93
|
-
const src = path.join(__dirname, '
|
|
93
|
+
const src = path.join(__dirname, '../..');
|
|
94
94
|
const cwd = process.cwd();
|
|
95
95
|
|
|
96
96
|
console.log(` Installing to ${cyan}${cwd}${reset}\n`);
|
|
@@ -252,4 +252,4 @@ Action: Run /build-spec @2025-11-29-stripe-integration
|
|
|
252
252
|
Validation failed!Spec: 2025-11-29-stripe-integrationFailed Checks:
|
|
253
253
|
- E2E Tests: 2 failures
|
|
254
254
|
- Security: 1 vulnerability foundCreated: .catalyst/specs/{slug}/validation.md (with details)Action: Fix issues and re-run /validate-spec
|
|
255
|
-
```
|
|
255
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "catalyst-os",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node .catalyst/bin/install.js"
|
|
6
6
|
},
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"AGENTS.md",
|
|
13
13
|
".claude",
|
|
14
|
+
".catalyst/bin",
|
|
14
15
|
".catalyst/standards",
|
|
15
16
|
".catalyst/spec-structure.yaml",
|
|
16
17
|
".catalyst/main/project-config.yaml"
|