archer-wizard 0.2.3 → 0.2.5

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,25 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: '20'
17
+ registry-url: 'https://registry.npmjs.org'
18
+
19
+ - run: npm ci
20
+
21
+ - run: npm run build
22
+
23
+ - run: npm publish --access public
24
+ env:
25
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,7 +1,32 @@
1
1
  {
2
2
  "name": "archer-wizard",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "event intelligence layer for AI agents",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "ai-agent",
9
+ "agent",
10
+ "supabase",
11
+ "realtime",
12
+ "database-events",
13
+ "webhook",
14
+ "cursor",
15
+ "claude",
16
+ "windsurf",
17
+ "opencode",
18
+ "wizard",
19
+ "event-intelligence",
20
+ "data-monitoring",
21
+ "automation",
22
+ "postgres",
23
+ "database-trigger"
24
+ ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/amirlan-labs/archer-mcp"
28
+ },
29
+ "homepage": "https://github.com/amirlan-labs/archer-mcp#readme",
5
30
  "type": "module",
6
31
  "bin": {
7
32
  "archer": "dist/index.js",