@venthezone/everything-opencode-plugin 1.0.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/README.md +94 -0
- package/dist/index.js +2476 -0
- package/package.json +80 -0
- package/src/index.ts +60 -0
- package/tsconfig.json +14 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@venthezone/everything-opencode-plugin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Complete OpenCode plugin combining essential and TypeScript components",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
10
|
+
"test": "vitest run",
|
|
11
|
+
"typecheck": "tsc --noEmit"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"opencode",
|
|
15
|
+
"ai",
|
|
16
|
+
"development",
|
|
17
|
+
"automation",
|
|
18
|
+
"agents",
|
|
19
|
+
"typescript",
|
|
20
|
+
"complete"
|
|
21
|
+
],
|
|
22
|
+
"author": {
|
|
23
|
+
"name": "VenTheZone",
|
|
24
|
+
"email": "kytusdevenn@gmail.com"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@opencode-ai/plugin": ">=1.0.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@venthezone/essential-opencode": "^1.0.0",
|
|
32
|
+
"@venthezone/typescript-opencode": "^1.0.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/bun": "latest",
|
|
36
|
+
"typescript": "^5.6.2"
|
|
37
|
+
},
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"import": "./dist/index.js",
|
|
41
|
+
"types": "./dist/index.d.ts"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"opencode": {
|
|
45
|
+
"displayName": "Everything-OpenCode",
|
|
46
|
+
"description": "Complete development environment with all agents, workflows, skills, and automation",
|
|
47
|
+
"version": "1.0.0",
|
|
48
|
+
"category": "Complete",
|
|
49
|
+
"permissions": [
|
|
50
|
+
"file:read",
|
|
51
|
+
"file:write",
|
|
52
|
+
"shell:execute",
|
|
53
|
+
"network:request"
|
|
54
|
+
],
|
|
55
|
+
"hooks": [
|
|
56
|
+
"session.start",
|
|
57
|
+
"session.end",
|
|
58
|
+
"tool.execute.before",
|
|
59
|
+
"tool.execute.after",
|
|
60
|
+
"agent.request"
|
|
61
|
+
],
|
|
62
|
+
"tools": [
|
|
63
|
+
"plan",
|
|
64
|
+
"tdd",
|
|
65
|
+
"code-review",
|
|
66
|
+
"security-review",
|
|
67
|
+
"refactor-clean",
|
|
68
|
+
"build-fix",
|
|
69
|
+
"eval",
|
|
70
|
+
"learn",
|
|
71
|
+
"orchestrate",
|
|
72
|
+
"checkpoint",
|
|
73
|
+
"verify",
|
|
74
|
+
"test-coverage",
|
|
75
|
+
"update-docs",
|
|
76
|
+
"update-codemaps",
|
|
77
|
+
"e2e"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Everything-OpenCode Plugin
|
|
3
|
+
*
|
|
4
|
+
* Complete OpenCode plugin that combines:
|
|
5
|
+
* - @venthezone/essential-opencode (core, language-agnostic)
|
|
6
|
+
* - @venthezone/typescript-opencode (TypeScript-specific)
|
|
7
|
+
*
|
|
8
|
+
* This is the "batteries included" package that provides all agents,
|
|
9
|
+
* skills, and utilities for a complete development environment.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
// Re-export everything from essential-opencode
|
|
13
|
+
export * from '@venthezone/essential-opencode';
|
|
14
|
+
|
|
15
|
+
// Re-export everything from typescript-opencode
|
|
16
|
+
export * from '@venthezone/typescript-opencode';
|
|
17
|
+
|
|
18
|
+
// Combined agent list
|
|
19
|
+
export const allAgents = [
|
|
20
|
+
// Essential agents
|
|
21
|
+
'planner',
|
|
22
|
+
'code-reviewer',
|
|
23
|
+
'doc-updater',
|
|
24
|
+
'build-error-resolver',
|
|
25
|
+
'security-reviewer',
|
|
26
|
+
'refactor-cleaner',
|
|
27
|
+
// TypeScript agents
|
|
28
|
+
'tdd-guide',
|
|
29
|
+
'architect',
|
|
30
|
+
'e2e-runner',
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
// Combined skill list
|
|
34
|
+
export const allSkills = [
|
|
35
|
+
// Essential skills
|
|
36
|
+
'coding-standards',
|
|
37
|
+
'tdd-workflow',
|
|
38
|
+
'security-review',
|
|
39
|
+
'verification-loop',
|
|
40
|
+
'planning-with-files',
|
|
41
|
+
'continuous-learning',
|
|
42
|
+
'strategic-compact',
|
|
43
|
+
'eval-harness',
|
|
44
|
+
'project-guidelines-example',
|
|
45
|
+
'clickhouse-io',
|
|
46
|
+
// TypeScript skills
|
|
47
|
+
'backend-patterns',
|
|
48
|
+
'frontend-patterns',
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
// Package info
|
|
52
|
+
export const EVERYTHING_VERSION = '1.0.0';
|
|
53
|
+
export const EVERYTHING_NAME = '@venthezone/everything-opencode-plugin';
|
|
54
|
+
|
|
55
|
+
// Package breakdown for documentation
|
|
56
|
+
export const PACKAGES = {
|
|
57
|
+
essential: '@venthezone/essential-opencode',
|
|
58
|
+
typescript: '@venthezone/typescript-opencode',
|
|
59
|
+
complete: '@venthezone/everything-opencode-plugin',
|
|
60
|
+
};
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "./dist",
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"baseUrl": ".",
|
|
7
|
+
"paths": {
|
|
8
|
+
"@venthezone/essential-opencode": ["../essential-opencode/src"],
|
|
9
|
+
"@venthezone/typescript-opencode": ["../typescript-opencode/src"]
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"include": ["src/**/*"],
|
|
13
|
+
"exclude": ["node_modules", "dist"]
|
|
14
|
+
}
|