con un clic
aceharness-sqlite
使用 ACEHarness 运行时提供的 workspace SQLite 能力创建和维护 Skill 数据库。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
使用 ACEHarness 运行时提供的 workspace SQLite 能力创建和维护 Skill 数据库。
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
使用 ACEHarness 内置 RAG/LanceDB 知识库进行只读检索。
Index of available skills.
ACEHarness workflow creation skill. Helps reason about serial workflow states, per-state steps, parallel step groups, and scoped workflow patches.
ACEHarness Spec Coding skill for generating, reviewing, revising, and executing spec-first requirements/design/tasks artifacts tied to workflow steps. Use when turning rough workflow requirements into actionable requirements.md, design.md, tasks.md, when revising AI-generated specs, or when keeping SpecCoding artifacts aligned with workflow execution.
用 rules_registry 辅助 PR/代码评审:准备 diff(git/PR/编码 agent 上下文)→ L0 扫描 → select_rules 路由 → 四步判定 → rule-issue-reports 上报。 适用于 code review、PR 审查、仓颉/Cangjie;可运行于 Cursor / OpenCode / Claude Code 等任意 Agent 环境。
通用可视化卡片渲染技能。
| name | aceharness-sqlite |
| description | 使用 ACEHarness 运行时提供的 workspace SQLite 能力创建和维护 Skill 数据库。 |
| capabilities | {"sqlite":{"read":true,"write":true,"createDatabase":true,"deleteDatabase":true}} |
当 Skill 需要维护结构化状态、缓存、索引、任务记录或跨步骤数据表时,使用本 Skill。
只能使用本 Skill 的 Python 脚本调用 ACEHarness runtime API。不要访问 ACEHarness 内部 SQLite,不要访问 runtime prompt 未列出的数据库文件。
python .agents/skills/aceharness-sqlite/scripts/sqlite_list.py
python .agents/skills/aceharness-sqlite/scripts/sqlite_create.py --db workflow-cache
python .agents/skills/aceharness-sqlite/scripts/sqlite_query.py --db workflow-cache --sql "SELECT * FROM items WHERE id = ?" --params "[\"id-1\"]"
python .agents/skills/aceharness-sqlite/scripts/sqlite_exec.py --db workflow-cache --sql "INSERT INTO items(id, value) VALUES(?, ?)" --params "[\"id-1\", \"value\"]"
python .agents/skills/aceharness-sqlite/scripts/sqlite_transaction.py --db workflow-cache --file .aceharness/sqlite/init.json
python .agents/skills/aceharness-sqlite/scripts/sqlite_delete_db.py --db workflow-cache
ATTACH、DETACH、load_extension、VACUUM INTO、.read、.shell。SELECT 或 WITH ... SELECT。