cortex-agents 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/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import * as fs from "fs";
3
3
  import * as path from "path";
4
- const VERSION = "2.1.0";
4
+ const VERSION = "1.0.1";
5
5
  const PLUGIN_NAME = "cortex-agents";
6
6
  function findOpencodeConfig() {
7
7
  // Check local first
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import type { Plugin } from "@opencode-ai/plugin";
2
- export declare const K2P5AgentsPlugin: Plugin;
3
- export default K2P5AgentsPlugin;
2
+ export declare const CortexPlugin: Plugin;
3
+ export default CortexPlugin;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AASlD,eAAO,MAAM,gBAAgB,EAAE,MAsC9B,CAAC;AAGF,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AASlD,eAAO,MAAM,YAAY,EAAE,MA8B1B,CAAC;AAGF,eAAe,YAAY,CAAC"}
package/dist/index.js CHANGED
@@ -4,14 +4,7 @@ import * as worktree from "./tools/worktree";
4
4
  import * as branch from "./tools/branch";
5
5
  import * as plan from "./tools/plan";
6
6
  import * as session from "./tools/session";
7
- export const K2P5AgentsPlugin = async ({ client }) => {
8
- await client.app.log({
9
- body: {
10
- service: "k2p5-agents",
11
- level: "info",
12
- message: "K2P5 Agents Plugin v2.1.0 initialized - tools, agents, and skills loaded",
13
- },
14
- });
7
+ export const CortexPlugin = async (ctx) => {
15
8
  return {
16
9
  tool: {
17
10
  // Cortex tools - .cortex directory management
@@ -39,4 +32,4 @@ export const K2P5AgentsPlugin = async ({ client }) => {
39
32
  };
40
33
  };
41
34
  // Default export for OpenCode plugin system
42
- export default K2P5AgentsPlugin;
35
+ export default CortexPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cortex-agents",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Cortex agents for OpenCode - worktree workflow, plan persistence, and session management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",