ai-eng-system 0.0.2 → 0.0.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.
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"name": "ai-eng-system",
|
|
15
15
|
"source": "./plugins/ai-eng-system",
|
|
16
16
|
"description": "AI Engineering System with context engineering, research orchestration, 15 commands, 29 specialized agents, and 4 skill packs for Claude Code & OpenCode",
|
|
17
|
-
"version": "0.3
|
|
17
|
+
"version": "0.0.3",
|
|
18
18
|
"author": {
|
|
19
19
|
"name": "v1truv1us",
|
|
20
20
|
"email": "contact@v1truv1us.dev"
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-eng-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "AI Engineering System with context engineering and research orchestration for Claude Code",
|
|
5
5
|
"author": "v1truv1us",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"commands": [
|
|
8
|
-
"./commands/review.md",
|
|
9
8
|
"./commands/seo.md",
|
|
10
9
|
"./commands/compound.md",
|
|
11
10
|
"./commands/deploy.md",
|
|
@@ -15,10 +14,11 @@
|
|
|
15
14
|
"./commands/create-skill.md",
|
|
16
15
|
"./commands/create-tool.md",
|
|
17
16
|
"./commands/create-plugin.md",
|
|
18
|
-
"./commands/research.md",
|
|
19
17
|
"./commands/context.md",
|
|
20
18
|
"./commands/recursive-init.md",
|
|
19
|
+
"./commands/work.md",
|
|
21
20
|
"./commands/plan.md",
|
|
22
|
-
"./commands/
|
|
21
|
+
"./commands/research.md",
|
|
22
|
+
"./commands/review.md"
|
|
23
23
|
]
|
|
24
24
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
// AI Engineering System configuration
|
|
5
5
|
// Loaded by OpenCode when you install this project as a config directory.
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
//
|
|
7
|
+
// Commands and agents are provided by markdown config under:
|
|
8
|
+
// .opencode/command and .opencode/agent in the built distribution.
|
|
8
9
|
}
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
* under .opencode/command and .opencode/agent in the built distribution.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
import type { Plugin } from "@opencode-ai/plugin";
|
|
9
|
+
|
|
10
|
+
const plugin: Plugin = async (input) => {
|
|
11
|
+
return {};
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default plugin;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-eng-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Compounding engineering system for Claude Code and OpenCode. Shared agents, commands, skills, and plugin development tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"bun": ">=1.0.0"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@opencode-ai/plugin": "^1.0.184"
|
|
75
|
+
"@opencode-ai/plugin": "^1.0.184",
|
|
76
|
+
"ai-eng-system": "^0.0.3"
|
|
76
77
|
}
|
|
77
78
|
}
|