@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/README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# @venthezone/everything-opencode-plugin
|
|
2
|
+
|
|
3
|
+
Complete OpenCode plugin bundle with all agents, skills, and utilities.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
opencode plugin install @venthezone/everything-opencode-plugin@latest
|
|
9
|
+
# or
|
|
10
|
+
npm install @venthezone/everything-opencode-plugin@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## What's Included
|
|
14
|
+
|
|
15
|
+
This is the "batteries included" package that combines:
|
|
16
|
+
- **@venthezone/essential-opencode** - Core components
|
|
17
|
+
- **@venthezone/typescript-opencode** - TypeScript-specific components
|
|
18
|
+
|
|
19
|
+
### All Agents (9)
|
|
20
|
+
| Agent | Package | Description |
|
|
21
|
+
|-------|---------|-------------|
|
|
22
|
+
| `planner` | essential | Task planning and breakdown |
|
|
23
|
+
| `code-reviewer` | essential | Code quality analysis |
|
|
24
|
+
| `doc-updater` | essential | Documentation maintenance |
|
|
25
|
+
| `build-error-resolver` | essential | Build error fixing |
|
|
26
|
+
| `security-reviewer` | essential | Security vulnerability detection |
|
|
27
|
+
| `refactor-cleaner` | essential | Code refactoring |
|
|
28
|
+
| `tdd-guide` | typescript | TDD specialist |
|
|
29
|
+
| `architect` | typescript | System architecture |
|
|
30
|
+
| `e2e-runner` | typescript | E2E test execution |
|
|
31
|
+
|
|
32
|
+
### All Skills (12)
|
|
33
|
+
| Skill | Package | Description |
|
|
34
|
+
|-------|---------|-------------|
|
|
35
|
+
| `coding-standards` | essential | Code quality standards |
|
|
36
|
+
| `tdd-workflow` | essential | Test-driven development |
|
|
37
|
+
| `security-review` | essential | Security best practices |
|
|
38
|
+
| `verification-loop` | essential | Verification patterns |
|
|
39
|
+
| `planning-with-files` | essential | Manus-style planning |
|
|
40
|
+
| `continuous-learning` | essential | Learning patterns |
|
|
41
|
+
| `strategic-compact` | essential | Strategic optimization |
|
|
42
|
+
| `eval-harness` | essential | Evaluation frameworks |
|
|
43
|
+
| `project-guidelines-example` | essential | Project guidelines |
|
|
44
|
+
| `clickhouse-io` | essential | ClickHouse integration |
|
|
45
|
+
| `backend-patterns` | typescript | Node.js patterns |
|
|
46
|
+
| `frontend-patterns` | typescript | React patterns |
|
|
47
|
+
|
|
48
|
+
## Usage
|
|
49
|
+
|
|
50
|
+
```typescript
|
|
51
|
+
// Import everything from one package
|
|
52
|
+
import {
|
|
53
|
+
// All agents
|
|
54
|
+
plannerAgent,
|
|
55
|
+
tddGuideAgent,
|
|
56
|
+
architectAgent,
|
|
57
|
+
|
|
58
|
+
// All skills
|
|
59
|
+
codingStandardsSkill,
|
|
60
|
+
backendPatternsSkill,
|
|
61
|
+
|
|
62
|
+
// All utilities
|
|
63
|
+
Logger,
|
|
64
|
+
SkillRegistry,
|
|
65
|
+
withDefaults,
|
|
66
|
+
validateAgentSkillCompatibility,
|
|
67
|
+
|
|
68
|
+
// Package info
|
|
69
|
+
allAgents,
|
|
70
|
+
allSkills,
|
|
71
|
+
EVERYTHING_VERSION,
|
|
72
|
+
} from '@venthezone/everything-opencode-plugin';
|
|
73
|
+
|
|
74
|
+
console.log(`Loaded ${allAgents.length} agents and ${allSkills.length} skills`);
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## When to Use
|
|
78
|
+
|
|
79
|
+
Use this package when you want:
|
|
80
|
+
- Complete development environment
|
|
81
|
+
- All agents and skills available
|
|
82
|
+
- No need to manage multiple packages
|
|
83
|
+
|
|
84
|
+
For minimal installations, consider:
|
|
85
|
+
- `@venthezone/essential-opencode` - Core only
|
|
86
|
+
- `@venthezone/typescript-opencode` - TypeScript addon
|
|
87
|
+
|
|
88
|
+
## Peer Dependencies
|
|
89
|
+
|
|
90
|
+
- `@opencode-ai/plugin` >= 1.0.0
|
|
91
|
+
|
|
92
|
+
## License
|
|
93
|
+
|
|
94
|
+
MIT
|