ai intermediate

Jido.AI Skills Runtime Foundations

Real skill manifest loading, registry setup, prompt rendering, and builder-skill catalog walkthroughs with checked-in `SKILL.md` fixtures.

primary showcase ai l2 ai-tool-use skills runtime jido_ai

Related guides and notebooks

priv/skills/builder-plugin-scaffold/SKILL.md 41 lines
---
name: builder-plugin-scaffold
description: Scaffolds a Jido plugin with signal routes, actions, and docs notes for workbench consumers.
license: Apache-2.0
compatibility: Jido.AI >= 2.0
allowed-tools: read_file write_file grep scaffold_plugin_module scaffold_plugin_test update_docs
metadata:
  author: agent-jido-workbench
  version: "1.0.0"
  host_repo: jido.run
  intended_runtimes: Jido.AI, jido_skill, Codex
  boundary: package repo signal/runtime implementation with workbench usage docs
tags:
  - builder
  - scaffold
  - plugin
  - signals
---

# Builder Plugin Scaffold

Use this skill when the task is to add a plugin that introduces new signal routes, runtime policy, or reusable operational behavior.

## Workflow

1. Capture the signal routes, required actions, plugin opts, and failure boundaries.
2. Generate the plugin module with explicit route mapping and minimal hidden behavior.
3. Add tests for route registration, action dispatch, and misconfiguration handling.
4. Document how the plugin should appear in examples, docs, and ecosystem package pages.

## Package Boundary

- Package repo: plugin module, actions, tests, and configuration docs.
- Workbench repo: example usage, docs snippets, and ecosystem positioning.

## Deliverables

- plugin scaffold
- route and action checklist
- workbench usage notes