@cluesmith/multisage 0.1.0 → 1.0.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/README.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# @multisage
|
|
1
|
+
# @cluesmith/multisage
|
|
2
2
|
|
|
3
3
|
Query [Multisage](https://multisage.ai) from your terminal. Get answers from a panel of AI experts (Claude, GPT, Gemini) with a single command.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @multisage
|
|
8
|
+
npm install -g @cluesmith/multisage
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Or use without installing:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx @multisage
|
|
14
|
+
npx @cluesmith/multisage "What's the best programming language for beginners?"
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Setup
|
package/dist/index.js
CHANGED
|
@@ -240,7 +240,7 @@ function displayName(name) {
|
|
|
240
240
|
// src/index.ts
|
|
241
241
|
var DEFAULT_API_URL = "https://multisage.ai";
|
|
242
242
|
var program = new Command();
|
|
243
|
-
program.name("multisage").description("Query Multisage from your terminal").version("0.1
|
|
243
|
+
program.name("multisage").description("Query Multisage from your terminal").version("1.0.1").argument("[question]", "The question to ask").option("-k, --api-key <key>", "API key (overrides MULTISAGE_API_KEY env var)").option("-u, --api-url <url>", "Base URL for API", DEFAULT_API_URL).option("-f, --full", "Include all stages and expert details", false).option("-j, --json", "Output as structured JSON", false).option("-q, --quiet", "Suppress progress indicator", false).action(async (question, options) => {
|
|
244
244
|
if (!question) {
|
|
245
245
|
if (process.stdin.isTTY) {
|
|
246
246
|
program.help();
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cluesmith/multisage",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI client for Multisage — ask questions from your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"multisage": "
|
|
7
|
+
"multisage": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|