thepopebot 1.2.76-beta.3 → 1.2.76-beta.4
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/lib/utils/render-md.js
CHANGED
|
@@ -32,7 +32,7 @@ function loadSkillDescriptions() {
|
|
|
32
32
|
const frontmatter = frontmatterMatch[1];
|
|
33
33
|
const descMatch = frontmatter.match(/^description:\s*(.+)$/m);
|
|
34
34
|
if (descMatch) {
|
|
35
|
-
descriptions.push(`- ${descMatch[1].trim()}`);
|
|
35
|
+
descriptions.push(`- **${entry.name}**: ${descMatch[1].trim()}`);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ This is a [thepopebot](https://github.com/stephengpope/thepopebot) project.
|
|
|
5
5
|
## Directories
|
|
6
6
|
|
|
7
7
|
- **`agent-job/`** — Agent job configuration: system prompt (`SYSTEM.md`), heartbeat prompt, and cron schedules (`CRONS.json`).
|
|
8
|
+
- **`coding-workspace/`** — Optional system prompt (`SYSTEM.md`) for code mode workspaces. Empty by default.
|
|
8
9
|
- **`agents/`** — Custom agent definitions. Each subdirectory defines an agent (see Managing Agents below).
|
|
9
10
|
- **`event-handler/`** — Event handler configuration: chat system prompts, trigger definitions (`TRIGGERS.json`), cluster templates, and LiteLLM proxy config.
|
|
10
11
|
- **`skills/library/`** — Skill plugins. Activate by symlinking into `skills/active/`.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# coding-workspace/ — Code Mode System Prompt
|
|
2
|
+
|
|
3
|
+
Optional system prompt for code mode workspaces. Edit `SYSTEM.md` to customize the coding agent's behavior when working on your repos.
|
|
4
|
+
|
|
5
|
+
## Files
|
|
6
|
+
|
|
7
|
+
- **`SYSTEM.md`** — System prompt for code mode. Empty by default — the coding agent uses its built-in prompt. Add content here to append custom instructions. Supports `{{skills}}`, `{{datetime}}`, and `{{ file.md }}` includes.
|