superlore-cli 0.1.0 → 0.1.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/dist/index.d.ts CHANGED
@@ -83,7 +83,7 @@ declare function serializeSuperloreJson(config: SuperloreJson): string;
83
83
  declare function resolveMcpPath(config: SuperloreJson): string | undefined;
84
84
 
85
85
  /** The CLI version, kept in sync with package.json at build time. */
86
- declare const VERSION = "0.1.0";
86
+ declare const VERSION = "0.1.1";
87
87
  /** Build the argument parser. Exported for tests; `run()` wires it to argv. */
88
88
  declare function buildCli(argv?: readonly string[]): cac.CAC;
89
89
  /** Parse argv and dispatch. Reports unknown commands and unexpected errors cleanly. */
package/dist/index.js CHANGED
@@ -25,12 +25,12 @@ function banner() {
25
25
  process.stdout.write("superlore \u2014 the company knowledge base your agents run on.\n");
26
26
  return;
27
27
  }
28
- const fold = `${accent("\u2588\u2588")}${accentSoft("\u2593\u2593")}`;
28
+ const seam = dim("\u258F");
29
29
  const lines = [
30
- ` ${fold}`,
31
- ` ${fold} ${wordmark("superlore")}`,
32
- ` ${fold} ${dim("the company knowledge base your agents run on")}`,
33
- ` ${fold}`
30
+ ` ${accent("\u2597\u259F\u2588")}${accentSoft("\u2599\u2596")}`,
31
+ ` ${accent("\u2590\u2588")}${seam}${accentSoft("\u2592\u258C")} ${wordmark("superlore")}`,
32
+ ` ${accent("\u2590\u2588")}${seam}${accentSoft("\u2592\u258C")} ${dim("the company knowledge base your agents run on")}`,
33
+ ` ${accent("\u259D\u259C\u2588")}${accentSoft("\u259B\u2598")}`
34
34
  ];
35
35
  process.stdout.write(`
36
36
  ${lines.join("\n")}
@@ -829,7 +829,7 @@ function printNextSteps(root, config) {
829
829
  }
830
830
 
831
831
  // src/index.ts
832
- var VERSION = "0.1.0";
832
+ var VERSION = "0.1.1";
833
833
  function buildCli(argv = process2.argv) {
834
834
  const cli = cac("superlore");
835
835
  cli.command("init [dir]", "Scaffold a new superlore knowledge base").option("--name <name>", "KB name").option("--type <type>", "KB type: company-kb | product-docs").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("-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").action(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlore-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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",