@bitflower/va-mcp 1.0.0 → 1.0.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
@@ -61,9 +61,8 @@ grep -qxF '.claude/settings.local.json' .gitignore || echo '.claude/settings.loc
61
61
 
62
62
  The check is deliberately conservative: it recognizes only an exact-path or
63
63
  directory-prefix entry — glob patterns (e.g. `.claude/*`), `!`-negation lines,
64
- and nested `.gitignore` files are **not** evaluated. See the
65
- [full guide](../../documentation/mcp-installer-guide.md) for the exact matcher
66
- semantics. The check is skipped for non-git directories. In a monorepo, put
64
+ and nested `.gitignore` files are **not** evaluated. The check is skipped for
65
+ non-git directories. In a monorepo, put
67
66
  the entry in the **project-local** `.gitignore` (the one in the target
68
67
  directory), not the repo-root `.gitignore` — the installer reads only the
69
68
  target directory's file.
@@ -82,9 +81,6 @@ without outbound network access (beyond `npx` fetching the package itself).
82
81
  release.
83
82
  - **Bearer token:** your API key is passed only to the `claude` CLI and is
84
83
  never written to any file the installer creates.
85
-
86
- ## Full guide
87
-
88
- See **[documentation/mcp-installer-guide.md](../../documentation/mcp-installer-guide.md)**
89
- for prerequisites in depth, the data-flow and bearer-exposure warnings,
90
- verification steps, key rotation, and LAN access.
84
+ - **Full setup guide:** in-depth prerequisites, data-flow and bearer-exposure
85
+ warnings, verification, key rotation, and LAN access are documented for
86
+ Virtual Architect users as part of the platform docs.
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import { Command, CommanderError } from "commander";
8
8
  // package.json
9
9
  var package_default = {
10
10
  name: "@bitflower/va-mcp",
11
- version: "1.0.0",
11
+ version: "1.0.1",
12
12
  description: "Install the Virtual Architect MCP server and SessionStart playbook into a Claude Code project.",
13
13
  repository: {
14
14
  type: "git",
@@ -17,7 +17,7 @@ var package_default = {
17
17
  },
18
18
  type: "module",
19
19
  bin: {
20
- "va-mcp": "./dist/index.js"
20
+ "va-mcp": "dist/index.js"
21
21
  },
22
22
  files: [
23
23
  "dist"
@@ -34,8 +34,12 @@ var package_default = {
34
34
  },
35
35
  keywords: [
36
36
  "mcp",
37
- "claude-code",
38
- "virtual-architect"
37
+ "virtual-architect",
38
+ "knowledge-management",
39
+ "knowledge-base",
40
+ "sdlc",
41
+ "architecture",
42
+ "infrastructure"
39
43
  ],
40
44
  license: "MIT",
41
45
  publishConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitflower/va-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Install the Virtual Architect MCP server and SessionStart playbook into a Claude Code project.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "type": "module",
11
11
  "bin": {
12
- "va-mcp": "./dist/index.js"
12
+ "va-mcp": "dist/index.js"
13
13
  },
14
14
  "files": [
15
15
  "dist"
@@ -26,8 +26,12 @@
26
26
  },
27
27
  "keywords": [
28
28
  "mcp",
29
- "claude-code",
30
- "virtual-architect"
29
+ "virtual-architect",
30
+ "knowledge-management",
31
+ "knowledge-base",
32
+ "sdlc",
33
+ "architecture",
34
+ "infrastructure"
31
35
  ],
32
36
  "license": "MIT",
33
37
  "publishConfig": {