@mcpware/claude-code-organizer 0.2.2 → 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.
@@ -0,0 +1,54 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write # MCP Registry OIDC auth
13
+ contents: write # Create GitHub Release
14
+
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v5
18
+
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v5
21
+ with:
22
+ node-version: "lts/*"
23
+ registry-url: "https://registry.npmjs.org"
24
+
25
+ - name: Install dependencies
26
+ run: |
27
+ if [ -f package-lock.json ]; then
28
+ npm ci --ignore-scripts
29
+ else
30
+ npm install --ignore-scripts
31
+ fi
32
+
33
+ - name: Build (if applicable)
34
+ run: npm run build --if-present
35
+
36
+ - name: Publish to npm
37
+ run: npm publish --access public
38
+ env:
39
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
40
+
41
+ - name: Create GitHub Release
42
+ uses: softprops/action-gh-release@v2
43
+ with:
44
+ generate_release_notes: true
45
+
46
+ - name: Install mcp-publisher
47
+ run: |
48
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
49
+
50
+ - name: Authenticate to MCP Registry (OIDC)
51
+ run: ./mcp-publisher login github-oidc
52
+
53
+ - name: Publish to MCP Registry
54
+ run: ./mcp-publisher publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpware/claude-code-organizer",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Organize all your Claude Code memories, skills, MCP servers, and hooks — view by scope hierarchy, move between scopes via drag-and-drop",
5
5
  "type": "module",
6
6
  "bin": {
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/mcpware/claude-code-organizer",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.2.2",
9
+ "version": "0.2.4",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "@mcpware/claude-code-organizer",
14
- "version": "0.2.2",
14
+ "version": "0.2.4",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  }