@pi-unipi/core 0.1.1 → 0.1.3

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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/constants.ts +11 -11
  3. package/package.json +5 -3
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @unipi/core
1
+ # @pi-unipi/core
2
2
 
3
3
  Shared utilities, event types, and constants for the [Unipi](https://github.com/Neuron-Mr-White/unipi) extension suite.
4
4
 
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- pi install npm:@unipi/core
8
+ pi install npm:@pi-unipi/core
9
9
  ```
10
10
 
11
11
  Or as part of the full suite:
@@ -16,7 +16,7 @@ pi install npm:unipi
16
16
  ## Usage
17
17
 
18
18
  ```typescript
19
- import { UNIPI_EVENTS, MODULES, sanitize, emitEvent } from "@unipi/core";
19
+ import { UNIPI_EVENTS, MODULES, sanitize, emitEvent } from "@pi-unipi/core";
20
20
 
21
21
  // Emit module ready event
22
22
  emitEvent(pi, UNIPI_EVENTS.MODULE_READY, {
package/constants.ts CHANGED
@@ -16,18 +16,18 @@ export const UNIPI_SETTINGS_KEY = "unipi" as const;
16
16
 
17
17
  /** Module names */
18
18
  export const MODULES = {
19
- CORE: "@unipi/core",
20
- WORKFLOW: "@unipi/workflow",
21
- RALPH: "@unipi/ralph",
22
- SUBAGENTS: "@unipi/subagents",
23
- MEMORY: "@unipi/memory",
24
- REGISTRY: "@unipi/registry",
25
- MCP: "@unipi/mcp",
26
- TASK: "@unipi/task",
27
- WEBTOOLS: "@unipi/webtools",
19
+ CORE: "@pi-unipi/core",
20
+ WORKFLOW: "@pi-unipi/workflow",
21
+ RALPH: "@pi-unipi/ralph",
22
+ SUBAGENTS: "@pi-unipi/subagents",
23
+ MEMORY: "@pi-unipi/memory",
28
24
  INFO_SCREEN: "@pi-unipi/info-screen",
29
- IMPECCABLE: "@unipi/impeccable",
30
- SETTINGS: "@unipi/settings",
25
+ REGISTRY: "@pi-unipi/registry",
26
+ MCP: "@pi-unipi/mcp",
27
+ TASK: "@pi-unipi/task",
28
+ WEBTOOLS: "@pi-unipi/webtools",
29
+ IMPECCABLE: "@pi-unipi/impeccable",
30
+ SETTINGS: "@pi-unipi/settings",
31
31
  } as const;
32
32
 
33
33
  /** Workflow command names */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Shared utilities, event types, and constants for Unipi extension suite",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -23,10 +23,12 @@
23
23
  "access": "public"
24
24
  },
25
25
  "peerDependencies": {
26
- "@mariozechner/pi-coding-agent": "*",
27
- "@sinclair/typebox": "*"
26
+ "@mariozechner/pi-coding-agent": ">=0.70.0",
27
+ "@sinclair/typebox": ">=0.34.0"
28
28
  },
29
29
  "devDependencies": {
30
+ "@mariozechner/pi-coding-agent": "^0.70.2",
31
+ "@sinclair/typebox": "^0.34.49",
30
32
  "@types/node": "^22.0.0"
31
33
  }
32
34
  }