df1ef9f0-3138-4b76-8be9-a0e40bc4ccef/claude-plugin/skills/workspace-environment/SKILL.md
MANDATORY workspace file-writing rules for the containerized agent environment. Triggers whenever files are created, written, saved, or generated. All deliverables MUST go to output/ subdirectory. Absolute paths like /home/user/ will fail.
npx skillsauth add ganoro/equiforte-workspaces-local-2 df1ef9f0-3138-4b76-8be9-a0e40bc4ccef/claude-plugin/skills/workspace-environmentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are running in a container. Your cwd is the workspace root. You MUST follow these rules for EVERY file you create.
All deliverable files MUST be saved to output/. The agent runtime ONLY collects files from the output/ subdirectory. Files written anywhere else — including the workspace root — will NOT be returned to the user.
mkdir -p output
Then write deliverables as:
output/report.pdfoutput/report.docxoutput/report.xlsxoutput/report.pptxThese will fail with EACCES — do not attempt:
/home/user/.../home/agent/.../tmp/...| Correct | Wrong |
|---------|-------|
| output/report.pdf | /home/user/report.pdf |
| _research/gaps.md | /tmp/research/gaps.md |
./ ← cwd (workspace root)
├── output/ ← deliverables (ONLY place the runtime collects from)
├── _research/ ← intermediate research state
└── .claude/ ← settings (pre-seeded)
tools
Perform fair value analysis for PE/VC portfolio companies — comparable company analysis, precedent transactions, DCF modeling, ASC 820 / IFRS 13 fair value hierarchy classification, and valuation reconciliation. Ensures compliance with accounting standards.
development
Use this skill whenever a user wants to research a portfolio company and generate an ILPA-compliant Portfolio Company Metrics (PortCo) report. Triggers include: any mention of "ILPA", "portfolio company report", "PortCo template", "PE fund reporting", "GP reporting", "LP reporting", "buyout company metrics", "growth equity metrics", or when a user asks to "research a company for private equity", "compute KPIs for a portco", "generate fund performance metrics", or "fill out a portfolio company template". Also triggers when a user provides a company name and asks for financial analysis in a PE/VC context, including requests for EBITDA multiples, IRR, MOIC, ownership metrics, or debt analysis. Output formats supported: Excel (.xlsx), PowerPoint (.pptx), or PDF report.
tools
Generate Excel workbooks (XLSX) from structured financial data using openpyxl. Creates formatted spreadsheets with multiple tabs for fund performance, portfolio data, cash flows, and waterfall calculations. Includes formulas, conditional formatting, and charts. Always read the design-system skill first.
tools
Generate PowerPoint presentations (PPTX) from structured report data using python-pptx. Creates professional PE/VC presentations with consistent formatting, charts, and tables. Handles board decks, LP summaries, and IC presentations. Always read the design-system skill first.