aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
20 lines • 839 B
TypeScript
/**
* Git (generic) Source Adapter
*
* Fetches plugins from any Git URL. Detects the manifest format automatically
* (looks for .claude-plugin/, .codex-plugin/, .cursor-plugin/, .factory-plugin/,
* clawhub.json in that order).
*
* Status: scaffold. Full implementation requires git-clone integration.
*
* @implements #787
*/
import type { MarketplaceSource, PackageBundle, PackageSummary, SearchOptions, ValidationResult } from '../types.js';
export declare class GitSource implements MarketplaceSource {
readonly source: "git";
fetch(packageId: string, _version?: string): Promise<PackageBundle>;
search(_query: string, _options?: SearchOptions): Promise<PackageSummary[]>;
validate(manifest: unknown): ValidationResult;
getVersions(_packageId: string): Promise<string[]>;
}
//# sourceMappingURL=git.d.ts.map