forked from ultraworkers/claw-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathofficialMarketplace.ts
More file actions
25 lines (22 loc) · 836 Bytes
/
Copy pathofficialMarketplace.ts
File metadata and controls
25 lines (22 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* Constants for the official Anthropic plugins marketplace.
*
* The official marketplace is hosted on GitHub and provides first-party
* plugins developed by Anthropic. This file defines the constants needed
* to install and identify this marketplace.
*/
import type { MarketplaceSource } from './schemas.js'
/**
* Source configuration for the official Anthropic plugins marketplace.
* Used when auto-installing the marketplace on startup.
*/
export const OFFICIAL_MARKETPLACE_SOURCE = {
source: 'github',
repo: 'anthropics/claude-plugins-official',
} as const satisfies MarketplaceSource
/**
* Display name for the official marketplace.
* This is the name under which the marketplace will be registered
* in the known_marketplaces.json file.
*/
export const OFFICIAL_MARKETPLACE_NAME = 'claude-plugins-official'