-
Notifications
You must be signed in to change notification settings - Fork 1
Plugin and Skill Development
Skills are prompt wrappers applied when items send via watcher.
# Skill entry dict
{
"name": "Code Review",
"prefix": "/review",
"template": "Review this code:\n\n{text}",
"description": "Standard code review prompt wrapper"
}-
{text}— the queued item text -
{timestamp}— current time -
{project}— active project name
Set default skill in Settings → Watcher → Default Skill. Override per-item in Queue Master dialog.
Subagents live in .saipen/extensions/subs/<name>/ (not project-root subs/).
.saipen/extensions/subs/
├── MANIFEST.md # active sub list
├── PROTOCOL.md # rules
├── TEMPLATE/ # bootstrap template
├── saiwiki/ # wiki doc generator subagent
├── saihunt/ # bug hunter subagent
└── _shared/inbox.md # cross-agent comms
# OUTBOX
## WIKI-001: Description
- **status:** ready | draft | blocked | reviewed
- **summary:** one line finding
- **critical:** true | false
- **details:** full description
critical: true → main agent creates T-### ticket immediately.
critical: false → queued to _shared/inbox.md for next planning round.
Commands:
-
saipen sub spawn <name>— create new subagent from TEMPLATE -
saipen sub collect— collect all OUTBOX entries -
saipen sub list— show active subagents + phase -
saipen sub clean <name>— remove finished subagent
File: data/custom_theme.json. Loaded when theme = Custom.
{
"theme_name": "My Theme",
"colors": {
"bg_main": "#1e1e1e",
"bg_editor": "#1b1b1b",
"fg_text": "#d4d4d4",
"fg_accent": "#e6b422",
"border": "#3c3c3c",
"selection": "#264f78",
"header_bg": "#252526",
"button_bg": "#2d2d30",
"text_primary": "#d4d4d4",
"text_accent": "#e6b422"
}
}Apply: Settings → Theme → Custom. Instant hot-reload, no restart.
Custom mouse cursor sets. Retro computing feel.
Functions:
-
capture_current_scheme()— copy live Windows cursor set into program -
load_bundle()— return installed cursor set -
install_to_system(paths)— set as Windows default cursor scheme -
build_cursor_map()— rebuild cursor shape map
Toggle: Settings → Cursors → Enable custom cursors. On first enable, auto-captures current Windows set.
| Module | Extension Point |
|---|---|
adapter.py |
Implement ProbeAdapter for custom target detection |
cdp.py |
Custom CDP commands for Electron apps |
win32.py |
Win32 window probe customisation |
skills.py |
Add custom prompt skill templates |
limit_scan.py |
Custom cross-agent limit scanner |
sender.py |
Custom text injection strategies |
One-way silo → filesystem export. Settings → Sync mode: Off / Silo (flat) / Hierarchy (nested). Writes <root>/<category>/<NN_slug>.md on save. Never reads back, never deletes. Skips unchanged text.
FastPrompter Wiki — Built with SAIPEN Protocol | GitHub Repo