# My Repos

> Locate and work with dwmkerr's repositories. Use when user mentions "my repos", "my repo X", "check my repo", or needs to find/access a specific repository.

- **Type:** Skill
- **Install:** `agentstack add skill-dwmkerr-claude-toolkit-my-repos`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [dwmkerr](https://agentstack.voostack.com/s/dwmkerr)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [dwmkerr](https://github.com/dwmkerr)
- **Source:** https://github.com/dwmkerr/claude-toolkit/tree/main/plugins/dwmkerr/skills/my-repos
- **Website:** https://www.skills.sh/dwmkerr/claude-toolkit

## Install

```sh
agentstack add skill-dwmkerr-claude-toolkit-my-repos
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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:

```bash
ls ~/repos/github/dwmkerr/
ls ~/repos/github/mckinsey/
```

### 2. If Local Repo Exists

When working with an existing local repo:

1. **Record the current state** before making changes:
   ```bash
   cd ~/repos/github/dwmkerr/
   ORIGINAL_BRANCH=$(git branch --show-current)
   git stash --include-untracked
   ```

2. **Fetch for reference** if you need other branches:
   ```bash
   git fetch origin
   git checkout origin/main  # or any branch for reference
   ```

3. **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:

```bash
gh repo view dwmkerr/ --json name,url
```

If it exists remotely, clone it:

```bash
git clone https://github.com/dwmkerr/ ~/repos/github/dwmkerr/
```

For McKinsey repos:

```bash
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 skills
- `hacker-laws` - Laws, theories, and patterns for developers
- `claude-toolkit` - Claude Code plugins and skills
- `dotfiles` - Personal configuration files

## Example Usage

User: "Check my repo effective-shell for the chapter on pipes"

1. Check local: `ls ~/repos/github/dwmkerr/effective-shell`
2. If exists, work directly in the repo
3. Search for content: `grep -r "pipes" ~/repos/github/dwmkerr/effective-shell/`

User: "What branches are in my repo X?"

1. Locate repo locally or clone
2. `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](https://github.com/dwmkerr)
- **Source:** [dwmkerr/claude-toolkit](https://github.com/dwmkerr/claude-toolkit)
- **License:** MIT
- **Homepage:** https://www.skills.sh/dwmkerr/claude-toolkit

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-dwmkerr-claude-toolkit-my-repos
- Seller: https://agentstack.voostack.com/s/dwmkerr
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
