@concept-ai/workspace 0.1.0 → 0.1.1
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.
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Install Concept Workspace MCP into terminal agents.
|
|
|
7
7
|
Run:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm exec --yes --package @concept-ai/workspace@latest -- concept-workspace
|
|
10
|
+
npm exec --yes --package @concept-ai/workspace@latest -- concept-workspace install codex
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
The installer writes the Codex MCP server entry with the required OAuth scopes:
|
|
@@ -31,7 +31,7 @@ You should not need to pass `--scopes` to `codex mcp login`.
|
|
|
31
31
|
Run:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm exec --yes --package @concept-ai/workspace@latest -- concept-workspace
|
|
34
|
+
npm exec --yes --package @concept-ai/workspace@latest -- concept-workspace install claude-code
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
The installer registers Concept Workspace with Claude Code. When the `claude`
|
|
@@ -80,17 +80,17 @@ tmp="$(mktemp -d)"
|
|
|
80
80
|
npm pack --workspace @concept-ai/workspace --pack-destination "$tmp"
|
|
81
81
|
|
|
82
82
|
CODEX_HOME="$tmp/codex" \
|
|
83
|
-
npx --yes --package "$tmp"/concept-ai-workspace-0.1.
|
|
84
|
-
concept-workspace
|
|
83
|
+
npx --yes --package "$tmp"/concept-ai-workspace-0.1.1.tgz \
|
|
84
|
+
concept-workspace install codex --no-login --yes
|
|
85
85
|
CODEX_HOME="$tmp/codex" codex mcp get concept
|
|
86
86
|
|
|
87
87
|
CODEX_HOME="$tmp/codex" \
|
|
88
|
-
npx --yes --package "$tmp"/concept-ai-workspace-0.1.
|
|
89
|
-
concept-workspace
|
|
88
|
+
npx --yes --package "$tmp"/concept-ai-workspace-0.1.1.tgz \
|
|
89
|
+
concept-workspace install codex --dry-run --no-login --yes
|
|
90
90
|
|
|
91
91
|
CLAUDE_CONFIG_DIR="$tmp/claude" \
|
|
92
|
-
npx --yes --package "$tmp"/concept-ai-workspace-0.1.
|
|
93
|
-
concept-workspace
|
|
92
|
+
npx --yes --package "$tmp"/concept-ai-workspace-0.1.1.tgz \
|
|
93
|
+
concept-workspace install claude-code --no-cli --yes
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
Inspect `$tmp/codex/config.toml` for the Workspace MCP URL plus required
|
|
@@ -102,14 +102,14 @@ If the `claude` CLI is installed, also validate CLI delegation:
|
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
104
|
CLAUDE_CONFIG_DIR="$tmp/claude-cli" \
|
|
105
|
-
npx --yes --package "$tmp"/concept-ai-workspace-0.1.
|
|
106
|
-
concept-workspace
|
|
105
|
+
npx --yes --package "$tmp"/concept-ai-workspace-0.1.1.tgz \
|
|
106
|
+
concept-workspace install claude-code --yes
|
|
107
107
|
CLAUDE_CONFIG_DIR="$tmp/claude-cli" claude mcp get concept
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
## Publishing
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
Publish the next npm package release:
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
115
|
npm run test --workspace @concept-ai/workspace
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@concept-ai/workspace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"concept-workspace
|
|
7
|
+
"concept-workspace": "bin/concept-workspace.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"bin",
|
package/src/cli.mjs
CHANGED
|
@@ -18,8 +18,8 @@ import {
|
|
|
18
18
|
} from './claude-code-config.mjs';
|
|
19
19
|
|
|
20
20
|
const USAGE = `Usage:
|
|
21
|
-
concept-workspace
|
|
22
|
-
concept-workspace
|
|
21
|
+
concept-workspace install codex [options]
|
|
22
|
+
concept-workspace install claude-code [options]
|
|
23
23
|
|
|
24
24
|
Shared options:
|
|
25
25
|
--name <name> MCP server name. Default: concept
|
|
File without changes
|