Skills, wired

Package what your agent knows how to do.
Wire it into what it should do next.

FreeSkill turns one-off prompts into portable Agent Skills packages, arranges them into typed skill-tree graphs, and serves the result to any agent over REST, cURL, or MCP — no marketplace, no resale, just infrastructure you control.

Public skills are free, forever. Pro is $10/mo for private skills and team sharing.

support-triage.tree live
classifyrouterespondescalateauthfetch ordersuggest kb
requiresthenparallelconditionalfallbackenhances

Relationships, not just files

Six typed connections describe exactly how skills relate to each other at execution time — visible directly on the canvas, not buried in config.

requires

Target cannot run until this dependency is satisfied.

then

Runs sequentially after the source completes.

parallel

Runs concurrently with the source.

conditional

Runs only if a condition on the source is met.

fallback

Runs only if the source fails.

enhances

Optional context that improves, but is not required by, the target.

How it fits together

01

Package

Write SKILL.md by hand, upload one, or drop in a ZIP with scripts, references, and assets.

02

Wire

Drag skills onto the canvas and connect them with typed edges to define how an agent should use them.

03

Share

Grant a team or teammate access to a private skill or tree — no purchase required on their end.

04

Serve

Publish an immutable release and expose it to any agent over REST, cURL, or MCP.

GitHub is one optional way to import a skill package — not a requirement.

Every tree is an endpoint

Agents reach a published skill tree the same way regardless of framework.

cURL
curl https://api.freeskill.dev/v1/trees/support-triage \
  -H "Authorization: Bearer $FS_TOKEN"
MCP config
{
  "mcpServers": {
    "support-triage": {
      "url": "https://mcp.freeskill.dev/t/support-triage",
      "headers": { "Authorization": "Bearer $FS_TOKEN" }
    }
  }
}

Public and private, side by side

Public skills

  • Free to create and free to use, always
  • Discoverable and reusable by anyone
  • Revision history visible to all

Private skills — Pro

  • Visible only to you and who you grant access to
  • Share with a team — recipients don't pay
  • Scoped, expiring agent tokens

Pricing

FreeSkill hosts and connects your skills. It doesn't resell them or take a cut.

Free

$0

  • Unlimited public skills and trees
  • Evaluations on public skills
  • Read-only agent tokens

Pro

$10/mo

  • Everything in Free
  • Private skills and trees
  • Team sharing with no cost to recipients
  • Publishing-scoped agent tokens

Security and trust

Reviewed public revisions

Public releases pass through security review before they're discoverable.

Immutable releases

Published revisions can't change. Editing creates a new, separately reviewed revision.

Scoped, revocable tokens

Agent access is limited to one skill or tree, with expirations and instant revocation.

Package your first skill in a few minutes