@ias-ai/zhima-spec 1.3.3 → 1.3.5

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.
@@ -15,12 +15,12 @@ export const vjspAdapter = {
15
15
  return path.join('.vjsp', 'commands', `zm-${commandId}.md`);
16
16
  },
17
17
  formatFile(content) {
18
- return `---
19
- name: ${content.name}
20
- description: "${content.description}"
21
- ---
22
-
23
- ${content.body}
18
+ return `---
19
+ name: ${content.name}
20
+ description: "${content.description}"
21
+ ---
22
+
23
+ ${content.body}
24
24
  `;
25
25
  },
26
26
  };
@@ -26,6 +26,7 @@ export const AI_TOOLS = [
26
26
  { name: 'Kimi CLI', value: 'kimi', available: true, successLabel: 'Kimi CLI', skillsDir: '.kimi' },
27
27
  { name: 'Kiro', value: 'kiro', available: true, successLabel: 'Kiro', skillsDir: '.kiro' },
28
28
  { name: 'OpenCode', value: 'opencode', available: true, successLabel: 'OpenCode', skillsDir: '.opencode' },
29
+ { name: 'OpenHands', value: 'openhands', available: true, successLabel: 'OpenHands', skillsDir: '.openhands' },
29
30
  { name: 'Pi', value: 'pi', available: true, successLabel: 'Pi', skillsDir: '.pi' },
30
31
  { name: 'Qoder', value: 'qoder', available: true, successLabel: 'Qoder', skillsDir: '.qoder' },
31
32
  { name: 'Lingma', value: 'lingma', available: true, successLabel: 'Lingma', skillsDir: '.lingma' },
package/package.json CHANGED
@@ -1,82 +1,82 @@
1
- {
2
- "name": "@ias-ai/zhima-spec",
3
- "version": "1.3.3",
4
- "description": "AI-native system development flow",
5
- "keywords": [
6
- "zhima",
7
- "specs",
8
- "cli",
9
- "ai",
10
- "development"
11
- ],
12
- "homepage": "https://gitlab.oneberry.cc:2083/zhima-agent/ias-workflow",
13
- "repository": {
14
- "type": "git",
15
- "url": "https://gitlab.oneberry.cc:2083/zhima-agent/ias-workflow"
16
- },
17
- "license": "MIT",
18
- "type": "module",
19
- "publishConfig": {
20
- "access": "public"
21
- },
22
- "exports": {
23
- ".": {
24
- "types": "./dist/index.d.ts",
25
- "default": "./dist/index.js"
26
- }
27
- },
28
- "bin": {
29
- "zhima": "./bin/zhima.js"
30
- },
31
- "files": [
32
- "dist",
33
- "bin",
34
- "schemas",
35
- "scripts/postinstall.js",
36
- "!dist/**/*.test.js",
37
- "!dist/**/__tests__",
38
- "!dist/**/*.map"
39
- ],
40
- "scripts": {
41
- "lint": "eslint src/",
42
- "build": "node build.js",
43
- "dev": "tsc --watch",
44
- "dev:cli": "pnpm build && node bin/zhima.js",
45
- "test": "vitest run",
46
- "test:watch": "vitest",
47
- "test:ui": "vitest --ui",
48
- "test:coverage": "vitest --coverage",
49
- "test:postinstall": "node scripts/postinstall.js",
50
- "prepare": "pnpm run build",
51
- "prepublishOnly": "pnpm run build",
52
- "postinstall": "node scripts/postinstall.js",
53
- "check:pack-version": "node scripts/pack-version-check.mjs",
54
- "release": "pnpm run release:ci",
55
- "release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
56
- "changeset": "changeset"
57
- },
58
- "engines": {
59
- "node": ">=20.19.0"
60
- },
61
- "devDependencies": {
62
- "@changesets/changelog-github": "^0.5.2",
63
- "@changesets/cli": "^2.27.7",
64
- "@types/node": "^24.2.0",
65
- "@vitest/ui": "^3.2.4",
66
- "eslint": "^9.39.2",
67
- "typescript": "^5.9.3",
68
- "typescript-eslint": "^8.50.1",
69
- "vitest": "^3.2.4"
70
- },
71
- "dependencies": {
72
- "@inquirer/core": "^10.2.2",
73
- "@inquirer/prompts": "^7.8.0",
74
- "chalk": "^5.5.0",
75
- "commander": "^14.0.0",
76
- "cross-spawn": "7.0.6",
77
- "fast-glob": "^3.3.3",
78
- "ora": "^8.2.0",
79
- "yaml": "^2.8.2",
80
- "zod": "^4.0.17"
81
- }
82
- }
1
+ {
2
+ "name": "@ias-ai/zhima-spec",
3
+ "version": "1.3.5",
4
+ "description": "AI-native system development flow",
5
+ "keywords": [
6
+ "zhima",
7
+ "specs",
8
+ "cli",
9
+ "ai",
10
+ "development"
11
+ ],
12
+ "homepage": "https://gitlab.oneberry.cc:2083/zhima-agent/ias-workflow",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://gitlab.oneberry.cc:2083/zhima-agent/ias-workflow"
16
+ },
17
+ "license": "MIT",
18
+ "type": "module",
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.ts",
25
+ "default": "./dist/index.js"
26
+ }
27
+ },
28
+ "bin": {
29
+ "zhima": "./bin/zhima.js"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "bin",
34
+ "schemas",
35
+ "scripts/postinstall.js",
36
+ "!dist/**/*.test.js",
37
+ "!dist/**/__tests__",
38
+ "!dist/**/*.map"
39
+ ],
40
+ "scripts": {
41
+ "lint": "eslint src/",
42
+ "build": "node build.js",
43
+ "dev": "tsc --watch",
44
+ "dev:cli": "pnpm build && node bin/zhima.js",
45
+ "test": "vitest run",
46
+ "test:watch": "vitest",
47
+ "test:ui": "vitest --ui",
48
+ "test:coverage": "vitest --coverage",
49
+ "test:postinstall": "node scripts/postinstall.js",
50
+ "prepare": "pnpm run build",
51
+ "prepublishOnly": "pnpm run build",
52
+ "postinstall": "node scripts/postinstall.js",
53
+ "check:pack-version": "node scripts/pack-version-check.mjs",
54
+ "release": "pnpm run release:ci",
55
+ "release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
56
+ "changeset": "changeset"
57
+ },
58
+ "engines": {
59
+ "node": ">=20.19.0"
60
+ },
61
+ "devDependencies": {
62
+ "@changesets/changelog-github": "^0.5.2",
63
+ "@changesets/cli": "^2.27.7",
64
+ "@types/node": "^24.2.0",
65
+ "@vitest/ui": "^3.2.4",
66
+ "eslint": "^9.39.2",
67
+ "typescript": "^5.9.3",
68
+ "typescript-eslint": "^8.50.1",
69
+ "vitest": "^3.2.4"
70
+ },
71
+ "dependencies": {
72
+ "@inquirer/core": "^10.2.2",
73
+ "@inquirer/prompts": "^7.8.0",
74
+ "chalk": "^5.5.0",
75
+ "commander": "^14.0.0",
76
+ "cross-spawn": "7.0.6",
77
+ "fast-glob": "^3.3.3",
78
+ "ora": "^8.2.0",
79
+ "yaml": "^2.8.2",
80
+ "zod": "^4.0.17"
81
+ }
82
+ }