@revealui/harnesses 0.1.6 → 0.1.7

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.
@@ -14,8 +14,8 @@ declare const AgentSchema: z.ZodObject<{
14
14
  name: z.ZodString;
15
15
  description: z.ZodString;
16
16
  tier: z.ZodDefault<z.ZodEnum<{
17
- pro: "pro";
18
17
  oss: "oss";
18
+ pro: "pro";
19
19
  }>>;
20
20
  isolation: z.ZodDefault<z.ZodEnum<{
21
21
  worktree: "worktree";
@@ -31,8 +31,8 @@ declare const CommandSchema: z.ZodObject<{
31
31
  name: z.ZodString;
32
32
  description: z.ZodString;
33
33
  tier: z.ZodDefault<z.ZodEnum<{
34
- pro: "pro";
35
34
  oss: "oss";
35
+ pro: "pro";
36
36
  }>>;
37
37
  disableModelInvocation: z.ZodDefault<z.ZodBoolean>;
38
38
  argumentHint: z.ZodOptional<z.ZodString>;
@@ -53,8 +53,8 @@ declare const ManifestSchema: z.ZodObject<{
53
53
  }>;
54
54
  preambleTier: z.ZodDefault<z.ZodNumber>;
55
55
  tier: z.ZodDefault<z.ZodEnum<{
56
- pro: "pro";
57
56
  oss: "oss";
57
+ pro: "pro";
58
58
  }>>;
59
59
  tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
60
60
  content: z.ZodString;
@@ -64,8 +64,8 @@ declare const ManifestSchema: z.ZodObject<{
64
64
  name: z.ZodString;
65
65
  description: z.ZodString;
66
66
  tier: z.ZodDefault<z.ZodEnum<{
67
- pro: "pro";
68
67
  oss: "oss";
68
+ pro: "pro";
69
69
  }>>;
70
70
  disableModelInvocation: z.ZodDefault<z.ZodBoolean>;
71
71
  argumentHint: z.ZodOptional<z.ZodString>;
@@ -76,8 +76,8 @@ declare const ManifestSchema: z.ZodObject<{
76
76
  name: z.ZodString;
77
77
  description: z.ZodString;
78
78
  tier: z.ZodDefault<z.ZodEnum<{
79
- pro: "pro";
80
79
  oss: "oss";
80
+ pro: "pro";
81
81
  }>>;
82
82
  isolation: z.ZodDefault<z.ZodEnum<{
83
83
  worktree: "worktree";
@@ -91,8 +91,8 @@ declare const ManifestSchema: z.ZodObject<{
91
91
  name: z.ZodString;
92
92
  description: z.ZodString;
93
93
  tier: z.ZodDefault<z.ZodEnum<{
94
- pro: "pro";
95
94
  oss: "oss";
95
+ pro: "pro";
96
96
  }>>;
97
97
  disableModelInvocation: z.ZodDefault<z.ZodBoolean>;
98
98
  skipFrontmatter: z.ZodDefault<z.ZodBoolean>;
@@ -128,8 +128,8 @@ declare const RuleSchema: z.ZodObject<{
128
128
  }>;
129
129
  preambleTier: z.ZodDefault<z.ZodNumber>;
130
130
  tier: z.ZodDefault<z.ZodEnum<{
131
- pro: "pro";
132
131
  oss: "oss";
132
+ pro: "pro";
133
133
  }>>;
134
134
  tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
135
135
  content: z.ZodString;
@@ -141,8 +141,8 @@ declare const SkillSchema: z.ZodObject<{
141
141
  name: z.ZodString;
142
142
  description: z.ZodString;
143
143
  tier: z.ZodDefault<z.ZodEnum<{
144
- pro: "pro";
145
144
  oss: "oss";
145
+ pro: "pro";
146
146
  }>>;
147
147
  disableModelInvocation: z.ZodDefault<z.ZodBoolean>;
148
148
  skipFrontmatter: z.ZodDefault<z.ZodBoolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revealui/harnesses",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "[Pro] AI harness integration system - adapters, daemon, workboard coordination, and JSON-RPC server",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "zod": "^4.3.6",
16
- "@revealui/core": "0.5.3"
16
+ "@revealui/core": "0.5.4"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^25.3.0",