@telora/mcp-products 0.22.95 → 0.22.97

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.
Files changed (2) hide show
  1. package/README.md +2 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -120,14 +120,13 @@ The human profile uses a two-tier loading strategy to stay within Claude Code's
120
120
  | agent | `telora_agent` | 5 | Escalations are infrequent in interactive sessions |
121
121
  | context | `telora_product_context`, `telora_product_context_link` | 7 | Context doc management is occasional setup work |
122
122
  | connector | `telora_connector_start` | 1 | Daemon launch is a one-time operation |
123
- | factory | `telora_factory_blueprint_list`, `telora_factory_spec`, `telora_factory_instance` | 8 | Factory workflows are a separate domain |
124
123
  | okr | `telora_objective`, `telora_key_result`, `telora_focus_key_result` | 10 | Goal-setting is periodic, not daily |
125
124
  | ideas | `telora_idea`, `telora_idea_connection`, `telora_idea_cluster` | 12 | Brainstorming is a distinct activity |
126
125
  | workflows | `telora_workflow` | 5 | Workflow config is admin setup |
127
126
  | playbooks | `telora_playbook` | 4 | Template usage is infrequent |
128
127
  | profiles | `telora_deployment_profile` | 5 | CI/CD config is setup work |
129
128
 
130
- **Total after full discover: 78 decomposed tools (within the 80 budget).**
129
+ **Total after full discover: 70 decomposed tools (within the 80 budget).**
131
130
 
132
131
  ### Using telora_discover
133
132
 
@@ -136,7 +135,7 @@ The human profile uses a two-tier loading strategy to stay within Claude Code's
136
135
  telora_discover(action: "list")
137
136
 
138
137
  # Load a specific domain
139
- telora_discover(action: "load", domain: "factory")
138
+ telora_discover(action: "load", domain: "okr")
140
139
 
141
140
  # Load everything at once
142
141
  telora_discover(action: "load", domain: "all")
@@ -177,13 +176,6 @@ The `list` action returns a `toolIndex` per domain — tool names, summaries, av
177
176
  | `telora_product_context` | list, create, update, delete, reorder | Knowledge base: product context documents for AI agents |
178
177
  | `telora_product_context_link` | link, unlink | Attach/detach context documents to focuses or deliveries |
179
178
 
180
- ### Factory
181
- | Tool | Actions | Description |
182
- |------|---------|-------------|
183
- | `telora_factory_blueprint_list` | _(no action param)_ | List factory blueprints with gate configs and resource limits |
184
- | `telora_factory_spec` | create, get, list, update, validate | Define what to build via conversational spec authoring |
185
- | `telora_factory_instance` | get, update | View and control running factory instances (pause, cancel) |
186
-
187
179
  ### OKR Management
188
180
  | Tool | Actions | Description |
189
181
  |------|---------|-------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telora/mcp-products",
3
- "version": "0.22.95",
3
+ "version": "0.22.97",
4
4
  "description": "MCP server exposing Telora product operations to Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@modelcontextprotocol/sdk": "^1.12.1",
41
- "@telora/daemon-core": "^0.2.58",
41
+ "@telora/daemon-core": "^0.2.63",
42
42
  "ts-morph": "^28.0.0",
43
43
  "zod": "^4.3.6"
44
44
  },