Personal Agent Skills by jassonbla.
This repository is a home for reusable agent workflows, instructions, templates, and reference materials. Each skill is self-contained under skills/<skill-name>/ and includes a SKILL.md file with the instructions and metadata an agent needs to load it dynamically.
Install all discoverable skills from this repository:
npx skills add jassonbla/skillsList available skills:
npx skills add jassonbla/skills --listInstall a specific skill:
npx skills add jassonbla/skills --skill daily-tech-briefing
npx skills add jassonbla/skills --skill git-insight
npx skills add jassonbla/skills --skill coding-workflowThis repository can also be registered as a Claude Code plugin marketplace:
/plugin marketplace add jassonbla/skills
Then install the bundled personal skills plugin:
/plugin install personal-skills@jasson-agent-skills
Create a personalized daily technology briefing from RSS or web source lists.
Contents:
skills/daily-tech-briefing/SKILL.md
skills/daily-tech-briefing/references/sources.default.json
skills/daily-tech-briefing/references/source.schema.json
skills/daily-tech-briefing/references/briefing-template.md
skills/daily-tech-briefing/examples/sources.personal.json
skills/daily-tech-briefing/examples/briefing.example.md
skills/daily-tech-briefing/examples/feedback.example.md
Install only this skill:
npx skills add jassonbla/skills --skill daily-tech-briefingAnalyze git commit history and summarize recent activity from a mission or project perspective.
Contents:
skills/git-insight/SKILL.md
skills/git-insight/references/report-template.md
skills/git-insight/examples/example-report.md
Install only this skill:
npx skills add jassonbla/skills --skill git-insightRun coding tasks with a disciplined, PR-oriented agent workflow: clarify scope, inspect repository context, isolate work, delegate when useful, validate, and report evidence.
Contents:
skills/coding-workflow/SKILL.md
skills/coding-workflow/references/checklist.md
skills/coding-workflow/examples/worker-brief.md
Install only this skill:
npx skills add jassonbla/skills --skill coding-workflow.claude-plugin/marketplace.json # Claude Code plugin marketplace manifest
skills/ # Skill packages
template/SKILL.md.template # Minimal starting template for new skills
docs/ # Repository-level notes and conventions
A skill is a folder with a required SKILL.md file:
skills/my-skill/
├── SKILL.md
├── references/ # optional durable reference files
├── examples/ # optional examples and fixtures
├── scripts/ # optional executable helpers; document safety clearly
└── assets/ # optional media or static assets
SKILL.md should start with YAML frontmatter:
---
name: my-skill
description: What this skill does and when an agent should use it.
---- Do not commit credentials, tokens, private chat IDs, paid-newsletter content, or private customer data.
- Prefer examples and templates over personal state.
- If a skill includes scripts, document what they do, required dependencies, and safe usage.
- Keep personal configuration in the user's agent workspace, not in this public repository.
There is no separate skills.sh submission flow. A skill is published by putting it in a public git repository and sharing it. When users install it with npx skills add, it can appear on skills.sh through anonymous install telemetry.
MIT