wolli 0.0.1 → 0.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/docs/index.md ADDED
@@ -0,0 +1,36 @@
1
+ # Wolli Documentation
2
+
3
+ Wolli is a persistent, purposeful agent that runs in your terminal. It stays small at the core while being extended through TypeScript extensions, skills, prompt templates, themes, integrations, and plugins.
4
+
5
+ ## Quick start
6
+
7
+ Install Wolli with npm:
8
+
9
+ ```bash
10
+ npm install -g @opsyhq/wolli
11
+ ```
12
+
13
+ Then birth a new agent and start its birth conversation:
14
+
15
+ ```bash
16
+ wolli new <name>
17
+ ```
18
+
19
+ The agent opens by asking what it is for. Answer conversationally; it interviews you, distills its purpose, and when you both agree it understands its job, deploy it (it offers to, or type `/deploy`). Reconnect to a deployed agent any time with `wolli <name>`.
20
+
21
+ Authenticate with `/login` for subscription/OAuth providers (Claude and others), or set an API key such as `ANTHROPIC_API_KEY` before starting wolli. Credentials persist to the shared `~/.wolli/agent/auth.json` and are reused by every agent.
22
+
23
+ For the full first-run flow, CLI reference, sessions, and the agent-home layout, see the [package README](../README.md).
24
+
25
+ ## Customization
26
+
27
+ - [Extensions](extensions.md) - TypeScript modules for tools, commands, events, and custom UI.
28
+ - [Skills](skills.md) - Agent Skills for reusable on-demand capabilities.
29
+ - [Prompt templates](prompt-templates.md) - reusable prompts that expand from slash commands.
30
+ - [Themes](themes.md) - built-in and custom terminal themes.
31
+ - [Integrations](integrations.md) - connect external services and message channels to the agent.
32
+ - [Plugins](plugins.md) - bundle, publish, and install extensions, integrations, skills, prompts, and themes.
33
+
34
+ ## Programmatic usage
35
+
36
+ - [SDK](sdk.md) - embed wolli in Node.js applications.