smithery/oodaris

eng-plugin-authoring

Build external autocodex plugins with manifest + JSON-RPC.

Installation

$ npx skills add smithery/oodaris --skill eng-plugin-authoring

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/oodaris.

npx skills add smithery/oodaris

Browse all from smithery/oodaris

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,042 B
  • docs SUMMARY.md 86 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Plugin Authoring

Repo anchors (autocodex)

  • PLUGINS_PATH: plugins/
  • DOCS_PATH: docs/plugins/README.md

When to use

  • Creating or updating an autocodex plugin.

Preconditions

  • You know the capability inputs/outputs.

Inputs to confirm

  • Capability name and schemas
  • Transport (jsonrpc for v1)

Required artifacts

  • plugin.yaml manifest
  • Executable plugin binary/script
  • Example invocation

Quick path

  • Write manifest.
  • Implement handshake and JSON-RPC loop.
  • Add a sample invocation.

Steps

  1. Define capability input/output schema.
  2. Implement handshake and request loop.
  3. Add usage docs.

Failure modes and responses

  • Handshake missing: plugin will fail to load.
  • Capability mismatch: host rejects the request.

Definition of done

  • Plugin loads and responds to a capability call.

Example (minimal)

  • Capability: summarize with {text:string} input.