agent-sdk/slash-commands.md +0 −594 deleted
File Deleted View Diff
1> ## Documentation Index
2> Fetch the complete documentation index at: https://code.claude.com/docs/llms.txt
3> Use this file to discover all available pages before exploring further.
4
5# Slash Commands nell'SDK
6
7> Scopri come utilizzare slash commands per controllare le sessioni di Claude Code attraverso l'SDK
8
9Gli slash commands forniscono un modo per controllare le sessioni di Claude Code con comandi speciali che iniziano con `/`. Questi comandi possono essere inviati attraverso l'SDK per eseguire azioni come compattare il contesto, elencare l'utilizzo del contesto o invocare comandi personalizzati. Solo i comandi che funzionano senza un terminale interattivo sono dispatchable attraverso l'SDK; il messaggio `system/init` elenca quelli disponibili nella vostra sessione.
10
11<h2 id="discovering-available-slash-commands">
12 Scoprire gli Slash Commands Disponibili
13</h2>
14
15L'SDK Claude Agent fornisce informazioni sui slash commands disponibili nel messaggio di inizializzazione del sistema. Accedete a queste informazioni quando la vostra sessione inizia:
16
17<CodeGroup>
18 ```typescript TypeScript theme={null}
19 import { query } from "@anthropic-ai/claude-agent-sdk";
20
21 for await (const message of query({
22 prompt: "Hello Claude",
23 options: { maxTurns: 1 }
24 })) {
25 if (message.type === "system" && message.subtype === "init") {
26 console.log("Available slash commands:", message.slash_commands);
27 // Include i comandi integrati più le skill raggruppate, ad esempio:
28 // ["clear", "compact", "context", "usage", "code-review", "verify", ...]
29 }
30 }
31 ```
32
33 ```python Python theme={null}
34 import asyncio
35 from claude_agent_sdk import query, ClaudeAgentOptions, SystemMessage
36
37
38 async def main():
39 async for message in query(prompt="Hello Claude", options=ClaudeAgentOptions(max_turns=1)):
40 if isinstance(message, SystemMessage) and message.subtype == "init":
41 print("Available slash commands:", message.data["slash_commands"])
42 # Include i comandi integrati più le skill raggruppate, ad esempio:
43 # ["clear", "compact", "context", "usage", "code-review", "verify", ...]
44
45
46 asyncio.run(main())
47 ```
48</CodeGroup>
49
50<h2 id="sending-slash-commands">
51 Invio di Slash Commands
52</h2>
53
54Inviate slash commands includendoli nella vostra stringa di prompt, proprio come testo normale. I comandi che agiscono sulla cronologia della conversazione, come `/compact`, necessitano di messaggi precedenti per funzionare, quindi gli esempi seguenti pongono prima una domanda e poi inviano il comando come follow-up alla stessa conversazione:
55
56<CodeGroup>
57 ```typescript TypeScript theme={null}
58 import { query } from "@anthropic-ai/claude-agent-sdk";
59
60 // Build up conversation history first
61 try {
62 for await (const message of query({
63 prompt: "What does the README in this directory cover?",
64 options: { maxTurns: 2 }
65 })) {
66 if (message.type === "result" && message.subtype === "success") {
67 console.log(message.result);
68 }
69 }
70 } catch (error) {
71 // A single-shot query() throws after yielding an error result,
72 // so the follow-up query below still runs.
73 console.error(`Session ended with an error: ${error}`);
74 }
75
76 // Send a slash command as a follow-up to the same conversation
77 for await (const message of query({
78 prompt: "/compact",
79 options: { continue: true, maxTurns: 1 }
80 })) {
81 if (message.type === "result") {
82 console.log("Command executed, result subtype:", message.subtype);
83 // Example output: Command executed, result subtype: success
84 }
85 }
86 ```
87
88 ```python Python theme={null}
89 import asyncio
90 from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage
91
92
93 async def main():
94 # Build up conversation history first
95 try:
96 async for message in query(
97 prompt="What does the README in this directory cover?",
98 options=ClaudeAgentOptions(max_turns=2),
99 ):
100 if isinstance(message, ResultMessage) and message.subtype == "success":
101 print(message.result)
102 except Exception as error:
103 # A single-shot query() raises after yielding an error result,
104 # so the follow-up query below still runs.
105 print(f"Session ended with an error: {error}")
106
107 # Send a slash command as a follow-up to the same conversation
108 async for message in query(
109 prompt="/compact",
110 options=ClaudeAgentOptions(continue_conversation=True, max_turns=1),
111 ):
112 if isinstance(message, ResultMessage):
113 print("Command executed, result subtype:", message.subtype)
114 # Example output: Command executed, result subtype: success
115
116
117 asyncio.run(main())
118 ```
119</CodeGroup>
120
121<Note>
122 Una query può terminare con un risultato di errore, ad esempio quando il limite `maxTurns` / `max_turns` viene raggiunto prima che il lavoro si completi. Il messaggio di risultato finale ha quindi `is_error: true` e un sottotipo di errore come `error_max_turns` invece di `success`.
123
124 Dopo aver restituito quel messaggio di risultato finale, l'SDK genera un errore, perché il processo CLI esce con un codice non zero.
125
126 Avvolgete il ciclo in un `try`/`catch` in TypeScript o `try`/`except` in Python se il vostro comando potrebbe raggiungere il limite, come mostrato in [Single Message Input](/it/agent-sdk/streaming-vs-single-mode#single-message-input), oppure impostate `maxTurns` abbastanza alto affinché il lavoro si completi. In Python, catturate `Exception`: l'SDK presenta i risultati di errore come una semplice `Exception`.
127</Note>
128
129<h2 id="common-slash-commands">
130 Slash Commands Comuni
131</h2>
132
133<h3 id="/compact-compact-conversation-history">
134 `/compact` - Compatta la Cronologia della Conversazione
135</h3>
136
137Il comando `/compact` riduce la dimensione della vostra cronologia di conversazione riassumendo i messaggi più vecchi preservando il contesto importante. La compattazione richiede una conversazione esistente con almeno due scambi precedenti da riassumere. Questo esempio ha una conversazione prima, poi la compatta e legge il messaggio di sistema `compact_boundary` che riporta il risultato:
138
139<CodeGroup>
140 ```typescript TypeScript theme={null}
141 import { query } from "@anthropic-ai/claude-agent-sdk";
142
143 // Compaction needs existing history, so have a conversation first
144 try {
145 for await (const message of query({
146 prompt: "Explain what this project does",
147 options: { maxTurns: 2 }
148 })) {
149 if (message.type === "result" && message.subtype === "success") {
150 console.log(message.result);
151 }
152 }
153 } catch (error) {
154 // A single-shot query() throws after yielding an error result,
155 // so the follow-up query below still runs.
156 console.error(`Session ended with an error: ${error}`);
157 }
158
159 // Compact the same conversation
160 for await (const message of query({
161 prompt: "/compact",
162 options: { continue: true, maxTurns: 1 }
163 })) {
164 if (message.type === "system" && message.subtype === "compact_boundary") {
165 console.log("Compaction completed");
166 console.log("Pre-compaction tokens:", message.compact_metadata.pre_tokens);
167 console.log("Trigger:", message.compact_metadata.trigger);
168 // Example output:
169 // Compaction completed
170 // Pre-compaction tokens: 1842
171 // Trigger: manual
172 }
173 }
174 ```
175
176 ```python Python theme={null}
177 import asyncio
178 from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage, SystemMessage
179
180
181 async def main():
182 # Compaction needs existing history, so have a conversation first
183 try:
184 async for message in query(
185 prompt="Explain what this project does",
186 options=ClaudeAgentOptions(max_turns=2),
187 ):
188 if isinstance(message, ResultMessage) and message.subtype == "success":
189 print(message.result)
190 except Exception as error:
191 # A single-shot query() raises after yielding an error result,
192 # so the follow-up query below still runs.
193 print(f"Session ended with an error: {error}")
194
195 # Compact the same conversation
196 async for message in query(
197 prompt="/compact",
198 options=ClaudeAgentOptions(continue_conversation=True, max_turns=1),
199 ):
200 if isinstance(message, SystemMessage) and message.subtype == "compact_boundary":
201 print("Compaction completed")
202 print("Pre-compaction tokens:", message.data["compact_metadata"]["pre_tokens"])
203 print("Trigger:", message.data["compact_metadata"]["trigger"])
204 # Example output:
205 # Compaction completed
206 # Pre-compaction tokens: 1842
207 # Trigger: manual
208
209
210 asyncio.run(main())
211 ```
212</CodeGroup>
213
214<Note>
215 Un messaggio `compact_boundary` arriva solo quando la compattazione è stata eseguita. Se non c'è nulla da riassumere, `/compact` riporta il motivo invece di generare un errore: l'esecuzione termina comunque con un risultato `success`, nessun messaggio `compact_boundary` viene emesso, e il testo del risultato contiene il messaggio, ad esempio `Not enough messages to compact.` dopo un singolo breve scambio. Una nuova chiamata `query()` una tantum inizia con un contesto vuoto, quindi utilizzate questo modello in una sessione con turni precedenti, ad esempio nella [modalità di input in streaming](/it/agent-sdk/streaming-vs-single-mode) o quando riprendete una sessione.
216</Note>
217
218<h3 id="/clear-reset-conversation-context">
219 `/clear` - Ripristina il Contesto della Conversazione
220</h3>
221
222Il comando `/clear` ripristina la conversazione a un contesto vuoto, in modo che i prompt successivi inizino senza alcuna cronologia di conversazione precedente. La conversazione precedente rimane su disco e può essere ripresa passando il suo ID di sessione all'[opzione `resume`](/it/agent-sdk/sessions#resume-by-id).
223
224Questo è utile nella [modalità di input in streaming](/it/agent-sdk/streaming-vs-single-mode), dove inviate più prompt su una singola connessione. Per le chiamate `query()` una tantum, ogni chiamata inizia già con un contesto vuoto, quindi inviare `/clear` non ha alcun effetto pratico; avviate invece una nuova `query()`.
225
226<Note>
227 `/clear` nell'SDK richiede Claude Code v2.1.117 o successivo. Nelle versioni precedenti è omesso da `slash_commands`.
228</Note>
229
230<h2 id="creating-custom-slash-commands">
231 Creazione di Slash Commands Personalizzati
232</h2>
233
234Oltre a utilizzare gli slash commands integrati, potete creare i vostri comandi personalizzati disponibili attraverso l'SDK. I comandi personalizzati sono definiti come file markdown in directory specifiche, simile a come sono configurati i subagenti.
235
236<Note>
237 La directory `.claude/commands/` è il formato legacy. Il formato consigliato è `.claude/skills/<name>/SKILL.md`, che supporta la stessa invocazione slash-command (`/name`) più l'invocazione autonoma da parte di Claude. Vedere [Skills](/it/agent-sdk/skills) per il formato attuale. La CLI continua a supportare entrambi i formati, e gli esempi seguenti rimangono accurati per `.claude/commands/`.
238</Note>
239
240<h3 id="file-locations">
241 Posizioni dei File
242</h3>
243
244I comandi slash personalizzati sono archiviati in directory designate in base al loro ambito:
245
246* **Comandi di progetto**: `.claude/commands/` - Disponibili solo nel progetto corrente (legacy; preferire `.claude/skills/`)
247* **Comandi personali**: `~/.claude/commands/` - Disponibili in tutti i vostri progetti (legacy; preferire `~/.claude/skills/`)
248
249<h3 id="file-format">
250 Formato del File
251</h3>
252
253Ogni comando personalizzato è un file markdown dove:
254
255* Il nome del file (senza estensione `.md`) diventa il nome del comando
256* Il contenuto del file definisce cosa fa il comando
257* Il frontmatter YAML opzionale fornisce la configurazione
258
259<h4 id="basic-example">
260 Esempio di Base
261</h4>
262
263Create la directory `.claude/commands` nel vostro progetto se non esiste, quindi create `.claude/commands/refactor.md`:
264
265```markdown theme={null}
266Refactor the selected code to improve readability and maintainability.
267Focus on clean code principles and best practices.
268```
269
270Questo crea il comando `/refactor` che potete utilizzare attraverso l'SDK.
271
272<h4 id="with-frontmatter">
273 Con Frontmatter
274</h4>
275
276Create `.claude/commands/security-check.md`:
277
278```markdown theme={null}
279allowed-tools: Read, Grep, Glob
280description: Run security vulnerability scan
281model: claude-opus-4-8
282
283Analyze the codebase for security vulnerabilities including:
284- SQL injection risks
285- XSS vulnerabilities
286- Exposed credentials
287- Insecure configurations
288```
289
290<h3 id="using-custom-commands-in-the-sdk">
291 Utilizzo di Comandi Personalizzati nell'SDK
292</h3>
293
294Una volta definiti nel filesystem, i comandi personalizzati sono automaticamente disponibili attraverso l'SDK:
295
296<CodeGroup>
297 ```typescript TypeScript theme={null}
298 import { query } from "@anthropic-ai/claude-agent-sdk";
299
300 // Use a custom command
301 try {
302 for await (const message of query({
303 prompt: "/refactor src/auth/login.ts",
304 options: { maxTurns: 3 }
305 })) {
306 if (message.type === "assistant") {
307 console.log("Refactoring suggestions:", message.message);
308 }
309 }
310 } catch (error) {
311 // A single-shot query() throws after yielding an error result,
312 // so the second query below still runs.
313 console.error(`Session ended with an error: ${error}`);
314 }
315
316 // Custom commands appear in the slash_commands list
317 for await (const message of query({
318 prompt: "Hello",
319 options: { maxTurns: 1 }
320 })) {
321 if (message.type === "system" && message.subtype === "init") {
322 console.log("Available commands:", message.slash_commands);
323 // Includes built-in commands plus bundled skills and your custom commands, for example:
324 // ["clear", "compact", "context", "usage", "code-review", "verify", "refactor", "security-check", ...]
325 }
326 }
327 ```
328
329 ```python Python theme={null}
330 import asyncio
331 from claude_agent_sdk import query, ClaudeAgentOptions, AssistantMessage, SystemMessage
332
333
334 async def main():
335 # Use a custom command
336 try:
337 async for message in query(
338 prompt="/refactor src/auth/login.py", options=ClaudeAgentOptions(max_turns=3)
339 ):
340 if isinstance(message, AssistantMessage):
341 for block in message.content:
342 if hasattr(block, "text"):
343 print("Refactoring suggestions:", block.text)
344 except Exception as error:
345 # A single-shot query() raises after yielding an error result,
346 # so the second query below still runs.
347 print(f"Session ended with an error: {error}")
348
349 # Custom commands appear in the slash_commands list
350 async for message in query(prompt="Hello", options=ClaudeAgentOptions(max_turns=1)):
351 if isinstance(message, SystemMessage) and message.subtype == "init":
352 print("Available commands:", message.data["slash_commands"])
353 # Includes built-in commands plus bundled skills and your custom commands, for example:
354 # ["clear", "compact", "context", "usage", "code-review", "verify", "refactor", "security-check", ...]
355
356
357 asyncio.run(main())
358 ```
359</CodeGroup>
360
361<h3 id="advanced-features">
362 Funzionalità Avanzate
363</h3>
364
365<h4 id="arguments-and-placeholders">
366 Argomenti e Segnaposti
367</h4>
368
369I comandi personalizzati supportano argomenti dinamici utilizzando segnaposti:
370
371Create `.claude/commands/fix-issue.md`:
372
373```markdown theme={null}
374argument-hint: [issue-number] [priority]
375description: Fix a GitHub issue
376
377Fix issue #$0 with priority $1.
378Check the issue description and implement the necessary changes.
379```
380
381Utilizzo nell'SDK:
382
383<CodeGroup>
384 ```typescript TypeScript theme={null}
385 import { query } from "@anthropic-ai/claude-agent-sdk";
386
387 // Pass arguments to custom command
388 for await (const message of query({
389 prompt: "/fix-issue 123 high",
390 options: { maxTurns: 5 }
391 })) {
392 // Command will process with $0="123" and $1="high"
393 if (message.type === "result" && message.subtype === "success") {
394 console.log("Issue fixed:", message.result);
395 }
396 }
397 ```
398
399 ```python Python theme={null}
400 import asyncio
401 from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage
402
403
404 async def main():
405 # Pass arguments to custom command
406 async for message in query(prompt="/fix-issue 123 high", options=ClaudeAgentOptions(max_turns=5)):
407 # Command will process with $0="123" and $1="high"
408 if isinstance(message, ResultMessage):
409 print("Issue fixed:", message.result)
410
411
412 asyncio.run(main())
413 ```
414</CodeGroup>
415
416<h4 id="bash-command-execution">
417 Esecuzione di Comandi Bash
418</h4>
419
420I comandi personalizzati possono eseguire comandi bash e includere il loro output:
421
422Create `.claude/commands/git-commit.md`:
423
424```markdown theme={null}
425allowed-tools: Bash(git add *), Bash(git status *), Bash(git commit *)
426description: Create a git commit
427
428## Context
429
430- Current status: !`git status`
431- Current diff: !`git diff HEAD`
432
433## Task
434
435Create a git commit with appropriate message based on the changes.
436```
437
438<h4 id="file-references">
439 Riferimenti ai File
440</h4>
441
442Includete i contenuti dei file utilizzando il prefisso `@`:
443
444Create `.claude/commands/review-config.md`:
445
446```markdown theme={null}
447description: Review configuration files
448
449Review the following configuration files for issues:
450- Package config: @package.json
451- TypeScript config: @tsconfig.json
452- Environment config: @.env
453
454Check for security issues, outdated dependencies, and misconfigurations.
455```
456
457<h3 id="organization-with-namespacing">
458 Organizzazione con Namespacing
459</h3>
460
461Organizzate i comandi in sottodirectory per una struttura migliore:
462
463```bash theme={null}
464.claude/commands/
465├── frontend/
466│ ├── component.md # Creates /component (project:frontend)
467│ └── style-check.md # Creates /style-check (project:frontend)
468├── backend/
469│ ├── api-test.md # Creates /api-test (project:backend)
470│ └── db-migrate.md # Creates /db-migrate (project:backend)
471└── review.md # Creates /review (project)
472```
473
474La sottodirectory appare nella descrizione del comando ma non influisce sul nome del comando stesso.
475
476<h3 id="practical-examples">
477 Esempi Pratici
478</h3>
479
480<h4 id="pull-request-review-command">
481 Comando di Revisione del Pull Request
482</h4>
483
484Create `.claude/commands/review-pr.md`:
485
486```markdown theme={null}
487allowed-tools: Read, Grep, Glob, Bash(git diff *)
488description: Comprehensive code review
489
490## Changed Files
491!`git diff --name-only HEAD~1`
492
493## Detailed Changes
494!`git diff HEAD~1`
495
496## Review Checklist
497
498Review the above changes for:
4991. Code quality and readability
5002. Security vulnerabilities
5013. Performance implications
5024. Test coverage
5035. Documentation completeness
504
505Provide specific, actionable feedback organized by priority.
506```
507
508<Note>
509 Claude Code include skills bundled `code-review` e `verify`. Se nominate un comando personalizzato dopo uno di essi, ad esempio `.claude/commands/code-review.md`, il vostro comando oscura lo skill bundled e `slash_commands` elenca il nome una sola volta.
510</Note>
511
512<h4 id="test-runner-command">
513 Comando Test Runner
514</h4>
515
516Create `.claude/commands/test.md`:
517
518```markdown theme={null}
519allowed-tools: Bash, Read, Edit
520argument-hint: [test-pattern]
521description: Run tests with optional pattern
522
523Run tests matching pattern: $ARGUMENTS
524
5251. Detect the test framework (Jest, pytest, etc.)
5262. Run tests with the provided pattern
5273. If tests fail, analyze and fix them
5284. Re-run to verify fixes
529```
530
531Utilizzate questi comandi attraverso l'SDK:
532
533<CodeGroup>
534 ```typescript TypeScript theme={null}
535 import { query } from "@anthropic-ai/claude-agent-sdk";
536
537 // Run code review
538 try {
539 for await (const message of query({
540 prompt: "/review-pr",
541 options: { maxTurns: 3 }
542 })) {
543 // Process review feedback
544 }
545 } catch (error) {
546 // A single-shot query() throws after yielding an error result,
547 // so the second query below still runs.
548 console.error(`Session ended with an error: ${error}`);
549 }
550
551 // Run specific tests
552 for await (const message of query({
553 prompt: "/test auth",
554 options: { maxTurns: 5 }
555 })) {
556 // Handle test results
557 }
558 ```
559
560 ```python Python theme={null}
561 import asyncio
562 from claude_agent_sdk import query, ClaudeAgentOptions
563
564
565 async def main():
566 # Run code review
567 try:
568 async for message in query(prompt="/review-pr", options=ClaudeAgentOptions(max_turns=3)):
569 # Process review feedback
570 pass
571 except Exception as error:
572 # A single-shot query() raises after yielding an error result,
573 # so the second query below still runs.
574 print(f"Session ended with an error: {error}")
575
576 # Run specific tests
577 async for message in query(prompt="/test auth", options=ClaudeAgentOptions(max_turns=5)):
578 # Handle test results
579 pass
580
581
582 asyncio.run(main())
583 ```
584</CodeGroup>
585
586<h2 id="see-also">
587 Vedere Anche
588</h2>
589
590* [Slash Commands](/it/skills) - Documentazione completa degli slash commands
591* [Subagenti nell'SDK](/it/agent-sdk/subagents) - Configurazione basata su filesystem simile per i subagenti
592* [Riferimento SDK TypeScript](/it/agent-sdk/typescript) - Documentazione API completa
593* [Panoramica SDK](/it/agent-sdk/overview) - Concetti generali dell'SDK
594* [Riferimento CLI](/it/cli-reference) - Interfaccia della riga di comando