oxe-cc 0.3.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/.cursor/commands/oxe-discuss.md +5 -0
- package/.cursor/commands/oxe-execute.md +5 -0
- package/.cursor/commands/oxe-help.md +5 -0
- package/.cursor/commands/oxe-next.md +5 -0
- package/.cursor/commands/oxe-plan.md +5 -0
- package/.cursor/commands/oxe-quick.md +5 -0
- package/.cursor/commands/oxe-scan.md +5 -0
- package/.cursor/commands/oxe-spec.md +5 -0
- package/.cursor/commands/oxe-verify.md +5 -0
- package/.cursor/rules/oxe-workflow.mdc +15 -0
- package/.github/copilot-instructions.md +37 -0
- package/.github/prompts/oxe-discuss.prompt.md +10 -0
- package/.github/prompts/oxe-execute.prompt.md +12 -0
- package/.github/prompts/oxe-help.prompt.md +9 -0
- package/.github/prompts/oxe-next.prompt.md +9 -0
- package/.github/prompts/oxe-plan.prompt.md +12 -0
- package/.github/prompts/oxe-quick.prompt.md +12 -0
- package/.github/prompts/oxe-scan.prompt.md +12 -0
- package/.github/prompts/oxe-spec.prompt.md +12 -0
- package/.github/prompts/oxe-verify.prompt.md +12 -0
- package/.github/workflows/ci.yml +18 -0
- package/AGENTS.md +11 -0
- package/LICENSE +674 -0
- package/README.md +206 -0
- package/bin/banner.txt +5 -0
- package/bin/oxe-cc.js +473 -0
- package/commands/oxe/discuss.md +16 -0
- package/commands/oxe/execute.md +16 -0
- package/commands/oxe/help.md +11 -0
- package/commands/oxe/next.md +12 -0
- package/commands/oxe/plan.md +15 -0
- package/commands/oxe/quick.md +16 -0
- package/commands/oxe/scan.md +16 -0
- package/commands/oxe/spec.md +14 -0
- package/commands/oxe/verify.md +15 -0
- package/oxe/templates/CONFIG.md +12 -0
- package/oxe/templates/PLAN.template.md +38 -0
- package/oxe/templates/SPEC.template.md +39 -0
- package/oxe/templates/STATE.md +30 -0
- package/oxe/templates/SUMMARY.template.md +20 -0
- package/oxe/templates/config.template.json +6 -0
- package/oxe/workflows/discuss.md +31 -0
- package/oxe/workflows/execute.md +28 -0
- package/oxe/workflows/help.md +50 -0
- package/oxe/workflows/next.md +22 -0
- package/oxe/workflows/plan.md +52 -0
- package/oxe/workflows/quick.md +32 -0
- package/oxe/workflows/scan.md +36 -0
- package/oxe/workflows/spec.md +37 -0
- package/oxe/workflows/verify.md +34 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "oxe-cc",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "OXE — spec-driven workflows for Cursor and GitHub Copilot (install via npx)",
|
|
5
|
+
"license": "GPL-3.0",
|
|
6
|
+
"author": "",
|
|
7
|
+
"homepage": "https://www.npmjs.com/package/oxe-cc",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/propagno/oxe-build/issues"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/propagno/oxe-build.git"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"cursor",
|
|
17
|
+
"github-copilot",
|
|
18
|
+
"copilot",
|
|
19
|
+
"spec-driven",
|
|
20
|
+
"context-engineering",
|
|
21
|
+
"oxe"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
},
|
|
26
|
+
"bin": {
|
|
27
|
+
"oxe-cc": "bin/oxe-cc.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"bin",
|
|
31
|
+
"oxe",
|
|
32
|
+
".cursor",
|
|
33
|
+
".github",
|
|
34
|
+
"commands",
|
|
35
|
+
"AGENTS.md",
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"test": "node --test tests/install.test.cjs",
|
|
40
|
+
"scan:assets": "node scripts/oxe-assets-scan.cjs",
|
|
41
|
+
"prepublishOnly": "node --test tests/install.test.cjs && node scripts/oxe-assets-scan.cjs && node bin/oxe-cc.js --version"
|
|
42
|
+
}
|
|
43
|
+
}
|