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 +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -9
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -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,
|
|
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
|
|
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
|
|
35
|
+
export default CortexPlugin;
|