用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill workspace-access命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | workspace-access |
| description | name: workspace-access Use when this capability is needed. |
name: workspace-access description: Access and work on any project in the user's development environment triggers:
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
Converted and distributed by TomeVault — claim your Tome and manage your conversions.