@codebehind/agent-workflow 1.1.11 → 1.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebehind/agent-workflow",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
4
4
  "description": "Scaffold the agent-workflow spec-driven delivery framework into any repo",
5
5
  "type": "module",
6
6
  "bin": {
@@ -18,6 +18,42 @@ Install these tools before starting:
18
18
 
19
19
  ---
20
20
 
21
+ ## 0. Configure the Notion MCP server
22
+
23
+ The `prepare-spec` skill fetches Notion pages via the [Notion MCP server](https://github.com/notionhq/notion-mcp-server). Register it once at user scope so it is available in all projects.
24
+
25
+ ### 0a. Create a Notion integration
26
+
27
+ 1. Go to [https://www.notion.so/profile/integrations](https://www.notion.so/profile/integrations) and click **New integration**.
28
+ 2. Give it a name (e.g. `claude-code`), select your workspace, and click **Save**.
29
+ 3. Copy the **Internal Integration Secret** — it starts with `ntn_`.
30
+ 4. Open each Notion page (or parent database) the agent needs to read, click **⋯ → Connections**, and add your integration.
31
+
32
+ ### 0b. Register the MCP server with Claude Code
33
+
34
+ ```bash
35
+ claude mcp add --scope user notion \
36
+ -- npx -y @notionhq/notion-mcp-server
37
+ ```
38
+
39
+ Then set the required auth header (replace `<YOUR_TOKEN>` with the secret from step 0a):
40
+
41
+ ```bash
42
+ claude mcp add --scope user notion \
43
+ -e OPENAPI_MCP_HEADERS='{"Authorization":"Bearer <YOUR_TOKEN>","Notion-Version":"2022-06-28"}' \
44
+ -- npx -y @notionhq/notion-mcp-server
45
+ ```
46
+
47
+ ### 0c. Verify the connection
48
+
49
+ ```bash
50
+ claude mcp list
51
+ ```
52
+
53
+ You should see `notion: ✓ Connected`.
54
+
55
+ ---
56
+
21
57
  ## 1. Authenticate with GitLab
22
58
 
23
59
  ```bash