Install
$ agentstack add skill-dwmkerr-claude-toolkit-my-repos ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
My Repos
Guide for locating and working with dwmkerr's repositories.
Repository Structure
~/repos/
├── github/
│ ├── dwmkerr/ # Personal repos (github.com/dwmkerr)
│ │ ├── effective-shell/
│ │ ├── hacker-laws/
│ │ ├── claude-toolkit/
│ │ └── ...
│ └── mckinsey/ # McKinsey open source repos (github.com/mckinsey)
│ └── ...
Finding a Repository
1. Check Local First
Always check if the repo exists locally:
ls ~/repos/github/dwmkerr/
ls ~/repos/github/mckinsey/
2. If Local Repo Exists
When working with an existing local repo:
- Record the current state before making changes:
``bash cd ~/repos/github/dwmkerr/ ORIGINAL_BRANCH=$(git branch --show-current) git stash --include-untracked ``
- Fetch for reference if you need other branches:
``bash git fetch origin git checkout origin/main # or any branch for reference ``
- Always return to original state when done:
``bash git checkout "$ORIGINAL_BRANCH" git stash pop ``
3. If Repo Not Found Locally
Check if it exists on GitHub:
gh repo view dwmkerr/ --json name,url
If it exists remotely, clone it:
git clone https://github.com/dwmkerr/ ~/repos/github/dwmkerr/
For McKinsey repos:
gh repo view mckinsey/ --json name,url
git clone https://github.com/mckinsey/ ~/repos/github/mckinsey/
GitHub Details
- Personal GitHub username:
dwmkerr - Personal repos path:
~/repos/github/dwmkerr/ - McKinsey repos path:
~/repos/github/mckinsey/
Common Repos
Some frequently accessed repositories:
effective-shell- Book and website for shell/terminal skillshacker-laws- Laws, theories, and patterns for developersclaude-toolkit- Claude Code plugins and skillsdotfiles- Personal configuration files
Example Usage
User: "Check my repo effective-shell for the chapter on pipes"
- Check local:
ls ~/repos/github/dwmkerr/effective-shell - If exists, work directly in the repo
- Search for content:
grep -r "pipes" ~/repos/github/dwmkerr/effective-shell/
User: "What branches are in my repo X?"
- Locate repo locally or clone
cd ~/repos/github/dwmkerr/X && git branch -a
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: dwmkerr
- Source: dwmkerr/claude-toolkit
- License: MIT
- Homepage: https://www.skills.sh/dwmkerr/claude-toolkit
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.