superlore-cli 0.7.3 → 0.7.4

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/dist/index.d.ts CHANGED
@@ -106,7 +106,7 @@ declare function serializeSuperloreJson(config: SuperloreJson): string;
106
106
  declare function resolveMcpPath(config: SuperloreJson): string | undefined;
107
107
 
108
108
  /** The CLI version, kept in sync with package.json at build time. */
109
- declare const VERSION = "0.7.3";
109
+ declare const VERSION = "0.7.4";
110
110
  /** Build the argument parser. Exported for tests; `run()` wires it to argv. */
111
111
  declare function buildCli(argv?: readonly string[]): cac.CAC;
112
112
  /** Parse argv and dispatch. Reports unknown commands and unexpected errors cleanly. */
package/dist/index.js CHANGED
@@ -1865,7 +1865,7 @@ function writeSkeleton(root, config) {
1865
1865
  "fumadocs-core": "^16.8.2",
1866
1866
  "fumadocs-mdx": "^14.3.1",
1867
1867
  "fumadocs-ui": "^16.8.2",
1868
- superlore: "^0.9.0",
1868
+ superlore: "^0.12.0",
1869
1869
  "lucide-react": "^1.21.0",
1870
1870
  ...mcpEnabled ? (
1871
1871
  // mcp-handler pins an EXACT sdk peer (1.26.0); npm errors on anything else (pnpm only
@@ -2543,7 +2543,7 @@ function printNextSteps(root, config) {
2543
2543
  }
2544
2544
 
2545
2545
  // src/index.ts
2546
- var VERSION = "0.7.3";
2546
+ var VERSION = "0.7.4";
2547
2547
  function buildCli(argv = process3.argv) {
2548
2548
  const cli = cac("superlore");
2549
2549
  cli.command("init [dir]", "Scaffold a new superlore knowledge base").option("--name <name>", "KB name").option("--type <type>", "KB type: company-kb | product-docs | personal-kb").option("--auth", "Enable the Google SSO auth gate").option("--no-auth", "Disable the auth gate").option("--allowed-domain <domain>", "Restrict SSO to one email domain (implies --auth)").option("--accent <color>", "Brand accent colour (any CSS colour)").option("--no-mcp", "Disable the MCP endpoint (on by default)").option("--connect", "Install the editor extension after scaffolding (skip the prompt)").option("--no-connect", "Don't set up the editor extension").option("-y, --yes", "Skip prompts; use flags + defaults").example("superlore init my-kb --type product-docs").example("superlore init acme --type company-kb --auth --allowed-domain acme.com").example("superlore init me --type personal-kb").action(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlore-cli",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "The superlore CLI — scaffold, run, and build an agent-native knowledge base. One corpus. Humans and agents.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Krishnan S G",