init
This commit is contained in:
commit
ec53fcbe95
1905 changed files with 513762 additions and 0 deletions
25
utils/plugins/officialMarketplace.ts
Normal file
25
utils/plugins/officialMarketplace.ts
Normal file
|
|
@ -0,0 +1,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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue