AgentStack
SKILL verified MIT Self-run

Github Context Loader

skill-its-me-prash-kleinanzeigen-reader-github-pull-skill · by its-me-prash

>

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-its-me-prash-kleinanzeigen-reader-github-pull-skill

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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 Used
  • 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.

Are you the author of Github Context Loader? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

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

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:

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/klextract.py and /tmp/klcompare.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.

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

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.