一键导入
tasks
Task management via the vault. Read, add, update, and complete tasks stored in the vault knowledge base. Task format and location are defined in _schema.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Task management via the vault. Read, add, update, and complete tasks stored in the vault knowledge base. Task format and location are defined in _schema.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browse the web using a real headed Chromium browser on a virtual desktop. Supports navigation, clicking, typing, screenshots, and full page interaction. The user can watch the browser in real-time via noVNC.
Interact with the virtual desktop: launch terminal emulators, control the mouse and keyboard, take screenshots, and manage windows. Works with any GUI application running on the display, not just browsers.
Persistent knowledge vault for Tower. Store facts, recall information, and maintain a self-editing core memory that persists across all sessions. Git-backed, Obsidian-compatible, human-editable.
Send and receive messages between Tower sessions. Supports direct messages, group messages, channels, threading, and priority levels. Messages are stored as markdown files and persist across restarts.
Process unprocessed items from the vault inbox. Extracts entities, routes information to the appropriate vault pages, and marks items as processed. Follows the vault schema for routing rules.
| name | tasks |
| description | Task management via the vault. Read, add, update, and complete tasks stored in the vault knowledge base. Task format and location are defined in _schema.md. |
Tasks are managed as markdown in the vault. The default location and
format are defined in _schema.md — check it first to see where tasks
live and what format they use.
tower_vault_read(path: "wiki/tasks.md")
tower_vault_append(
path: "wiki/tasks.md",
content: "- [ ] **Buy groceries** — milk, eggs, bread (added: 2026-04-29, priority: P3)"
)
Read the file, update the checkbox, write it back:
tower_vault_read(path: "wiki/tasks.md")
# Find the task line, change "- [ ]" to "- [x]"
tower_vault_write(path: "wiki/tasks.md", content: "...updated content...")
_schema.md for the current task format and location.tower_vault_append to add tasks — never overwrite the whole file
just to add one task.tower_vault_write
since you need to modify an existing line.