mirror of
https://github.com/larsbaunwall/vscode-copilot-bridge.git
synced 2025-10-05 22:22:59 +00:00
- Implements VS Code extension per AGENTS.md specification
- OpenAI-style HTTP facade: POST /v1/chat/completions (SSE), GET /v1/models, GET /healthz
- JSON-RPC WebSocket server with methods: mcp.fs.read/list, mcp.search.code, mcp.symbols.list, mcp.edit.applyPatch, mcp.format.apply, mcp.imports.organize
- Copilot Chat integration via vscode.chat.requestChatAccess('copilot')
- Commands: bridge.enable/disable/status with status bar indicator
- Security: localhost-only binding, optional bearer token, read-only by default
- Policy enforcement via optional .agent-policy.yaml
- Ephemeral port management with globalState persistence
Co-Authored-By: Lars Baunwall <larslb@thinkability.dk>
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import type { Directives } from '../doc/directives';
|
|
import type { ParsedNode } from '../nodes/Node';
|
|
import type { ParseOptions } from '../options';
|
|
import type { SourceToken, Token } from '../parse/cst';
|
|
import type { Schema } from '../schema/Schema';
|
|
import type { ComposeErrorHandler } from './composer';
|
|
export interface ComposeContext {
|
|
atKey: boolean;
|
|
atRoot: boolean;
|
|
directives: Directives;
|
|
options: Readonly<Required<Omit<ParseOptions, 'lineCounter'>>>;
|
|
schema: Readonly<Schema>;
|
|
}
|
|
interface Props {
|
|
spaceBefore: boolean;
|
|
comment: string;
|
|
anchor: SourceToken | null;
|
|
tag: SourceToken | null;
|
|
newlineAfterProp: SourceToken | null;
|
|
end: number;
|
|
}
|
|
declare const CN: {
|
|
composeNode: typeof composeNode;
|
|
composeEmptyNode: typeof composeEmptyNode;
|
|
};
|
|
export type ComposeNode = typeof CN;
|
|
export declare function composeNode(ctx: ComposeContext, token: Token, props: Props, onError: ComposeErrorHandler): ParsedNode;
|
|
export declare function composeEmptyNode(ctx: ComposeContext, offset: number, before: Token[] | undefined, pos: number | null, { spaceBefore, comment, anchor, tag, end }: Props, onError: ComposeErrorHandler): import('../index').Scalar.Parsed;
|
|
export {};
|