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 Linear Plugin

Linear ticket, project, milestone, document, and PR coordination workflows for Claude Code.

Overview

The cce-linear plugin packages the repository's Linear workflow tooling into a self-contained plugin. It includes the linear skill with wrapper scripts for linearis, plus commands for triage and Linear-linked PR creation.

Included Components

Skill

  • linear

Commands

  • /cce-linear:triage
  • /cce-linear:create-linear-pr
  • /cce-linear:existing-linear

Installation

Plugin Mode

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

Standalone Mode

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

Requirements

  • linearis CLI installed
  • LINEAR_API_TOKEN configured
  • gh CLI authenticated for PR flows

Structure

This plugin is self-contained under plugins/cce-linear/ with local commands/ and skills/linear/ content for marketplace installs.

License

MIT License - see LICENSE for details.