agents/skills/workspace/SKILL.md
Manage local projects organized by owner/repo in $WORKSPACE. Use when cloning repos, inspecting dependencies, cross-referencing projects, listing local repositories, or reading/searching files from other local projects. Triggers on "clone repo", "check that project", "look at the source", "compare with other repo", any reference to other local projects, or any Git repository URL (e.g. "https://github.com/owner/repo", "[email protected]:owner/repo").
npx skillsauth add juanibiapina/dotfiles workspaceInstall 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.
Local GitHub projects live at $WORKSPACE/<owner>/<repo>.
Personal projects are under the juanibiapina owner.
| Command | Description |
|---------|-------------|
| dev clone <url> | Clone GitHub repo to workspace |
| dev list | List all projects as owner/repo |
| dev open <project> | Open project in tmux session |
| dev start <url> | Clone and open in one step |
| dev worktree add [branch] | Create worktree at owner/repo.N, open in tmux |
| dev worktree list | List worktrees with number and branch |
| dev worktree remove [number] | Remove worktree, kill tmux session, prompt to delete branch |
Git worktrees live alongside the main repo as owner/repo.1, owner/repo.2, etc.
| | Path | Tmux session | Branch |
|---|---|---|---|
| Main repo | owner/repo | repo | (whatever) |
| Worktree 1 | owner/repo.1 | repo-1 | worktree-1 (or user-specified) |
| Worktree 2 | owner/repo.2 | repo-2 | feature-x (or worktree-2) |
All worktree commands work from the main repo or any existing worktree. Existing commands (dev list, dev open, dev tmux open, dev tmux switch) work with worktrees unchanged.
Clone a repository:
dev clone https://github.com/owner/repo
List projects to find one:
dev list | rg pattern
Create a worktree for a feature branch:
dev worktree add feature-x
The first time you access a workspace project in a conversation, check for an AGENTS.md at the project root. If it exists, read it before proceeding. Only do this once per project per conversation.
Use absolute paths to read files from workspace projects:
$WORKSPACE/owner/repo/path/to/file.ts
Search across a project:
rg "pattern" "$WORKSPACE/owner/repo/src"
development
My end-to-end development flow for any change. Use when fixing a bug, building a feature, or shipping any code change from understanding through production verification.
development
Creating plans. Use it for planning code changes.
tools
Send a message to another running pi session via its Unix socket. Use when the user wants to hand off context to another session, continue a conversation elsewhere, or notify another pi instance.
data-ai
Use when adding, installing, removing, or managing agent skills in this dotfiles repo. Triggers on "add skill", "install skill", "remove skill", "delete skill", "new skill", "manage skills", or any skill management task.