@anthropologies/claudestory 0.1.63 → 0.1.65
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 +5493 -1848
- package/dist/index.d.ts +2 -2
- package/dist/mcp.js +6936 -4330
- package/package.json +1 -1
- package/src/skill/SKILL.md +5 -5
- package/src/skill/autonomous-mode.md +2 -8
- package/src/skill/review-lenses/review-lenses.md +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -1438,6 +1438,7 @@ declare const SnapshotV1Schema: z.ZodObject<{
|
|
|
1438
1438
|
} & {
|
|
1439
1439
|
[k: string]: unknown;
|
|
1440
1440
|
};
|
|
1441
|
+
createdAt: string;
|
|
1441
1442
|
tickets: z.objectOutputType<{
|
|
1442
1443
|
id: z.ZodString;
|
|
1443
1444
|
title: z.ZodString;
|
|
@@ -1500,7 +1501,6 @@ declare const SnapshotV1Schema: z.ZodObject<{
|
|
|
1500
1501
|
supersedes: z.ZodNullable<z.ZodString>;
|
|
1501
1502
|
status: z.ZodEnum<["active", "deprecated", "superseded"]>;
|
|
1502
1503
|
}, z.ZodTypeAny, "passthrough">[];
|
|
1503
|
-
createdAt: string;
|
|
1504
1504
|
handoverFilenames: string[];
|
|
1505
1505
|
warnings?: {
|
|
1506
1506
|
message: string;
|
|
@@ -1553,6 +1553,7 @@ declare const SnapshotV1Schema: z.ZodObject<{
|
|
|
1553
1553
|
} & {
|
|
1554
1554
|
[k: string]: unknown;
|
|
1555
1555
|
};
|
|
1556
|
+
createdAt: string;
|
|
1556
1557
|
tickets: z.objectInputType<{
|
|
1557
1558
|
id: z.ZodString;
|
|
1558
1559
|
title: z.ZodString;
|
|
@@ -1592,7 +1593,6 @@ declare const SnapshotV1Schema: z.ZodObject<{
|
|
|
1592
1593
|
};
|
|
1593
1594
|
version: 1;
|
|
1594
1595
|
project: string;
|
|
1595
|
-
createdAt: string;
|
|
1596
1596
|
notes?: z.objectInputType<{
|
|
1597
1597
|
id: z.ZodString;
|
|
1598
1598
|
title: z.ZodNullable<z.ZodString>;
|