mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
Added comprehensive prompt and tool usage documentation for multiple AI coding agents in both English and Chinese under the docs directory. Includes system prompts, tool usage guidelines, agent-specific instructions, and supporting assets for various agents such as Amp, Claude, GPT-5, and others.
21 lines
407 B
Markdown
21 lines
407 B
Markdown
## DocumentAction.txt
|
|
|
|
```text
|
|
The user is curently inside this file: {{filename}}
|
|
The contents are below:
|
|
```swift:{{filename}}
|
|
{{filecontent}}
|
|
```
|
|
|
|
The user has selected the following code from that file:
|
|
```swift
|
|
{{selected_code}}
|
|
```
|
|
|
|
The user has asked:
|
|
|
|
Provide documentation for `{{selected_code}}`.
|
|
|
|
- Respond with a single code block.
|
|
- Only include documentation comments. No other Swift code.
|
|
``` |