Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ setup and capability differences.

## Layout

| Path | What it is |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
| `shared/glean/` | Canonical Glean plugin: skills, agents, static files, and the local MCP implementation. |
| `shared/glean-dev-docs/` | Canonical source for the separate developer-docs plugin. |
| `overrides/<target>/<plugin>/` | Target-specific additions and replacements applied after the shared source. |
| `repositories/<target>/` | Files emitted at the root of each generated marketplace repository. |
| `pluginpack.config.ts` | Build config — which shared source, overrides, and content kinds each target includes. |
| `dist/<target>/` | **Generated** marketplace repositories. Don't edit them by hand — they're rebuilt from `shared/`, `overrides/`, and `repositories/`. |
| Path | What it is |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
| `shared/glean/` | Canonical Glean plugin: skills, agents, static files, and the local MCP implementation. |
| `shared/glean-dev-docs/` | Canonical source for the separate developer-docs plugin. |
| `overrides/<target>/<plugin>/` | Target-specific plugin additions and replacements applied after the shared source. |
| `overrides/<target>/root/` | Target-specific files emitted at the generated marketplace repository root. |
| `pluginpack.config.ts` | Build config — which shared source, overrides, and content kinds each target includes. |
| `dist/<target>/` | **Generated** marketplace repositories. Don't edit them by hand — they're rebuilt from `shared/` and `overrides/`. |

## Plugins produced

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions pluginpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default defineConfig({
claude: {
outDir: "dist/claude",
version: pkg.version,
repositoryFiles: "repositories/claude",
repositoryFiles: "overrides/claude/root",
Comment thread
steve-calvert-glean marked this conversation as resolved.
manifest: {
description:
"Official Glean plugins for Claude Code — enterprise knowledge, search, people, code, and meetings.",
Expand All @@ -44,7 +44,7 @@ export default defineConfig({
cursor: {
outDir: "dist/cursor",
version: pkg.version,
repositoryFiles: "repositories/cursor",
repositoryFiles: "overrides/cursor/root",
manifest: {
metadata: {
description:
Expand Down Expand Up @@ -104,7 +104,7 @@ export default defineConfig({
},
codex: {
outDir: "dist/codex",
repositoryFiles: "repositories/codex",
repositoryFiles: "overrides/codex/root",
manifest: {
name: "glean-codex-plugins",
interface: { displayName: "Glean for Codex" },
Expand Down