promptTypes.ts ×4

Frontier kind: Code frontier

unlabeled · c_fe711790584e

898 tests · 5767 LOC · 30 files · introduces 0 tests · 131 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges131 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
790 ranges5767 lines · 30 files · Browse complete extent
All tests (intent)
898 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 131 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.ts 131 introduced LOC · 4 ranges

Open complete file

1 > /*--------------------------------------------------------------------------------------------- promptTypes.ts
2 > * Copyright (c) Microsoft Corporation. All rights reserved.
3 > * Licensed under the MIT License. See License.txt in the project root for license information.
4 > *--------------------------------------------------------------------------------------------*/
5 >
6 > import { LanguageSelector } from '../../../../../editor/common/languageSelector.js';
7 > import { localize } from '../../../../../nls.js';
8 >
9 > /**
10 > * Documentation link for the reusable prompts feature.
11 > */
12 > export const PROMPT_DOCUMENTATION_URL = 'https://aka.ms/vscode-ghcp-prompt-snippets';
13 > export const INSTRUCTIONS_DOCUMENTATION_URL = 'https://aka.ms/vscode-ghcp-custom-instructions';
14 > export const AGENT_DOCUMENTATION_URL = 'https://aka.ms/vscode-ghcp-custom-chat-modes'; // todo
15 > export const SKILL_DOCUMENTATION_URL = 'https://aka.ms/vscode-agent-skills';
16 > // TODO: update link when available
17 > export const HOOK_DOCUMENTATION_URL = 'https://aka.ms/vscode-chat-hooks';
18 >
19 > /**
20 > * Language ID for the reusable prompt syntax.
21 > */
22 > export const PROMPT_LANGUAGE_ID = 'prompt';
23 >
24 > /**
25 > * Language ID for instructions syntax.
26 > */
27 > export const INSTRUCTIONS_LANGUAGE_ID = 'instructions';
28 >
29 > /**
30 > * Language ID for agent syntax.
31 > */
32 > export const AGENT_LANGUAGE_ID = 'chatagent';
33 >
34 > /**
35 > * Language ID for skill syntax.
36 > */
37 > export const SKILL_LANGUAGE_ID = 'skill';
38 >
39 > /**
40 > * Prompt and instructions files language selector.
41 > */
42 > export const ALL_PROMPTS_LANGUAGE_SELECTOR: LanguageSelector = [PROMPT_LANGUAGE_ID, INSTRUCTIONS_LANGUAGE_ID, AGENT_LANGUAGE_ID, SKILL_LANGUAGE_ID];
43 >
44 > /**
45 > * Configuration key for enabling the agent debug log feature.
46 > */
47 > export const AGENT_DEBUG_LOG_ENABLED_SETTING = 'github.copilot.chat.agentDebugLog.enabled';
48 >
49 > /**
50 > * Configuration key for enabling file logging for the agent debug log.
51 > */
52 > export const AGENT_DEBUG_LOG_FILE_LOGGING_ENABLED_SETTING = 'github.copilot.chat.agentDebugLog.fileLogging.enabled';
53 >
54 > /**
55 > * Configuration key for enabling agent debug logging for agent host (Copilot CLI) sessions.
56 > * Registered in core (see `chat.shared.contribution.ts`) since only core consumes it.
57 > */
58 > export const AgentHostAgentDebugLogEnabledSettingId = 'chat.agentHost.agentDebugLog.enabled';
59 >
60 > /**
61 > * Configuration key for the maximum number of debug events kept in memory for
62 > * agent host (Copilot CLI) sessions. Registered in core (see
63 > * `chat.shared.contribution.ts`) since only core consumes it.
64 > */
65 > export const AgentHostAgentDebugLogMaxEventsSettingId = 'chat.agentHost.agentDebugLog.maxEventsInMemory';
66 >
67 > /**
68 > * The name of the troubleshoot slash command / skill.
69 > */
70 > export const TROUBLESHOOT_COMMAND_NAME = 'troubleshoot';
71 >
72 > /**
73 > * URI scheme used by the Copilot extension for built-in skills.
74 > */
75 > export const COPILOT_SKILL_URI_SCHEME = 'copilot-skill';
76 >
77 > /**
78 > * Path fragment that identifies the troubleshoot skill in a URI.
79 > */
80 > export const TROUBLESHOOT_SKILL_PATH = 'troubleshoot/SKILL.md';
81 >
82 > /**
83 > * The language id for a prompts type.
84 > */
85 > export function getLanguageIdForPromptsType(type: PromptsType): string {
86 switch (type) {
87 case PromptsType.prompt:
100 }
101 }
103 > export function getPromptsTypeForLanguageId(languageId: string): PromptsType | undefined {
104 switch (languageId) {
105 case PROMPT_LANGUAGE_ID:
116 }
117 }
119 >
120 > /**
121 > * What the prompt is used for.
122 > */
123 > export enum PromptsType {
124 > instructions = 'instructions',
125 > prompt = 'prompt',
126 > agent = 'agent',
127 > skill = 'skill',
128 > hook = 'hook'
129 > }
130 > export function isValidPromptType(type: string): type is PromptsType {
131 return Object.values(PromptsType).includes(type as PromptsType);
132 }
134 > export enum Target {
135 > VSCode = 'vscode',
136 > GitHubCopilot = 'github-copilot',
137 > Claude = 'claude',
138 > Undefined = 'undefined',
139 > }
140 >
141 > /**
142 > * Tracks where prompt files originate from.
143 > */
144 > export enum PromptFileSource {
145 > GitHubWorkspace = 'github-workspace',
146 > CopilotPersonal = 'copilot-personal',
147 > ClaudePersonal = 'claude-personal',
148 > ClaudeWorkspace = 'claude-workspace',
149 > ClaudeWorkspaceLocal = 'claude-workspace-local',
150 > AgentsWorkspace = 'agents-workspace',
151 > AgentsPersonal = 'agents-personal',
152 > ConfigWorkspace = 'config-workspace',
153 > ConfigPersonal = 'config-personal',
154 > UserData = 'user-data',
155 > ExtensionContribution = 'extension-contribution',
156 > ExtensionAPI = 'extension-api',
157 > Plugin = 'plugin',
158 > }
159 >
160 > /**
161 > * Returns a human-readable description for a prompt file source.
162 > */
163 > export function getSourceDescription(source: PromptFileSource): string | undefined {
164 switch (source) {
165 case PromptFileSource.AgentsWorkspace: