MCPcopy Create free account
hub / github.com/codeaashu/claude-code / generateContextsTable

Function generateContextsTable

src/skills/bundled/keybindings.ts:20–28  ·  view source on GitHub ↗

* Build a markdown table of all contexts.

()

Source from the content-addressed store, hash-verified

18 * Build a markdown table of all contexts.
19 */
20function generateContextsTable(): string {
21 return markdownTable(
22 ['Context', 'Description'],
23 KEYBINDING_CONTEXTS.map(ctx => [
24 `\`${ctx}\``,
25 KEYBINDING_CONTEXT_DESCRIPTIONS[ctx],
26 ]),
27 )
28}
29
30/**
31 * Build a markdown table of all actions with their default bindings and context.

Callers 1

getPromptForCommandFunction · 0.85

Calls 1

markdownTableFunction · 0.85

Tested by

no test coverage detected