/** * shakespeare_ngit tool * Publishes/pushes to Nostr Git (NIP-34) * * This tool publishes repository state to Nostr using NIP-34: * - Kind 30617: Repository announcement (clone URLs, relays, metadata) * - Kind 30618: Repository state (branches, tags, HEAD) * * If the `ngit` CLI is installed, it will be used to handle the full push flow * including git object transfer. Otherwise, only Nostr events are published. */ export declare const ngit: { description: string; args: { projectPath: import("zod").ZodOptional; name: import("zod").ZodOptional; description: import("zod").ZodOptional; identifier: import("zod").ZodOptional; }; execute(args: { projectPath?: string | undefined; name?: string | undefined; description?: string | undefined; identifier?: string | undefined; }, context: import("@opencode-ai/plugin").ToolContext): Promise; }; //# sourceMappingURL=ngit.d.ts.map