# Github Context Loader

> >

- **Type:** Skill
- **Install:** `agentstack add skill-its-me-prash-kleinanzeigen-reader-github-pull-skill`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [its-me-prash](https://agentstack.voostack.com/s/its-me-prash)
- **Installs:** 0
- **Category:** [Developer Tools](https://agentstack.voostack.com/c/developer-tools)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [its-me-prash](https://github.com/its-me-prash)
- **Source:** https://github.com/its-me-prash/kleinanzeigen-reader/tree/main/github-pull-skill
- **Website:** https://github.com/its-me-prash/kleinanzeigen-reader

## Install

```sh
agentstack add skill-its-me-prash-kleinanzeigen-reader-github-pull-skill
```

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

## About

# GitHub Context Loader

Pulls latest CLAUDE.md and skill updates from Prash1407's GitHub repos
into the active session context.

---

## Repos to sync (in order)

| Repo | What to pull | Load into |
|---|---|---|
| `Prash1407/kleinanzeigen-reader` | `CLAUDE.md`, `SKILL.md` | Active context |

Add more repos here as the Brain OS ecosystem grows.

---

## Step 1 — Pull CLAUDE.md from each repo

```bash
curl -s \
  -H "Accept: application/vnd.github.v3.raw" \
  "https://raw.githubusercontent.com/Prash1407/kleinanzeigen-reader/main/CLAUDE.md"
```

Read the output and treat it as active session context.

---

## Step 2 — Check for recent commits

```bash
curl -s \
  "https://api.github.com/repos/Prash1407/kleinanzeigen-reader/commits?per_page=3" \
  | python3 -c "
import sys, json
commits = json.load(sys.stdin)
for c in commits:
    print(c['commit']['author']['date'][:10], '---', c['commit']['message'][:60])
"
```

Summarize any changes since the last session in one sentence.

---

## Step 3 — Pull updated scripts if needed

If commits touch scripts/ or references/, fetch updated files:

```bash
curl -s -H "Accept: application/vnd.github.v3.raw" \
  "https://raw.githubusercontent.com/Prash1407/kleinanzeigen-reader/main/scripts/extract.py" \
  > /tmp/kl_extract.py

curl -s -H "Accept: application/vnd.github.v3.raw" \
  "https://raw.githubusercontent.com/Prash1407/kleinanzeigen-reader/main/scripts/compare.py" \
  > /tmp/kl_compare.py
```

Use /tmp/kl_extract.py and /tmp/kl_compare.py for the rest of the session.

---

## Output after sync

Report exactly:

```
GitHub sync: Prash1407/kleinanzeigen-reader
Last commit: [date] -- [message]
Scripts: /tmp/kl_extract.py, /tmp/kl_compare.py
Status: ready
```

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [its-me-prash](https://github.com/its-me-prash)
- **Source:** [its-me-prash/kleinanzeigen-reader](https://github.com/its-me-prash/kleinanzeigen-reader)
- **License:** MIT
- **Homepage:** https://github.com/its-me-prash/kleinanzeigen-reader

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:** yes
- **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-its-me-prash-kleinanzeigen-reader-github-pull-skill
- Seller: https://agentstack.voostack.com/s/its-me-prash
- 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%.
