Files
Brandon Martin 2232aae10c fix(plugins): remove unsupported manifest path fields (#7)
## Summary
- remove explicit `agents`, `skills`, and `commands` fields from
generated plugin manifests
- rely on Claude Code's standard auto-discovery for plugin-root
`agents/`, `skills/`, and `commands/` directories
- flatten packaged agents to `agents/*.md` so discovery does not depend
on nested-path recursion
- keep the fix minimal by only retaining the explicit `hooks` entry for
`cce-core`

## Why
A local plugin install failed with:

```text
Plugin has an invalid manifest file ... Validation errors: agents: Invalid input
```

Our packaged plugins already follow the standard directory structure, so
the extra manifest path fields were unnecessary and were the most likely
validator mismatch. Greptile also flagged that many generated plugin
agents were nested under paths like `agents/specialized/...`, which
could silently fail if discovery is non-recursive. This change aligns
the packages with the default plugin structure instead of relying on
special manifest fields or recursive discovery.

## Changes
- update `scripts/sync_plugin_packages.py` to stop emitting manifest
path overrides
- flatten generated packaged agents to plugin-root `agents/*.md`
- regenerate all packaged plugin manifests with minimal metadata-only
manifests
- regenerate all packaged plugin agent files into the flat standard
layout

## Verification
- `python3 scripts/sync_plugin_packages.py`
- `python3 -m py_compile scripts/sync_plugin_packages.py
install_extensions.py`
- validated all 19 generated plugin manifests as JSON
- confirmed no generated manifest still contains `agents`, `skills`, or
`commands`
- confirmed packaged agents are flat: `flat_agents=78 nested_agents=0`
2026-04-01 22:25:42 -05:00
..

CCE Home Assistant Plugin

Home Assistant automation, integrations, dashboards, add-ons, APIs, voice, and energy workflows for Claude Code.

Overview

The cce-homeassistant plugin packages the full Home Assistant toolkit into one self-contained plugin. It includes specialist agents for every major HA surface area plus the skills and commands needed to build automations, dashboards, integrations, energy setups, voice flows, and Frigate-assisted camera workflows.

Included Components

Agents (7)

  • ha-addon-developer
  • ha-api-expert
  • ha-automation-expert
  • ha-dashboard-expert
  • ha-energy-expert
  • ha-integration-developer
  • ha-voice-expert

Skills (8)

  • ha-addon
  • ha-api
  • ha-automation
  • ha-dashboard
  • ha-energy
  • ha-integration
  • ha-voice
  • frigate-configurator

Commands (3)

  • /cce-homeassistant:ha-automation-lint
  • /cce-homeassistant:ha-blueprint-create
  • /cce-homeassistant:ha-integration-scaffold

Installation

Plugin Mode

/plugin marketplace add github:nodnarbnitram/claude-code-extensions
/plugin install cce-homeassistant@cce-marketplace

Standalone Mode

git clone https://github.com/nodnarbnitram/claude-code-extensions.git
cd claude-code-extensions
./install_extensions.py install ~/your-project

What It Covers

  • Lovelace dashboards and themes
  • Automations, scripts, blueprints, and Jinja templates
  • REST and WebSocket API integrations
  • Custom integrations and config flows
  • Add-on development with Docker and Supervisor APIs
  • Assist pipelines, wake words, TTS/STT, and voice satellites
  • Energy dashboards and utility meters
  • Frigate configuration and object-detection workflows

Structure

This plugin is now self-contained under plugins/cce-homeassistant/ with local agents/, skills/, and commands/ directories for marketplace installs.

License

MIT License - see LICENSE for details.