skillplus

by eight-acres-labVerified

A compilable skill package standard for reliable content-generation agents.

305
Stars
20
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/eight-acres-lab/skillplus

Getting Started

Guides for using skills like skillplus.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Skill-Plus

Compilable skill packages for content-generation agents.

npm i -g @e8s/skillplus

skillplus list                          # browse the official catalog
skillplus search "phone snapshot food"  # find a skill by keyword
skillplus show food-street-realism      # see metadata
skillplus food-street-realism --target skill-md > ~/.claude/skills/food.md

A skill is a directory of YAML + Markdown that the compiler turns into one of several target formats: structured JSON for the OpenMelon runtime, a portable skill.md for Claude Code / Cursor / any agent, vendor-specific prompt bundles, evaluation checklists, or provenance templates. The compiler is deterministic and never calls a model — that's the runtime's job.

Install

npm i -g @e8s/skillplus

Requires Node ≥20.

Commands

skillplus <id-or-path> [--target ...] [--model-profile ...] [--locale ...]   compile
skillplus list [--tag <t>] [--mine] [--json]                                 list available skills
skillplus search <query> [--json]                                            fuzzy search
skillplus show <id> [--json]                                                 print metadata
skillplus copy <id> [--force]                                                fork a bundled skill into ~/.skillplus/local/
skillplus init <id> [--from <existing>]                                      scaffold a new skill
skillplus update [--check] [--dry-run]                                       self-update via npm

skillplus <cmd> --help for flags.

Compile

# By skill id (resolves against ~/.skillplus/local/ first, then bundled)
skillplus food-street-realism --target openmelon --locale zh-CN

# By path (local development)
skillplus ./my-package.skillplus --target skill-md

# Drop-in for Claude Code
skillplus food-street-realism --target skill-md > ~/.claude/skills/food.md

Targets: openmelon, skill-md, prompt-bundle, eval, provenance.

Browse the catalog

skillplus list shows everything available — bundled official skills plus your own under ~/.skillplus/local/. Local takes precedence in resolution: skillplus copy food-street-realism makes a local fork, which then shadows the official version.

ID                   VERSION  SOURCE    DESCRIPTION
---------------------------------------------------
brand-logo           0.1.0    bundled   Single-mark brand logos for OSS, dev tools…
food-street-realism  0.1.0    bundled   Real-feeling phone-snapshot food posts…

Update

skillplus update --check     # see if a newer version exists
skillplus update             # install it

This runs npm install -g @e8s/skillplus@latest under the hood. Mirrors claude update.

Featured skills

Curated picks from the catalog (full list: skills/README.md or skillplus list).

Skill What it does

food-street-realism Real-feeling phone-snapshot food posts for 探店 / Xiaohongshu

brand-logo Flat-vector brand logos that read at favicon size

Contribute

Skill-Plus grows with the community. New skills are accepted via PR.

The contribution path is short:

skillplus init my-skill          # scaffold ./my-skill.skillplus/
# fill in the TODOs (skillplus.yaml, .search, prompts/, schema/, eval/)
skillplus my-skill --target openmelon --locale en   # compile to verify
# open a PR moving ./my-skill.skillplus/ into skills/

Required for acceptance:

  • .search file with a description (≤200 chars) and 1-10 kebab-case tags

  • Manifest fields per SPEC.md

  • At least one locale, one model profile, one base prompt

  • Evaluation checklist + failure modes

  • A real example input

  • Demonstrably useful (not a "tweak the temperature" reskin of an existing skill)

See CONTRIBUTING.md for the full submission requirements + featured-tier criteria.

Public API

import { compilePackage, renderTarget, CompileError } from "@e8s/skillplus"

const compiled = compilePackage({
  packageDir: "./food-street-realism.skillplus",
  target: "openmelon",
  modelProfile: "gpt-image-family",
  locale: "zh-CN",
  varsOverride: { realism_level: "high" },
})
const { text } = renderTarget(compiled)

Vendor model profiles

Per-vendor prompt-style preferences and gotchas live in model-profiles/. Today: Anthropic Claude. More coming.

License

MIT.

Frequently Asked Questions

What is skillplus?

skillplus is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by eight-acres-lab. A compilable skill package standard for reliable content-generation agents. It has 305 GitHub stars.

Is skillplus safe to use?

Yes. skillplus passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install skillplus?

Clone the repository with "git clone https://github.com/eight-acres-lab/skillplus" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is skillplus written in?

skillplus is primarily written in TypeScript. It is open-source under eight-acres-lab on GitHub, so you can review or fork the full source.

Are there alternatives to skillplus?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh skillplus against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details