Agent Skills for working with Appstrate, the open-source agent runtime platform. Install one into your coding agent (Claude Code, Cursor, Google Antigravity, Windsurf, …) and it becomes an Appstrate expert.
License: Apache 2.0 (first-party skills). Community links on this page point to their own licenses.
Universal one-liner (auto-detects your coding agent and drops the skill in the right place):
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrateOr pick your target explicitly:
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrate --claude
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrate --cursor
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrate --antigravity
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrate --universalPrefer git clone directly? Skills are plain folders — see each skill's README below for the target path per agent.
Skills evolve. Pull the latest version by re-running the installer with --update:
curl -fsSL https://raw.githubusercontent.com/appstrate/skills/main/install.sh | bash -s appstrate --updateThe flag is an alias for APPSTRATE_SKILLS_FORCE=1 — it overwrites the existing install instead of failing. Without --update, a fresh install into an existing directory errors out as a safety net.
| Skill | What it does |
|---|---|
appstrate |
Install Appstrate, sign in, call the REST API, author AFPS packages, manage profiles across cloud + self-hosted + dev instances |
More first-party skills ship as we write them. Planned: afps-authoring, agent-writing, multi-tenancy, self-hosting-troubleshooter.
A curated awesome-list of skills that work well alongside Appstrate, maintained by the community: COMMUNITY.md.
Open a PR editing that file to add yours — no gate-keeping, just keep it related and linkable.
| Agent | Install path (per-user) | Install path (per-project) |
|---|---|---|
| Claude Code | ~/.claude/skills/<name>/ |
.claude/skills/<name>/ |
| Cursor | — | .cursor/skills/<name>/ |
| Google Antigravity | ~/.gemini/antigravity/skills/<name>/ |
.agent/skills/<name>/ |
| Windsurf, Aider, any AGENTS.md-aware agent | — | .agent/skills/<name>/ (via OpenSkills) |
A directory with a SKILL.md file. The markdown has YAML frontmatter (name, description) that tells your agent when to use it, followed by instructions, references, and scripts the agent can load on demand. Standard introduced by Anthropic; now supported (with minor path variations) by every major coding agent.
The description field matters: that's what your agent reads to decide whether to load the skill for a given request. Keep it rich, keyword-dense, and specific to triggers.
See CONTRIBUTING.md — two paths: add a first-party skill (PR a folder under skills/) or link your own repo (PR a line in COMMUNITY.md).