@super-pocock-ai/suite 2.0.10 → 2.0.12
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/index.js +2 -1
- package/package.json +5 -5
package/index.js
CHANGED
|
@@ -3,7 +3,8 @@ import { join, dirname } from 'path'
|
|
|
3
3
|
import { fileURLToPath } from 'url'
|
|
4
4
|
import { execSync } from 'child_process'
|
|
5
5
|
|
|
6
|
-
const
|
|
6
|
+
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
7
|
+
const SUITE_VERSION = JSON.parse(readFileSync(join(__dirname, 'package.json'), 'utf-8')).version
|
|
7
8
|
|
|
8
9
|
export const SuperPocockSuite = async ({ project, client, $, directory, worktree }) => {
|
|
9
10
|
const agentsDir = join(process.env.HOME, '.config', 'opencode', 'agents')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@super-pocock-ai/suite",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.12",
|
|
4
4
|
"description": "Superpocock 完整套件,包含记忆系统和工作流",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"postinstall": "node postinstall.js"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@super-pocock-ai/memory-core": "2.0.
|
|
17
|
-
"@super-pocock-ai/memory-agents": "2.0.
|
|
18
|
-
"@super-pocock-ai/compose-workflow": "2.0.
|
|
19
|
-
"@super-pocock-ai/compose-agents": "2.0.
|
|
16
|
+
"@super-pocock-ai/memory-core": "2.0.12",
|
|
17
|
+
"@super-pocock-ai/memory-agents": "2.0.12",
|
|
18
|
+
"@super-pocock-ai/compose-workflow": "2.0.12",
|
|
19
|
+
"@super-pocock-ai/compose-agents": "2.0.12"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"opencode",
|