基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/binary16labs/prime-silo --skill file-operations命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Be the operator's grounded co-pilot inside the Bridge cockpit (#/_prime_silo/bridge). Load this when the user is on the Bridge and asks "what am I looking at", "explain this graph", "what did I work on", "ingest these docs", "re-run the last manifest", or any question about the mesh on screen — memory, documents, code graph, flows, or runs.
Build animejs.com-grade scroll-driven kinetic pages with the vendored anime.js v4 bundle (website/vendor/anime.esm.min.js). Use when working on the prime-silo marketing site (website/) or any scrollytelling/animation surface. Contains the VERIFIED v4 API, the design language to emulate, the Prime-Silo set-piece specs, and the verification protocol.
Operate the Prime-Silo delivery board (delivery/) autonomously — select, claim, execute, verify, and log work contracts without frontier supervision. Use whenever picking up a task from delivery/board/BOARD.md, authoring a gate script, verifying another agent's task, or deciding which model tier should take which contract.
| name | file_operations |
| description | Read, write, and list workspace files |
Use this skill when you need to inspect or modify the codebase, configuration files, or generate output documents. These tools are strictly scoped to the workspace directories (data_in, data_out, etc.).
write_file(filename, content, workspace="default", subdir="data_out") - Write string content to a file in the workspace. Automatically creates missing directories.read_file(filename, workspace="default", subdir="data_in", encoding=None) - Read the contents of a file. Includes automatic fallback encoding detection.list_files(workspace="default", subdir="data_out") - List all files and their sizes within a workspace subdirectory.Action: list_files
Action Input: {"workspace": "c5_test", "subdir": "data_in"}
Observation: Returns a list of files available in the test workspace.
Action: write_file
Action Input: {"filename": "summary_report.md", "content": "# Summary\n...", "subdir": "data_out"}
Observation: Returns a confirmation and a download URL.