chore: initialize recovered claude workspace

This commit is contained in:
2026-04-02 15:29:01 +08:00
commit a10efa3b4b
1940 changed files with 506426 additions and 0 deletions

View 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'