@pinet/pinet-core 0.2.1 → 0.2.4

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 (2) hide show
  1. package/README.md +17 -11
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,20 +1,26 @@
1
1
  # @pinet/pinet-core
2
2
 
3
- Runtime-core helpers for Pinet that are independent of any Slack adapter.
3
+ Runtime helpers for Pinet that work independently of Slack.
4
4
 
5
- Current seam:
5
+ ## What it does
6
6
 
7
- - Pinet output option normalization (`cli` default, explicit `json`/`full` opt-ins)
8
- - durable Pinet read result text/detail formatting
9
- - scheduled wake-up time parsing and thread ID helpers
7
+ This package provides:
10
8
 
11
- `@pinet/slack-bridge` still composes the extension and preserves compatibility wrappers, but these helpers now live behind package exports so future extraction can move one boundary at a time.
9
+ - output option normalisation (defaults to `cli`, accepts `json` or `full`)
10
+ - durable read result formatting
11
+ - scheduled wake-up time parsing
12
+ - thread ID helpers
12
13
 
13
- Design proposal: `plans/slack-split-proposal.md`
14
+ ## How it works
15
+
16
+ The package exports helpers that `@pinet/slack-bridge` uses internally. These functions handle Pinet operations without depending on Slack adapters.
17
+
18
+ The helpers live behind package exports. Future changes can move functionality one boundary at a time.
19
+
20
+ See the design proposal in `plans/slack-split-proposal.md`.
14
21
 
15
22
  ## Publishing
16
23
 
17
- This package is included in the full npm publish set tracked in
18
- [`../plans/npm-publish.md`](../plans/npm-publish.md). Use the GitHub Actions
19
- workflow's default dry-run/readiness path for validation; do not publish, tag, or
20
- bump versions without explicit maintainer release approval.
24
+ This package is part of the npm publish set in [`../plans/npm-publish.md`](../plans/npm-publish.md).
25
+
26
+ Do not publish, tag, or bump versions without maintainer approval. Use the GitHub Actions workflow for validation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinet/pinet-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.4",
4
4
  "type": "module",
5
5
  "description": "Pinet runtime core for pi — broker/follower orchestration and mesh tooling",
6
6
  "author": "Will Porcellini <5994936+gugu91@users.noreply.github.com>",
@@ -35,8 +35,8 @@
35
35
  "test": "vitest run *.test.ts"
36
36
  },
37
37
  "dependencies": {
38
- "@pinet/broker-core": "0.2.1",
39
- "@pinet/transport-core": "0.2.1"
38
+ "@pinet/broker-core": "0.2.4",
39
+ "@pinet/transport-core": "0.2.4"
40
40
  },
41
41
  "types": "./dist/index.d.ts"
42
42
  }