compact-agent 1.1.0 → 1.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/README.md +14 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -295,18 +295,25 @@ Prefix any line with `!` to run a shell command directly without AI involvement:
|
|
|
295
295
|
## Install
|
|
296
296
|
|
|
297
297
|
```bash
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
npx tsc
|
|
301
|
-
npm install -g .
|
|
298
|
+
npm install -g compact-agent
|
|
299
|
+
compact-agent
|
|
302
300
|
```
|
|
303
301
|
|
|
304
|
-
|
|
302
|
+
For the full setup walkthrough (prerequisites, providers, troubleshooting) see [INSTALL.md](INSTALL.md).
|
|
303
|
+
|
|
304
|
+
### From source (development)
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
```bash
|
|
307
|
+
git clone https://github.com/Crownelius/Crowcoder.git
|
|
308
|
+
cd Crowcoder
|
|
309
|
+
npm install
|
|
310
|
+
npm link
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
Rebuild after edits:
|
|
307
314
|
|
|
308
315
|
```bash
|
|
309
|
-
|
|
316
|
+
npx tsc
|
|
310
317
|
```
|
|
311
318
|
|
|
312
319
|
## Environment Variables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compact-agent",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A dense, feature-rich AI coding agent for the terminal. 80+ slash commands, 8 modes including Hermes self-improving loop, multi-agent orchestration, bundled everything-claude-code skills library, learning system, and observable LLM transport. Works with OpenRouter, OpenAI, Anthropic-compatible, Ollama, LM Studio, DeepSeek, or any OpenAI-compatible API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|