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
2 changes: 1 addition & 1 deletion .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"plugins": [
{
"name": "glean-codex",
"name": "glean-experimental-codex",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we drop codex from the name?

"source": {
"source": "local",
"path": "./packages/codex"
Expand Down
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "glean-plugins-internal",
"name": "glean-experimental-plugins",
"owner": {
"name": "Glean"
},
"plugins": [
{
"name": "glean",
"name": "glean-experimental",
"source": "./plugins/glean",
"description": "Glean plugin for discovering skills and running tools."
}
Expand Down
2 changes: 1 addition & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"enabledPlugins": {
"glean@glean-plugins-internal": true
"glean-experimental@glean-experimental-plugins": true
}
}
2 changes: 1 addition & 1 deletion .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"plugins": [
{
"name": "glean-cursor1",
"name": "glean-experimental-cursor",
"source": "plugins/glean",
"description": "Glean plugin for discovering skills and running tools."
}
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ marketplace.

Today it ships one plugin:

- **`glean`** — adds two static tools, `find_skills` and `run_tool`, that
- **`glean-experimental`** — adds two static tools, `find_skills` and `run_tool`, that
let the agent discover Glean-hosted skills for enterprise apps (Jira, Slack,
Google Workspace, Salesforce, etc.) and invoke their downstream tools via
Glean's MCP gateway. Once the user has authenticated, the plugin also
Expand All @@ -19,16 +19,16 @@ Today it ships one plugin:
### Claude Code (terminal)

```
/plugin marketplace add askscio/glean-plugins-internal
/plugin install glean@glean-plugins-internal
/plugin marketplace add gleanwork/glean-experimental-plugins
/plugin install glean-experimental@glean-experimental-plugins
```

### Claude Cowork (desktop)

1. Open the plugin picker.
2. Click **Add marketplace**, choose **GitHub**, and enter
`askscio/glean-plugins-internal`.
3. Once the marketplace syncs, install the **glean** plugin from it.
`gleanwork/glean-experimental-plugins`.
3. Once the marketplace syncs, install the **glean-experimental** plugin from it.

## First run

Expand All @@ -42,7 +42,7 @@ expires.

```
# Claude Code
/plugin marketplace update glean-plugins-internal
/plugin marketplace update glean-experimental-plugins

# Cowork: the plugin picker has a "Sync" / "Check for updates"
# button on the marketplace entry.
Expand All @@ -54,12 +54,12 @@ You can point the marketplace at a specific git branch, tag, or commit:

```bash
# Install from a specific branch (e.g. a PR branch)
/plugin marketplace add askscio/glean-plugins-internal@branch-name
/plugin install glean@glean-plugins-internal
/plugin marketplace add gleanwork/glean-experimental-plugins@branch-name
/plugin install glean-experimental@glean-experimental-plugins

# Or update an existing marketplace to a different branch
/plugin marketplace remove glean-plugins-internal
/plugin marketplace add askscio/glean-plugins-internal@branch-name
/plugin marketplace remove glean-experimental-plugins
/plugin marketplace add gleanwork/glean-experimental-plugins@branch-name
```

You can also pin to a branch in `settings.json`:
Expand All @@ -68,8 +68,8 @@ You can also pin to a branch in `settings.json`:
{
"marketplaces": [
{
"name": "glean-plugins-internal",
"source": "https://github.com/askscio/glean-plugins-internal",
"name": "glean-experimental-plugins",
"source": "https://github.com/gleanwork/glean-experimental-plugins",
"sourceType": "git",
"branch": "mohit-baseline-marketplace-layout"
}
Expand All @@ -80,7 +80,7 @@ You can also pin to a branch in `settings.json`:
For local development, point the marketplace at your local checkout instead:

```bash
/plugin marketplace add /path/to/glean-plugins-internal
/plugin marketplace add /path/to/glean-experimental-plugins
```

Then just `git checkout` whichever branch you want to test.
Expand Down
2 changes: 1 addition & 1 deletion packages/codex/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "glean-codex",
"name": "glean-experimental-codex",
"version": "0.2.11",
"description": "Glean Codex plugin for discovering skills and running tools.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This repo ships `.agents/plugins/marketplace.json` pointing at `./packages/codex

1. Open Codex with this repo as the workspace root.
2. Open the plugin directory — Codex desktop: **Plugins**, Codex CLI: `/plugins`.
3. Find **Glean for Codex (Local Repo)** and install `glean-codex`.
3. Find **Glean for Codex (Local Repo)** and install `glean-experimental-codex`.
4. Restart Codex if the marketplace doesn't appear immediately.

Before the first install from a fresh checkout, run `npm run build` once so
Expand Down
4 changes: 2 additions & 2 deletions plugins/glean/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "glean",
"version": "0.2.16",
"name": "glean-experimental",
"version": "0.2.17",
"description": "Glean plugin for discovering skills and running tools.",
"author": {
"name": "Glean"
Expand Down
2 changes: 1 addition & 1 deletion plugins/glean/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "glean-cursor-plugin",
"name": "glean-experimental-cursor",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we drop cursor from the name?

"displayName": "Glean Cursor",
"version": "0.2.15",
"description": "Search and act across your company's apps — Jira, Slack, Salesforce, Google Workspace, and more — without leaving Cursor.",
Expand Down
Loading