@twira/cli 2.0.1 → 2.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 +12 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
<h1 align="center">Twira</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
Power tools for AI agents
|
|
8
|
+
Power tools for AI agents. Fewer hallucinations, fewer tokens, faster work.
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
Twira indexes your codebase locally and plugs into Claude Code, Codex, Gemini, and any MCP-compatible assistant. It gives your AI ground truth
|
|
13
|
+
Twira indexes your codebase locally and plugs into Claude Code, Codex, Gemini, and any MCP-compatible assistant. It gives your AI ground truth. Fast, local, and deterministic. Your assistant gets sharper. You stay in flow.
|
|
14
14
|
|
|
15
15
|
Zero dependencies. Runs locally. Your source code never leaves your machine.
|
|
16
16
|
|
|
@@ -27,22 +27,25 @@ This package downloads the right native `twira` binary for your platform on inst
|
|
|
27
27
|
brew install twirahq/tap/twira
|
|
28
28
|
|
|
29
29
|
# curl (macOS / Linux)
|
|
30
|
-
curl -fsSL https://
|
|
30
|
+
curl -fsSL https://twira.com/install.sh | sh
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
## Get started
|
|
34
34
|
|
|
35
35
|
```sh
|
|
36
|
-
twira init
|
|
37
|
-
twira
|
|
38
|
-
twira
|
|
36
|
+
twira init # set up Twira in your repo: wires your AI agent (MCP) and builds the index
|
|
37
|
+
twira login # link this machine to your Twira account (Pro and trials)
|
|
38
|
+
twira dashboard # open the local dashboard in your browser
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
From there your AI agent does the work. Ask it to search, read, check impact, or diagnose, and it reaches for Twira's tools by itself.
|
|
42
|
+
|
|
41
43
|
## Links
|
|
42
44
|
|
|
43
|
-
- Website
|
|
44
|
-
-
|
|
45
|
+
- Website: https://twira.com
|
|
46
|
+
- Pricing: https://twira.com/pricing
|
|
47
|
+
- Documentation and releases: https://github.com/TwiraHQ/twira
|
|
45
48
|
|
|
46
49
|
---
|
|
47
50
|
|
|
48
|
-
|
|
51
|
+
Free for personal use, straight from install. Pro unlocks the full toolbelt with a 14-day trial, no card required.
|