palmier 0.2.7 → 0.2.8

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.
@@ -0,0 +1,24 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ id-token: write
13
+ steps:
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-node@v6
16
+ with:
17
+ node-version: 24
18
+ cache: npm
19
+ registry-url: https://registry.npmjs.org
20
+ - run: npm ci
21
+ - run: npm run build
22
+ - run: npm publish --provenance --access public
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CLAUDE.md CHANGED
@@ -1,9 +1,9 @@
1
- # CLAUDE.md
2
-
3
- ## Getting Started
4
-
5
- Always read `README.md` first before starting any task. For the full platform architecture spec (NATS protocol, data model, execution flow), see `spec.md` in the [palmier-server](../palmier-server) repo.
6
-
7
- ## Documentation
8
-
9
- When making architectural changes, update `README.md` and the server repo's `spec.md` to reflect the new state.
1
+ # CLAUDE.md
2
+
3
+ ## Getting Started
4
+
5
+ Always read `README.md` first before starting any task. For the full platform architecture spec (NATS protocol, data model, execution flow), see `spec.md` in the [palmier-server](../palmier-server) repo.
6
+
7
+ ## Documentation
8
+
9
+ When making architectural changes, update `README.md` and the server repo's `spec.md` to reflect the new state.