بنقرة واحدة
project-data
Reference project data files (Excel, CSV, JSON, etc.) in each project's data/ folder before starting work
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Reference project data files (Excel, CSV, JSON, etc.) in each project's data/ folder before starting work
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Parse and analyze Excel (.xlsx) files using the project's parse_excel.py tool
Parse and analyze PowerPoint (.pptx) files using the project's parse_ppt.py tool
파일 기반 세션 상태 관리 라이프사이클. 패턴 에이전트(debate_critic, generator_evaluator, planner_executor, leadership)가 세션 상태를 영속화하고 중단된 세션을 복구할 때 사용한다.
| name | project-data |
| description | Reference project data files (Excel, CSV, JSON, etc.) in each project's data/ folder before starting work |
| domain | data-awareness |
| confidence | high |
| source | project convention — project/*/data/ folders contain reference data for each project |
| tools | [{"name":"bash","description":"List and parse data files in project data/ directories","when":"When starting work on a project or when data context is needed"},{"name":"view","description":"Read text-based data files (CSV, JSON, TXT)","when":"When data files are text-readable formats"}] |
Each project under project/ may contain a data/ subfolder with reference materials — spreadsheets, CSVs, JSON files, configuration data, sample inputs, or specification documents. Agents should check for and reference these files when working on the corresponding project, as they often contain business rules, data schemas, or requirements that inform implementation decisions.
project/
├── <project-name>/
│ ├── data/ ← Reference data lives here
│ │ ├── *.xlsx (Excel files — use tools/parse_excel.py)
│ │ ├── *.csv (CSV files — use view or cat)
│ │ ├── *.json (JSON files — use view or jq)
│ │ └── *.txt (Text files — use view)
│ ├── story/ ← Requirements/stories
│ └── ...
find project/<project-name>/data/ -type f 2>/dev/null | sort
Or for all projects:
find project/*/data/ -type f 2>/dev/null | sort
Excel files (.xlsx, .xlsm):
python tools/parse_excel.py project/<project-name>/data/<file>.xlsx --sheets
python tools/parse_excel.py project/<project-name>/data/<file>.xlsx --summary
python tools/parse_excel.py project/<project-name>/data/<file>.xlsx --format json
CSV files:
head -20 project/<project-name>/data/<file>.csv
JSON files:
Use the view tool directly or:
cat project/<project-name>/data/<file>.json | python -m json.tool
Text/Markdown files:
Use the view tool directly.
When implementing features for a project:
project/<name>/data/ for any relevant reference files--summary first, then targeted extraction