oxe-cc 1.7.0 → 1.8.0
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/CHANGELOG.md +43 -0
- package/README.md +37 -37
- package/bin/lib/oxe-agent-install.cjs +24 -8
- package/bin/lib/oxe-operational.cjs +141 -34
- package/bin/lib/oxe-project-health.cjs +150 -42
- package/bin/oxe-cc.js +244 -200
- package/package.json +26 -26
- package/packages/runtime/package.json +5 -5
- package/vscode-extension/oxe-agents-1.8.0.vsix +0 -0
- package/vscode-extension/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxe-cc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "OXE — spec-driven workflows in .oxe/ with runtime enterprise, evidence-first verification and multi-runtime integrations (npx)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "",
|
|
@@ -47,35 +47,35 @@
|
|
|
47
47
|
"oxe",
|
|
48
48
|
"assets",
|
|
49
49
|
".cursor",
|
|
50
|
-
".github",
|
|
51
|
-
"commands",
|
|
52
|
-
"vscode-extension",
|
|
53
|
-
"docs",
|
|
54
|
-
"QUICKSTART.md",
|
|
55
|
-
"packages/runtime/src",
|
|
56
|
-
"packages/runtime/package.json",
|
|
57
|
-
"packages/runtime/tsconfig.json",
|
|
50
|
+
".github",
|
|
51
|
+
"commands",
|
|
52
|
+
"vscode-extension",
|
|
53
|
+
"docs",
|
|
54
|
+
"QUICKSTART.md",
|
|
55
|
+
"packages/runtime/src",
|
|
56
|
+
"packages/runtime/package.json",
|
|
57
|
+
"packages/runtime/tsconfig.json",
|
|
58
58
|
"AGENTS.md",
|
|
59
59
|
"README.md",
|
|
60
60
|
"CHANGELOG.md"
|
|
61
61
|
],
|
|
62
|
-
"scripts": {
|
|
63
|
-
"build:runtime": "cd packages/runtime && npm run build",
|
|
64
|
-
"sync:runtime-metadata": "node scripts/sync-runtime-metadata.cjs",
|
|
65
|
-
"sync:cursor": "node scripts/sync-cursor-from-prompts.cjs",
|
|
66
|
-
"release:doctor": "node scripts/release-doctor.cjs",
|
|
67
|
-
"release:manifest": "node scripts/release-doctor.cjs --write-manifest",
|
|
68
|
-
"test:root": "node --test tests/install.test.cjs tests/oxe-project-health.test.cjs tests/oxe-dashboard.test.cjs tests/oxe-operational.test.cjs tests/oxe-azure.test.cjs tests/oxe-sdk.test.cjs tests/oxe-manifest.test.cjs tests/oxe-agent-install.test.cjs tests/oxe-install-resolve-full.test.cjs tests/oxe-health-extended.test.cjs tests/oxe-workflows-edge.test.cjs tests/oxe-sdk-edge.test.cjs tests/oxe-cli-edge.test.cjs tests/oxe-npm-version.test.cjs tests/oxe-scripts.test.cjs tests/oxe-retro-health.test.cjs tests/oxe-security-permissions.test.cjs tests/oxe-runtime-semantics.test.cjs tests/oxe-plugins.test.cjs",
|
|
69
|
-
"test:runtime": "cd packages/runtime && npm test",
|
|
70
|
-
"test:runtime-smoke": "node scripts/runtime-smoke-matrix.cjs",
|
|
71
|
-
"test:recovery-fixtures": "node scripts/run-recovery-fixtures.cjs",
|
|
72
|
-
"test:multi-agent-soak": "node scripts/run-multi-agent-soak.cjs",
|
|
73
|
-
"test": "npm run build:runtime && npm run test:root && npm run test:runtime && npm run test:runtime-smoke && npm run test:recovery-fixtures && npm run test:multi-agent-soak",
|
|
74
|
-
"test:coverage": "c8 --check-coverage --lines 82 --functions 85 --branches 58 --statements 82 npm test",
|
|
75
|
-
"scan:assets": "node scripts/oxe-assets-scan.cjs",
|
|
76
|
-
"build:vscode-ext": "cd vscode-extension && npx @vscode/vsce package --no-yarn --allow-missing-repository",
|
|
77
|
-
"prepublishOnly": "npm test && npm run scan:assets && npm run build:vscode-ext && npm run release:manifest && node bin/oxe-cc.js --version"
|
|
78
|
-
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"build:runtime": "cd packages/runtime && npm run build",
|
|
64
|
+
"sync:runtime-metadata": "node scripts/sync-runtime-metadata.cjs",
|
|
65
|
+
"sync:cursor": "node scripts/sync-cursor-from-prompts.cjs",
|
|
66
|
+
"release:doctor": "node scripts/release-doctor.cjs",
|
|
67
|
+
"release:manifest": "node scripts/release-doctor.cjs --write-manifest",
|
|
68
|
+
"test:root": "node --test tests/install.test.cjs tests/oxe-project-health.test.cjs tests/oxe-dashboard.test.cjs tests/oxe-operational.test.cjs tests/oxe-azure.test.cjs tests/oxe-sdk.test.cjs tests/oxe-manifest.test.cjs tests/oxe-agent-install.test.cjs tests/oxe-install-resolve-full.test.cjs tests/oxe-health-extended.test.cjs tests/oxe-workflows-edge.test.cjs tests/oxe-sdk-edge.test.cjs tests/oxe-cli-edge.test.cjs tests/oxe-npm-version.test.cjs tests/oxe-scripts.test.cjs tests/oxe-retro-health.test.cjs tests/oxe-security-permissions.test.cjs tests/oxe-runtime-semantics.test.cjs tests/oxe-plugins.test.cjs",
|
|
69
|
+
"test:runtime": "cd packages/runtime && npm test",
|
|
70
|
+
"test:runtime-smoke": "node scripts/runtime-smoke-matrix.cjs",
|
|
71
|
+
"test:recovery-fixtures": "node scripts/run-recovery-fixtures.cjs",
|
|
72
|
+
"test:multi-agent-soak": "node scripts/run-multi-agent-soak.cjs",
|
|
73
|
+
"test": "npm run build:runtime && npm run test:root && npm run test:runtime && npm run test:runtime-smoke && npm run test:recovery-fixtures && npm run test:multi-agent-soak",
|
|
74
|
+
"test:coverage": "c8 --check-coverage --lines 82 --functions 85 --branches 58 --statements 82 npm test",
|
|
75
|
+
"scan:assets": "node scripts/oxe-assets-scan.cjs",
|
|
76
|
+
"build:vscode-ext": "cd vscode-extension && npx @vscode/vsce package --no-yarn --allow-missing-repository",
|
|
77
|
+
"prepublishOnly": "npm test && npm run scan:assets && npm run build:vscode-ext && npm run release:manifest && node bin/oxe-cc.js --version"
|
|
78
|
+
},
|
|
79
79
|
"c8": {
|
|
80
80
|
"all": true,
|
|
81
81
|
"include": [
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@oxe/runtime",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"private": true,
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"description": "OXE agentic execution engine — enterprise runtime core",
|
|
2
|
+
"name": "@oxe/runtime",
|
|
3
|
+
"version": "1.8.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "OXE agentic execution engine — enterprise runtime core",
|
|
7
7
|
"main": "../../lib/runtime/index.js",
|
|
8
8
|
"types": "../../lib/runtime/index.d.ts",
|
|
9
9
|
"scripts": {
|
|
Binary file
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "oxe-agents",
|
|
3
3
|
"displayName": "OXE Agents",
|
|
4
4
|
"description": "Agentes OXE para GitHub Copilot Chat — cada fase do ciclo como um @agente no VS Code",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.8.0",
|
|
6
6
|
"publisher": "oxe-cc",
|
|
7
|
-
"license": "MIT",
|
|
7
|
+
"license": "MIT",
|
|
8
8
|
"engines": {
|
|
9
9
|
"vscode": "^1.95.0"
|
|
10
10
|
},
|