Agent Essentials banner
fotoetienne fotoetienne

Agent Essentials

Development community

Description

Personal Claude Code plugin marketplace: skills, commands, agents, and MCP servers.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

agent-essentials

A personal [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) — skills, slash commands, agents, hooks, and MCP servers, bundled as installable plugins.

Install

/plugin marketplace add fotoetienne/agent-essentials
/plugin marketplace list
/plugin install @agent-essentials

Update later with:

/plugin marketplace update agent-essentials

Plugins

Plugin Description
`starter` Example plugin with a single hello skill. Smoke test for the marketplace install.
`tiger-style` Apply TigerBeetle's TigerStyle coding principles (safety, performance, DX) when writing or reviewing code. Language-agnostic with Rust/Java/Kotlin/TypeScript guides.

Repo layout

agent-essentials/
├── .claude-plugin/
│   └── marketplace.json        # marketplace manifest, lists plugins
└── plugins/
    └── /
        ├── .claude-plugin/
        │   └── plugin.json     # plugin manifest (name, version, author)
        ├── skills/             # auto-discovered: skills//SKILL.md
        ├── commands/           # auto-discovered: commands/*.md
        ├── agents/             # auto-discovered: agents/*.md
        ├── hooks/hooks.json    # optional
        ├── .mcp.json           # optional, bundled MCP servers
        └── README.md

Components are picked up by directory convention — no need to list them explicitly in `plugin.json` unless overriding the default path.

Adding a new plugin

  1. mkdir -p plugins//.claude-plugin plugins//skills
  2. Write plugins//.claude-plugin/plugin.json with name, version, description, author.
  3. Drop skills under skills//SKILL.md (YAML frontmatter name + description, then body).
  4. Add the plugin to plugins[] in .claude-plugin/marketplace.json with a relative ./plugins/ source.
  5. Bump the plugin's version on every rel