Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/binary16labs/prime-silo --skill data-processing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | data_processing |
| description | Extract data from PDFs and query CSV files |
Use this skill when analyzing tabular data (CSV) or unstructured PDF documents within the workspace. This gives you the ability to query dataframes via Pandas and extract raw text (including OCR fallback via PyMuPDF/Tesseract) from PDFs.
[!WARNING] While
extract_pdf_textis useful for quick, ad-hoc reads, do NOT use this to feed multi-agent swarms or complex analyses for files located in thestaging/directory. Those files must be formally ingested into the Knowledge Graph via arag_ingestpipeline first.
extract_pdf_text(pdf_path, workspace="default") - Extracts all text from a given PDF file in data_in. Supports fallback OCR.query_csv(csv_path, query, workspace="default") - Query a CSV file using Pandas. The query can be a standard string like "amount > 100" or a dataframe expression like "df.describe()".Action: query_csv
Action Input: {"csv_path": "financials.csv", "query": "df.head(5)"}
Observation: Returns the first 5 rows formatted as a markdown table.
Action: extract_pdf_text
Action Input: {"pdf_path": "architecture_diagram.pdf"}
Observation: Returns the text content extracted from the document.