compass-agent 2.0.5 → 2.0.6

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.
@@ -3,6 +3,8 @@ name: Publish to npm
3
3
  on:
4
4
  release:
5
5
  types: [published]
6
+ push:
7
+ branches: [main]
6
8
 
7
9
  jobs:
8
10
  publish:
@@ -15,6 +17,7 @@ jobs:
15
17
  - uses: oven-sh/setup-bun@v2
16
18
 
17
19
  - name: Set version from release tag
20
+ if: github.event_name == 'release'
18
21
  run: npm version "${GITHUB_REF_NAME#v}" --no-git-tag-version --allow-same-version
19
22
 
20
23
  - run: bun install --frozen-lockfile
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compass-agent",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "type": "module",
5
5
  "description": "Bring Claude Code to your Slack workspace — per-thread AI coding sessions with full local filesystem access",
6
6
  "bin": {
@@ -10,13 +10,7 @@
10
10
  "start": "bun src/app.ts",
11
11
  "test": "bun test"
12
12
  },
13
- "keywords": [
14
- "slack",
15
- "claude",
16
- "ai",
17
- "coding-assistant",
18
- "claude-code"
19
- ],
13
+ "keywords": ["slack", "claude", "ai", "coding-assistant", "claude-code"],
20
14
  "license": "MIT",
21
15
  "dependencies": {
22
16
  "@modelcontextprotocol/sdk": "^1.26.0",