@piut/cli 1.0.1 → 1.0.2
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 +9 -9
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ pıut is a personal context service that works via [MCP (Model Context Protocol)
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx piut
|
|
10
|
+
npx @piut/cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
That's it. The CLI auto-detects your AI tools and configures them.
|
|
@@ -39,17 +39,17 @@ See [piut.com/docs](https://piut.com/docs#add-to-ai) for setup guides for 14+ AI
|
|
|
39
39
|
Install globally or run with `npx`:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
npx piut # Auto-detect and configure AI tools
|
|
43
|
-
npx piut status # Show which tools are connected
|
|
44
|
-
npx piut remove # Remove pıut from selected tools
|
|
42
|
+
npx @piut/cli # Auto-detect and configure AI tools
|
|
43
|
+
npx @piut/cli status # Show which tools are connected
|
|
44
|
+
npx @piut/cli remove # Remove pıut from selected tools
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
**Options:**
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
npx piut --key pb_... # Pass API key non-interactively
|
|
51
|
-
npx piut --tool cursor # Configure a single tool
|
|
52
|
-
npx piut --skip-skill # Skip skill.md file placement
|
|
50
|
+
npx @piut/cli --key pb_... # Pass API key non-interactively
|
|
51
|
+
npx @piut/cli --tool cursor # Configure a single tool
|
|
52
|
+
npx @piut/cli --skip-skill # Skip skill.md file placement
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
**Supported tools:** Claude Code, Claude Desktop, Cursor, Windsurf, GitHub Copilot, Amazon Q, Zed
|
|
@@ -57,7 +57,7 @@ npx piut --skip-skill # Skip skill.md file placement
|
|
|
57
57
|
## How It Works
|
|
58
58
|
|
|
59
59
|
1. **Build your context** — Answer 5 questions or import existing files from your AI tools
|
|
60
|
-
2. **Connect your tools** — Run `npx piut` or add one config, and every connected AI knows your context
|
|
60
|
+
2. **Connect your tools** — Run `npx @piut/cli` or add one config, and every connected AI knows your context
|
|
61
61
|
3. **Stay in sync** — Update your context once, and it's reflected everywhere
|
|
62
62
|
|
|
63
63
|
Your context is organized into 5 sections:
|
|
@@ -91,7 +91,7 @@ pıut provides 6 tools via MCP:
|
|
|
91
91
|
| `get_context` | Read all 5 context sections |
|
|
92
92
|
| `get_section` | Read a specific section |
|
|
93
93
|
| `search_brain` | Search across all sections |
|
|
94
|
-
| `
|
|
94
|
+
| `append_brain` | Append content to a section |
|
|
95
95
|
| `update_brain` | AI-powered smart update across sections |
|
|
96
96
|
| `prompt_brain` | Natural language command (edit, delete, reorganize) |
|
|
97
97
|
|
package/dist/cli.js
CHANGED
|
@@ -507,7 +507,7 @@ async function removeCommand() {
|
|
|
507
507
|
|
|
508
508
|
// src/cli.ts
|
|
509
509
|
var program = new Command();
|
|
510
|
-
program.name("piut").description("Configure your AI tools to use p\u0131ut personal context").version("1.0.
|
|
510
|
+
program.name("piut").description("Configure your AI tools to use p\u0131ut personal context").version("1.0.2");
|
|
511
511
|
program.command("setup", { isDefault: true }).description("Auto-detect and configure AI tools").option("-k, --key <key>", "API key (prompts interactively if not provided)").option("-t, --tool <id>", "Configure a single tool (claude-code, cursor, windsurf, etc.)").option("-y, --yes", "Skip interactive prompts (auto-select all detected tools)").option("--project", "Prefer project-local config files").option("--skip-skill", "Skip skill.md file placement").action(setupCommand);
|
|
512
512
|
program.command("status").description("Show which AI tools are configured with p\u0131ut").action(statusCommand);
|
|
513
513
|
program.command("remove").description("Remove p\u0131ut configuration from AI tools").action(removeCommand);
|