Install
$ agentstack add mcp-bgorkem-bgorkem-skills ✓ 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
bgorkem-skills
A Claude Code plugin marketplace hosting a personal collection of Agent Skills for Claude. Skills are small, self-contained folders of instructions that teach Claude how to handle specific workflows consistently — without re-explaining context in every conversation.
Skills in this repository
| Plugin | What it does | | --- | --- | | [obsidian-archive](./plugins/obsidian-archive) | Distils the current conversation and saves it as a reference note in an Obsidian vault under a configurable archive folder. Requires the mcp-obsidian MCP server. | | [image-transform](./plugins/image-transform) | Image conversion and transformation skills. Includes svg-to-png: converts a single SVG file to a high-resolution PNG using rsvg-convert. Useful for exporting diagrams to platforms that don't render SVG inline (Medium, Notion, slide decks). |
More skills will be added over time.
Repository layout
.
├── .claude-plugin/
│ └── marketplace.json # marketplace catalog
├── plugins/
│ ├── obsidian-archive/ # one plugin per skill
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # plugin manifest
│ │ └── skills/
│ │ └── obsidian-archive/
│ │ └── SKILL.md # the skill itself
│ └── image-transform/
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── skills/
│ └── svg-to-png/
│ └── SKILL.md
├── LICENSE
└── README.md
Each plugin is a self-contained folder under plugins/ and can be installed independently.
Installing
Claude Code (recommended)
Add this repo as a marketplace, then install the plugin you want:
/plugin marketplace add bgorkem/bgorkem-skills
/plugin install obsidian-archive@bgorkem-skills
/plugin install image-transform@bgorkem-skills
Updates are one command away:
/plugin marketplace update bgorkem-skills
Claude.ai (web / desktop / mobile)
- Clone or download this repo.
- Zip the
SKILL.mdand any sibling files inside a skill folder — the zip's top-level entry must be the skill folder itself. Forobsidian-archive:
``bash cd plugins/obsidian-archive/skills zip -r ../../../obsidian-archive.zip obsidian-archive ``
- In Claude.ai, open Settings → Capabilities → Skills and upload the zip.
- Toggle the skill on.
Requirements
Each plugin documents its external dependencies in a Requirements section inside its SKILL.md. Check that section before installing — some skills require specific MCP servers, plugins, or local tools to function.
What is a skill?
A skill is a folder containing:
SKILL.md— required file with YAML frontmatter (name,description) and Markdown instructions- Optional
scripts/,references/,assets/subfolders for anything the skill bundles
Claude loads the frontmatter into its system prompt so it knows when to use the skill; the body loads when the skill triggers. This is called progressive disclosure.
See Anthropic's skill authoring best practices and Complete Guide to Building Skills for Claude for the full reference.
Contributing
This is a personal collection, but issues and suggestions are welcome. If you fork and build on these, a link back is appreciated but not required.
License
[MIT](./LICENSE) — use, modify, and redistribute freely.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: bgorkem
- Source: bgorkem/bgorkem-skills
- License: MIT
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.