@pencil-agent/nano-pencil 1.6.0 → 1.6.1

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.
@@ -4,7 +4,12 @@
4
4
  * This extension integrates nanosoul as a loadable extension for NanoPencil.
5
5
  * It provides AI personality evolution capabilities.
6
6
  */
7
- import type { ExtensionFactory } from "@mariozechner/pi-agent-core";
8
- declare const nanosoulExtension: ExtensionFactory;
7
+ interface MinimalExtensionAPI {
8
+ registerSlashCommand(command: {
9
+ name: string;
10
+ description: string;
11
+ }): void;
12
+ }
13
+ declare const nanosoulExtension: (pi: MinimalExtensionAPI) => void;
9
14
  export default nanosoulExtension;
10
15
  //# sourceMappingURL=extension.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pencil-agent/nano-pencil",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "CLI writing agent with read, bash, edit, write tools and session management. Based on pi; supports DashScope Coding Plan. Soul enabled by default for AI personality evolution.",
5
5
  "type": "module",
6
6
  "bin": {