cadre-ai 0.0.1 → 1.0.0

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
@@ -9,6 +9,8 @@ spec-first tracks, Beads-backed durable task memory, review gates, team boards,
9
9
  parallel worker orchestration, and mono/polyrepo delivery into one packet-owned
10
10
  workflow.
11
11
 
12
+ Public docs: [https://cadre-docs.pages.dev/](https://cadre-docs.pages.dev/)
13
+
12
14
  ## What Cadre Provides
13
15
 
14
16
  - **Structured work:** setup, new track, implementation, review, ship/land,
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "cadre-ai",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "description": "MCP-first Cadre workflows for context-driven development.",
5
5
  "author": {
6
6
  "name": "Vishal Kumar",
7
7
  "url": "https://github.com/vishal-kr-barnwal"
8
8
  },
9
- "homepage": "https://github.com/vishal-kr-barnwal/cadre",
9
+ "homepage": "https://cadre-docs.pages.dev/",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "https://github.com/vishal-kr-barnwal/cadre.git",
@@ -116,7 +116,7 @@ function readPackageMetadata(runtimeRoot) {
116
116
  return {
117
117
  version: typeof json.version === "string" ? json.version : "0.0.0",
118
118
  description: typeof json.description === "string" ? json.description : "MCP-first Cadre workflows.",
119
- homepage: typeof json.homepage === "string" ? json.homepage : "https://github.com/vishal-kr-barnwal/cadre",
119
+ homepage: typeof json.homepage === "string" ? json.homepage : "https://cadre-docs.pages.dev/",
120
120
  repository: typeof json.repository === "string" ? json.repository : "https://github.com/vishal-kr-barnwal/cadre",
121
121
  license: typeof json.license === "string" ? json.license : "Apache-2.0"
122
122
  };
@@ -124,7 +124,7 @@ function readPackageMetadata(runtimeRoot) {
124
124
  return {
125
125
  version: "0.0.0",
126
126
  description: "MCP-first Cadre workflows.",
127
- homepage: "https://github.com/vishal-kr-barnwal/cadre",
127
+ homepage: "https://cadre-docs.pages.dev/",
128
128
  repository: "https://github.com/vishal-kr-barnwal/cadre",
129
129
  license: "Apache-2.0"
130
130
  };
@@ -12339,7 +12339,7 @@ function createMcpRuntime(deps) {
12339
12339
  return {
12340
12340
  protocolVersion: PROTOCOL_VERSION,
12341
12341
  capabilities: { resources: { listChanged: false }, tools: { listChanged: false } },
12342
- serverInfo: { name: "cadre", version: "0.0.1" },
12342
+ serverInfo: { name: "cadre", version: "1.0.0" },
12343
12343
  instructions: SERVER_INSTRUCTIONS
12344
12344
  };
12345
12345
  }