@hasna/skills 0.3.0 → 0.4.0

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.
@@ -90,7 +90,7 @@ export declare const runTerminalSchema: z.ZodObject<{
90
90
  status: z.ZodEnum<["succeeded", "failed", "cancelled", "expired"]>;
91
91
  completedAt: z.ZodString;
92
92
  }, "strip", z.ZodTypeAny, {
93
- status: "cancelled" | "failed" | "succeeded" | "expired";
93
+ status: "cancelled" | "failed" | "expired" | "succeeded";
94
94
  skill: string;
95
95
  completedAt: string;
96
96
  contractVersion: 1;
@@ -98,7 +98,7 @@ export declare const runTerminalSchema: z.ZodObject<{
98
98
  leaseGeneration: number;
99
99
  attemptId: string;
100
100
  }, {
101
- status: "cancelled" | "failed" | "succeeded" | "expired";
101
+ status: "cancelled" | "failed" | "expired" | "succeeded";
102
102
  skill: string;
103
103
  completedAt: string;
104
104
  contractVersion: 1;
@@ -162,7 +162,7 @@ export declare const runProtocolSchema: z.ZodDiscriminatedUnion<"status", [z.Zod
162
162
  status: z.ZodEnum<["succeeded", "failed", "cancelled", "expired"]>;
163
163
  completedAt: z.ZodString;
164
164
  }, "strip", z.ZodTypeAny, {
165
- status: "cancelled" | "failed" | "succeeded" | "expired";
165
+ status: "cancelled" | "failed" | "expired" | "succeeded";
166
166
  skill: string;
167
167
  completedAt: string;
168
168
  contractVersion: 1;
@@ -170,7 +170,7 @@ export declare const runProtocolSchema: z.ZodDiscriminatedUnion<"status", [z.Zod
170
170
  leaseGeneration: number;
171
171
  attemptId: string;
172
172
  }, {
173
- status: "cancelled" | "failed" | "succeeded" | "expired";
173
+ status: "cancelled" | "failed" | "expired" | "succeeded";
174
174
  skill: string;
175
175
  completedAt: string;
176
176
  contractVersion: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/skills",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Skills library for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -59,8 +59,7 @@
59
59
  "verify:release": "bun run scripts/release-guard.ts",
60
60
  "prepare": "bun run build:js",
61
61
  "prepack": "bun run build && bun run verify:release",
62
- "prepublishOnly": "bun run typecheck && bun run test",
63
- "postinstall": "mkdir -p $HOME/.hasna/skills/custom 2>/dev/null || true"
62
+ "prepublishOnly": "bun run typecheck && bun run test"
64
63
  },
65
64
  "keywords": [
66
65
  "skills",