AI Agent Skills

Tkeron ships with AI agent skills — Markdown files (SKILL.md) that an AI coding agent can read to understand the entire tkeron workflow: CLI, folder structure, file types, components, the build lifecycle, testing, best practices and common pitfalls.

Drop them into any project with a single command:

tk skills

This installs the bundled skills into ./skills/. Point your agent's skill loader at that directory (or copy the folders to wherever your agent expects them).

Command

tk skills [target] [--force] [--dry-run]
ArgumentDefaultDescription
target./skills/Directory where skills are installed
--forcefalseOverwrite existing files without prompting
--dry-runfalseShow what would be installed without writing anything

Examples:

tk skills                       # install into ./skills/
tk skills agent-skills          # custom target directory
tk skills --force               # overwrite existing files
tk skills .github/skills        # drop directly into a Copilot-friendly folder
tk skills --dry-run             # preview without writing

Bundled Skills

tk skills installs the following Markdown skill files:

SkillCovers
tkeronCore CLI, build lifecycle, file types, IDE & testing setup
tkeron-components.com.html, .com.ts, .com.md, .pre.ts, .post.ts
tkeron-organizationProject layout, naming, when to componentize
tkeron-patternsPatterns, anti-patterns, security, performance
tkeron-testinggetBuildResult() API, recipes, deterministic tests
tkeron-troubleshootingCommon build errors, dev server recovery, diagnostics

Each skill is a self-contained SKILL.md with a YAML frontmatter description and instructions.

Auto-detection

tk skills detects the AI environment of your project and applies environment-specific transforms automatically:

If no environment is detected (or you pass an explicit target), files are installed verbatim into the target directory.

Why Skills Instead of an MCP Server?

Earlier versions of tkeron shipped a tkeron-mcp server that exposed documentation via the Model Context Protocol. As of v6, the MCP server has been removed in favor of tk skills.

Skills are simpler, work with any agent that understands plain Markdown, and live inside your project so they:

How Agents Use Them

After installation, the agent reads the relevant SKILL.md files on demand. Skills describe:

Next Steps