thepopebot 1.2.74-beta.53 → 1.2.74
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 +11 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Build autonomous AI agents that work for you 24/7, individually or in teams.
|
|
|
30
30
|
│ ▼ │
|
|
31
31
|
│ ┌─────────────────┐ │
|
|
32
32
|
│ │ Docker Agent │ │
|
|
33
|
-
│ │(
|
|
33
|
+
│ │ (coding agent) │ │
|
|
34
34
|
│ └────────┬────────┘ │
|
|
35
35
|
│ │ │
|
|
36
36
|
│ │ 3 (commits, pushes, creates PR) │
|
|
@@ -94,13 +94,12 @@ npm run setup
|
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
The wizard walks you through everything:
|
|
97
|
-
- Checks prerequisites (Node.js, Git, GitHub CLI)
|
|
97
|
+
- Checks prerequisites (Node.js, Git, GitHub CLI, Docker)
|
|
98
98
|
- Creates a GitHub repository and pushes your initial commit
|
|
99
99
|
- Creates a GitHub Personal Access Token (scoped to your repo)
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
- Builds the project and starts Docker for you
|
|
100
|
+
- Configures your public URL and webhook secret
|
|
101
|
+
- Syncs settings to `.env`, database, and GitHub secrets/variables
|
|
102
|
+
- Starts Docker for you
|
|
104
103
|
|
|
105
104
|
**That's it.** Visit your APP_URL when the wizard finishes.
|
|
106
105
|
|
|
@@ -135,7 +134,7 @@ claude setup-token
|
|
|
135
134
|
|
|
136
135
|
Paste the token (starts with `sk-ant-oat01-`) into the setup wizard. Your agent jobs will now run through your subscription. Note that usage counts toward your Claude.ai limits, and you still need an API key for the chat side.
|
|
137
136
|
|
|
138
|
-
See [
|
|
137
|
+
See [Coding Agents](docs/CODING_AGENTS.md) for details on all five agent backends.
|
|
139
138
|
|
|
140
139
|
> **Local installs**: Your server needs to be reachable from the internet for GitHub webhooks and Telegram. On a VPS/cloud server, your APP_URL is just your domain. For local development, use [ngrok](https://ngrok.com) (`ngrok http 80`) or port forwarding to expose your machine.
|
|
141
140
|
>
|
|
@@ -187,9 +186,9 @@ See [Security](docs/SECURITY.md) for full details on what's exposed, the risks,
|
|
|
187
186
|
|
|
188
187
|
## Different Models
|
|
189
188
|
|
|
190
|
-
|
|
189
|
+
thepopebot supports 9 built-in LLM providers (Anthropic, OpenAI, Google, DeepSeek, MiniMax, Mistral, xAI, Kimi, OpenRouter) plus custom OpenAI-compatible endpoints. The chat layer and coding agents are independent — use Claude for interactive chat and a different model for code tasks, or run everything on a single provider.
|
|
191
190
|
|
|
192
|
-
See [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) for the full
|
|
191
|
+
See [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) for the full provider reference, admin UI configuration, per-job overrides, and custom provider setup.
|
|
193
192
|
|
|
194
193
|
---
|
|
195
194
|
|
|
@@ -199,13 +198,13 @@ See [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) for the full guide: Eve
|
|
|
199
198
|
|----------|-------------|
|
|
200
199
|
| [Architecture](docs/ARCHITECTURE.md) | Two-layer design, file structure, API endpoints, GitHub Actions, Docker agent |
|
|
201
200
|
| [CLI Reference](docs/CLI.md) | `init`, managed vs user files, template conventions, all CLI commands |
|
|
202
|
-
| [Configuration](docs/CONFIGURATION.md) |
|
|
201
|
+
| [Configuration](docs/CONFIGURATION.md) | Admin UI, DB-backed config, infrastructure variables, GitHub secrets, Docker Compose |
|
|
203
202
|
| [Customization](docs/CUSTOMIZATION.md) | Personality, skills, operating system files, using your bot, security details |
|
|
204
203
|
| [Chat Integrations](docs/CHAT_INTEGRATIONS.md) | Web chat, Telegram, adding new channels |
|
|
205
|
-
| [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) |
|
|
204
|
+
| [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) | 9 built-in LLM providers, chat vs coding agent config, per-job overrides, custom providers |
|
|
206
205
|
| [Auto-Merge](docs/AUTO_MERGE.md) | Auto-merge controls, ALLOWED_PATHS configuration |
|
|
207
206
|
| [Deployment](docs/DEPLOYMENT.md) | VPS setup, Docker Compose, HTTPS with Let's Encrypt |
|
|
208
|
-
| [
|
|
207
|
+
| [Coding Agents](docs/CODING_AGENTS.md) | 5 coding agent backends, OAuth tokens, LiteLLM proxy, per-agent config |
|
|
209
208
|
| [How to Build Skills](docs/HOW_TO_BUILD_SKILLS.md) | Guide to building and activating agent skills |
|
|
210
209
|
| [Pre-Release](docs/PRE_RELEASE.md) | Installing beta/alpha builds |
|
|
211
210
|
| [Code Workspaces](docs/CODE_WORKSPACES.md) | Interactive Docker containers with in-browser terminal |
|