work-access-demo-generator/SKILL.md
Generate comprehensive demonstrations showing how to access projects and work across different environments (Manus terminals, personal computers, team collaboration). Use when users ask "how do I access this from another terminal/computer", "how do I share this with my team", "how do I get this on my Mac", or need clarification on Manus persistence vs GitHub usage.
npx skillsauth add abcnuts/manus-skills work-access-demo-generatorInstall 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.
Generate comprehensive, organized demonstrations explaining how to access projects and work across different environments.
Use when users ask:
Users often confuse three distinct access layers:
/home/ubuntu/ persists across Manus sessionsDetermine what the user wants to access:
Webdev Projects:
Skills:
/home/ubuntu/skills/Documents/Files:
/home/ubuntu/Code/Scripts:
Generate comparison table showing three access methods:
| Method | Environment | How to Access | Requires GitHub | |--------|-------------|---------------|-----------------| | Manus Terminal | Manus cloud | Just ask Manus | No | | Personal Computer | Local machine | Clone from GitHub | Yes | | Team Collaboration | Multiple machines | Clone from GitHub | Yes |
For Webdev Projects:
"Open [project name]"
"Continue working on [project name]"
"Load [project name] webdev project"
For Skills:
"Use [skill-name] for [purpose]"
"Read the skill at /home/ubuntu/skills/[skill-name]/SKILL.md"
Key Point: No GitHub commands needed within Manus.
Prerequisites:
brew install gh)gh auth login)Clone Repository:
gh repo clone [username]/[repo-name]
cd [repo-name]
npm install # or appropriate setup
For Webdev Projects:
gh repo clone [username]/[project-name]
cd [project-name]
npm install
npm run dev
For Skills:
gh repo clone [username]/manus-skills
cd manus-skills
cat [skill-name]/SKILL.md
Add Collaborator:
gh repo edit [username]/[repo-name] --add-collaborator [teammate-username]
Team Member Clones:
gh repo clone [username]/[repo-name]
cd [repo-name]
# setup commands
Sync Workflow:
git pull origin main # Get latest
# ... make changes ...
git add .
git commit -m "Description"
git push origin main # Share changes
Document typical workflows:
Solo Development (Manus-First):
Team Collaboration:
Manus-Only:
Common issues and solutions:
"Repository not found"
gh auth login and verify access"Permission denied"
"Manus can't find project"
"Skills not found"
/home/ubuntu/skills/ but Manus needs re-indexProvide command cheat sheet:
In Manus:
"Open [project]"
"Use [skill]"
"Push [project] to GitHub"
"Pull latest changes from GitHub"
On Personal Computer:
gh repo clone [username]/[repo-name]
cd [repo-name]
npm install
npm run dev
git pull origin main
git push origin main
Generate comprehensive Markdown document with:
Clarity Over Brevity:
Insanely Organized:
Teacher-Student Approach:
No Assumptions:
See the Make-a-Million access demo as reference implementation:
A great access demo has:
development
Use when you have a spec or requirements for a multi-step task, before touching code
data-ai
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
development
Use when implementing any feature or bugfix, before writing implementation code
development
Systematic approach to implementing features with detailed planning, tracking, and testing. Use when building new features, adding functionality to existing projects, implementing multi-step requirements, or when user requests organized, methodical development workflow.