@ainyc/canonry 2.15.1 → 2.16.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.
- package/assets/agent-workspace/skills/aero/references/memory-patterns.md +9 -9
- package/assets/assets/{index-D0BgyJJT.js → index-B18l8ugs.js} +1 -1
- package/assets/index.html +1 -1
- package/dist/{chunk-KANIG6ES.js → chunk-CKABU6PE.js} +203 -560
- package/dist/{chunk-OX24LLIH.js → chunk-HNVRN5QL.js} +908 -5
- package/dist/cli.js +11 -2
- package/dist/index.js +2 -2
- package/dist/mcp.js +9 -796
- package/package.json +8 -8
package/dist/cli.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
setGoogleAuthConfig,
|
|
18
18
|
showFirstRunNotice,
|
|
19
19
|
trackEvent
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-CKABU6PE.js";
|
|
21
21
|
import {
|
|
22
22
|
CcReleaseSyncStatuses,
|
|
23
23
|
CheckScopes,
|
|
@@ -45,7 +45,7 @@ import {
|
|
|
45
45
|
saveConfig,
|
|
46
46
|
saveConfigPatch,
|
|
47
47
|
usageError
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-HNVRN5QL.js";
|
|
49
49
|
import {
|
|
50
50
|
apiKeys,
|
|
51
51
|
competitors,
|
|
@@ -8957,6 +8957,15 @@ Usage: ${usage}`, {
|
|
|
8957
8957
|
await agentTranscriptReset({ project, format: input.format });
|
|
8958
8958
|
}
|
|
8959
8959
|
},
|
|
8960
|
+
{
|
|
8961
|
+
path: ["agent", "clear"],
|
|
8962
|
+
usage: "canonry agent clear <project> [--format json]",
|
|
8963
|
+
options: {},
|
|
8964
|
+
run: async (input) => {
|
|
8965
|
+
const project = requireProject(input, "agent.clear", "canonry agent clear <project> [--format json]");
|
|
8966
|
+
await agentTranscriptReset({ project, format: input.format });
|
|
8967
|
+
}
|
|
8968
|
+
},
|
|
8960
8969
|
{
|
|
8961
8970
|
path: ["agent", "memory", "list"],
|
|
8962
8971
|
usage: "canonry agent memory list <project> [--format json]",
|
package/dist/index.js
CHANGED