@venthezone/everything-opencode-plugin 1.0.0 → 1.0.1

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/dist/index.js CHANGED
@@ -2383,7 +2383,6 @@ var typescriptSkills = [
2383
2383
  ];
2384
2384
  var TYPESCRIPT_VERSION = "1.0.0";
2385
2385
  var TYPESCRIPT_NAME = "@venthezone/typescript-opencode";
2386
-
2387
2386
  // src/index.ts
2388
2387
  var allAgents = [
2389
2388
  "planner",
@@ -2417,6 +2416,17 @@ var PACKAGES = {
2417
2416
  typescript: "@venthezone/typescript-opencode",
2418
2417
  complete: "@venthezone/everything-opencode-plugin"
2419
2418
  };
2419
+ var EverythingOpencode = async (context) => {
2420
+ const logger = new Logger(context);
2421
+ logger.info(`Loading Everything-OpenCode Plugin v${EVERYTHING_VERSION}`);
2422
+ return {
2423
+ "session.start": async (ctx) => {
2424
+ logger.info("Everything-OpenCode session started");
2425
+ return { success: true };
2426
+ }
2427
+ };
2428
+ };
2429
+ var src_default = EverythingOpencode;
2420
2430
  export {
2421
2431
  withDefaults,
2422
2432
  verification_loop_default as verificationLoopSkill,
@@ -2449,6 +2459,7 @@ export {
2449
2459
  detectTypeScript,
2450
2460
  detectTestingFramework,
2451
2461
  detectPackageManager,
2462
+ src_default as default,
2452
2463
  continuous_learning_default as continuousLearningSkill,
2453
2464
  coding_standards_default as codingStandardsSkill,
2454
2465
  code_reviewer_default as codeReviewerAgent,
@@ -2467,6 +2478,7 @@ export {
2467
2478
  PACKAGES,
2468
2479
  Logger,
2469
2480
  HookManager,
2481
+ EverythingOpencode,
2470
2482
  EVERYTHING_VERSION,
2471
2483
  EVERYTHING_NAME,
2472
2484
  ESSENTIAL_VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venthezone/everything-opencode-plugin",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Complete OpenCode plugin combining essential and TypeScript components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "opencode": {
45
45
  "displayName": "Everything-OpenCode",
46
46
  "description": "Complete development environment with all agents, workflows, skills, and automation",
47
- "version": "1.0.0",
47
+ "version": "1.0.1",
48
48
  "category": "Complete",
49
49
  "permissions": [
50
50
  "file:read",
package/src/index.ts CHANGED
@@ -52,9 +52,31 @@ export const allSkills = [
52
52
  export const EVERYTHING_VERSION = '1.0.0';
53
53
  export const EVERYTHING_NAME = '@venthezone/everything-opencode-plugin';
54
54
 
55
+ import type { Plugin } from "@opencode-ai/plugin";
56
+ import { Logger } from "@venthezone/essential-opencode";
57
+
55
58
  // Package breakdown for documentation
56
59
  export const PACKAGES = {
57
60
  essential: '@venthezone/essential-opencode',
58
61
  typescript: '@venthezone/typescript-opencode',
59
62
  complete: '@venthezone/everything-opencode-plugin',
60
63
  };
64
+
65
+ /**
66
+ * Everything-OpenCode Plugin Entry Point
67
+ */
68
+ export const EverythingOpencode: Plugin = async (context) => {
69
+ const logger = new Logger(context);
70
+ logger.info(`Loading Everything-OpenCode Plugin v${EVERYTHING_VERSION}`);
71
+
72
+ // Return lifecycle hooks
73
+ return {
74
+ "session.start": async (ctx) => {
75
+ logger.info("Everything-OpenCode session started");
76
+ return { success: true };
77
+ },
78
+ // We can add more hooks here that delegate to the HookManager
79
+ };
80
+ };
81
+
82
+ export default EverythingOpencode;