@dotdrelle/wiki-manager 0.15.99 → 0.15.101

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": "@dotdrelle/wiki-manager",
3
- "version": "0.15.99",
3
+ "version": "0.15.101",
4
4
  "description": "Agentic shell and orchestration cockpit for llm-wiki workspaces.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "0.15.99",
3
- "commit": "8a91b62"
2
+ "version": "0.15.101",
3
+ "commit": "490bc6b"
4
4
  }
package/src/core/mcp.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { existsSync, readFileSync } from 'node:fs';
2
2
  import { managerEnvFile, managerMcpEndpointsFile, readEnvFile } from './env.js';
3
3
 
4
- const WIKI_MANAGER_VERSION = '0.15.99';
4
+ const WIKI_MANAGER_VERSION = '0.15.101';
5
5
 
6
6
  function envValue(key) {
7
7
  const filePath = managerEnvFile();
@@ -523,7 +523,8 @@ function activeProfileModel(session) {
523
523
  const READ_ONLY_WIKI_TOOLS = new Set([
524
524
  'help_list', 'help_read', 'help_search',
525
525
  'profile_read', 'template_read',
526
- 'wiki_collect_context', 'wiki_list_ingested_sources', 'wiki_list_pages',
526
+ 'wiki_collect_context', 'wiki_list_ingested_sources',
527
+ 'wiki_list_provenance_locators', 'wiki_list_pages',
527
528
  'wiki_outline', 'wiki_read_deliverable', 'wiki_read_ingested_source',
528
529
  'wiki_read_page', 'wiki_read_pages', 'wiki_search_context',
529
530
  'wiki_workspace_status',