بنقرة واحدة
workspace-access
Access and work on any project in the user's development environment
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Access and work on any project in the user's development environment
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
brief, summary, daily, weekly, end of day, EOD, digest, morning, recap, meeting prep, what's due, status update, review
Interactive web tasks, browser login, click, scroll, form interaction, authenticated sessions, Playwright MCP (project)
Query and summarize Claude Code terminal session history
Email, inbox, Outlook, Microsoft 365, mail, messages, fetch emails, search emails, draft, reply, email processing (project)
fact, decision, architecture, knowledge, permanent, remember forever, always know, decisions, outcomes, lessons learned
GitHub CLI, docker commands, git operations, curl, native CLI tools, gh issue, gh pr, container, repository, API calls (project)
| name | workspace-access |
| description | Access and work on any project in the user's development environment |
| triggers | ["workspace","projects","what am I working on","help me with","look at","check my","work on"] |
You have full read-write access to the user's entire development environment at /hostworkspace. This skill teaches you how to discover, understand, and work on any project.
/hostworkspace/<name>)/hostworkspace firstAlways discover dynamically - never assume what exists:
# List all projects
ls /hostworkspace/
# See details (modification times show recent activity)
ls -lt /hostworkspace/
# Find a specific project (case-insensitive)
ls /hostworkspace/ | grep -i "searchterm"
Before working on any project, understand it:
# Priority 1: AI context file
cat /hostworkspace/<project>/CLAUDE.md 2>/dev/null
# Priority 2: Standard README
cat /hostworkspace/<project>/README.md 2>/dev/null
# Priority 3: Find all documentation
find /hostworkspace/<project> -maxdepth 2 -name "*.md" -type f
# Priority 4: See structure
ls -la /hostworkspace/<project>/
# Navigate and explore
cd /hostworkspace/<project>
# Check git status if it's a repo
git status 2>/dev/null
# Read, modify, create files as needed
# All changes sync instantly to the host filesystem
| Path | Access | Contains |
|---|---|---|
/hostworkspace | read-write | All projects (dynamic) |
/hosthome | read-only | Home directory, configs, dotfiles |
/workspace | read-write | PCP's own code |
/hosthome is for reading configs, not modifying."What projects am I working on?"
→ ls -lt /hostworkspace/ (sorted by recent activity)
→ Read READMEs of the most recently modified ones
"Help me with the opportunities tracker"
→ ls /hostworkspace/ | grep -i opport (find it)
→ cat /hostworkspace/opportunities/README.md (understand it)
→ Then work on it
"Do you have access to my twitter automation?"
→ ls /hostworkspace/ | grep -i twitter (check if it exists)
→ If found: "Yes, I can see it at /hostworkspace/twitter-automation"
"Make a change to the groundstate project" → First read its CLAUDE.md or README.md → Understand the structure → Then make the requested change