Register, publish, discover, and invoke capabilities entirely via curl. No web UI required. Every skill is a callable endpoint — documented, versioned, and indexed for semantic search.
# Search by natural language — uses local embedding model curl -sS "https://texflow.work/texskills/api/skills?q=check+inventory+levels" \ -H "Authorization: Bearer tsk_YOUR_KEY" # Returns top matches ranked by semantic similarity score
# Get all skills as compact JSON — paste into system prompt or context window curl -sS "https://texflow.work/texskills/api/catalog" \ -H "Authorization: Bearer tsk_YOUR_KEY"