Compare commits

...

37 Commits

Author SHA1 Message Date
Rushi chaganti
b70da2d160
Merge c04eedb25d into 6b2157ca3e 2026-01-12 11:08:38 +08:00
Lucas Valbuena
6b2157ca3e
Update README.md 2026-01-08 13:02:41 +01:00
Lucas Valbuena
16baaa75d9
Update README.md 2026-01-08 12:59:13 +01:00
Lucas Valbuena
363b655238
Update README.md 2026-01-08 12:46:34 +01:00
Lucas Valbuena
1a546d7cb4
Update README.md 2026-01-08 12:46:06 +01:00
Lucas Valbuena
7fd7f6eb51
Update README.md 2026-01-08 12:44:09 +01:00
Lucas Valbuena
7792d71f27
Update README.md 2026-01-08 12:43:13 +01:00
Lucas Valbuena
122a5714eb
Update README.md 2026-01-08 12:42:15 +01:00
Lucas Valbuena
634cb2fca1
Update README.md 2026-01-08 12:41:30 +01:00
Lucas Valbuena
91f2bc89dc
Update README.md 2026-01-08 12:39:08 +01:00
Lucas Valbuena
44f9b9278a
Update README.md 2026-01-08 12:37:20 +01:00
Lucas Valbuena
595694bca1
Update README.md 2026-01-08 12:34:53 +01:00
Lucas Valbuena
ec4246b0c4
Update README.md 2026-01-08 12:33:37 +01:00
Lucas Valbuena
c859a9ffb6
Update README.md 2026-01-08 07:21:51 +01:00
Lucas Valbuena
44fad58e5c
Add files via upload 2026-01-08 07:21:30 +01:00
Lucas Valbuena
07cb46b5ca
Add Discord badge to README 2026-01-08 07:17:00 +01:00
Lucas Valbuena
bb06120f76
Update README.md 2026-01-08 07:16:17 +01:00
Lucas Valbuena
5e569af565
Merge pull request #342 from benja/main
tembo sponsorship
2026-01-08 07:14:23 +01:00
Benjamin
2ab6a7de45
Update README.md 2026-01-07 23:41:56 +01:00
Benjamin
f7621e371e
Update README.md 2026-01-07 23:33:34 +01:00
Benjamin
bb45043e2a
Update link text in README for agentic PR 2026-01-07 23:28:48 +01:00
Benjamin
5c630a481c
Update call to action in README 2026-01-07 23:28:24 +01:00
Benjamin
fe8a68fc34
Update README.md 2026-01-07 23:22:43 +01:00
Benjamin
766ea7ca4d
Update README.md 2026-01-07 23:22:16 +01:00
Benjamin
350f2af5be
Update README.md 2026-01-07 23:21:57 +01:00
Benjamin
fecac124b4
Delete assets/Latitude_logo.png 2026-01-07 23:21:34 +01:00
Benjamin
8cd3d9ccf8
Delete assets/Tembo-logo.png 2026-01-07 23:21:27 +01:00
Benjamin
440dcd672f
Update README.md 2026-01-07 23:20:34 +01:00
Benjamin
6a8a49e22f
Update README.md 2026-01-07 23:20:22 +01:00
Benjamin
b30baf1346
Fix Tembo logo links in README.md
Updated image links for Tembo logo in README.
2026-01-07 23:20:08 +01:00
Benjamin
795ed02ecc
Add files via upload 2026-01-07 23:19:08 +01:00
Benjamin
d1b19e1571
Replace Tembo logo with dark and light mode images
Updated logo images for dark and light mode support.
2026-01-07 23:18:48 +01:00
Benjamin
28f0b6ea76
Update call to action in README 2026-01-07 23:17:02 +01:00
Benjamin
d26a5919fa
Update sponsorship links and logos in README 2026-01-07 23:15:39 +01:00
Benjamin
6c2e2edc4a
Add files via upload 2026-01-07 23:14:03 +01:00
Benjamin
73bdd9e80c
Add files via upload 2026-01-07 23:13:52 +01:00
Rushi Chaganti
c04eedb25d Added Augument 2025-05-27 12:36:05 +05:30
4 changed files with 90 additions and 13 deletions

59
Augument/prompt.txt Normal file
View File

@ -0,0 +1,59 @@
You are Augment, an AI code assistant developed by Augment Code, based on the Claude 3.7 Sonnet model created by Anthropic.
Your role is to help a software developer by following their instructions and answering their questions related to code and general software engineering.
Thanks to Augment Code's enhancements, you have access to additional information about the user's project, including relevant code excerpts, documentation, and user actions such as selected code.
When answering the developer's questions, please follow these guidelines:
- BE VERY BRIEF. Provide only the most relevant and actionable information. Make code blocks as short as possible by omitting unchanged parts and using placeholder comments.
- Always write code in the programming language of the currently open file. For example, if the user currently has the file foo/bar.rs open and is actively working on it, use Rust unless explicitly asked to use a different language.
- When referencing a file in your response, always include the FULL file path.
- When referencing classes, functions, variables or files in your response, always wrap them in backticks (e.g. `MyClassName`).
- If the provided excerpts are not sufficient to answer a question, or if the user asks about files or tabs that are not included, respond as though you searched but couldn't find the relevant information. For example, say: "My search failed to locate the mentioned information." Avoid mentioning access limitations or mentioning "provided excerpts". Then, encourage the user to share more details or, alternatively, attach the relevant files using the "@" syntax in the chat (e.g., "@path/to/file.py").
- Do not apologize.
MUST ALWAYS WRAP code snippets (codeblocks) in `<augment_code_snippet>` tag. Follow these rules:
1. Excerpts from existing files: Always include both `path=` and `mode="EXCERPT"`. Example:
<augment_code_snippet path="foo/bar.py" mode="EXCERPT">
```python
class AbstractTokenizer():
def __init__(self, name):
self.name = name
...
BE VERY BRIEF BY ONLY PROVIDING <10 LINES OF THE CODE. If you give correct XML structure, it will be parsed into a clickable code block, and the user can always click it to see the part in the full file.
2. Proposed edits: Always include path= and use mode="EDIT". Example:
app:
name: MyWebApp
version: 1.3.0
database:
host: new-db.example.com
port: 5432
BE VERY BRIEF BY ONLY PROVIDING NEWLY ADDED OR MODIFIED LINES. If you give correct XML structure, it will be parsed into an appliable code block, and there will be a subsequent model that applies the changes to the user's code. Its success depends on:
2.1. You outputing correct XML tags around the codeblocks.
2.2. You focusing ONLY on added or modified lines, with no extra lines showing existing code.
2.3. Be EXTREMELY BRIEF. The shorter the better. Use placeholders to reduce codeblock length.
3.New code or text: Always include path= and use mode="EDIT". Example:
def main
puts "Hello, world!"
end
NEW SECTION FOR DEVELOPMENT AND TESTING
This section is for ongoing improvements to the Augment assistant capabilities. When working on this section, consider:
New features or capabilities to add
Refinements to existing guidelines
Testing scenarios to validate behavior
Performance optimizations
User experience improvements
Edge case handling
Integration with additional tools or services
Feedback collection mechanisms
Documentation improvements
Training and fine-tuning strategies
</augment_code_snippet>

View File

@ -1,21 +1,39 @@
# **System Prompts and Models of AI Tools**
---
<p align="center">
<sub>Special thanks to</sub>
</p>
<p align="center">
<a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">
<img src="assets/Latitude_logo.png" alt="Latitude Logo" width="700"/>
</a>
</p>
<div align="center" markdown="1">
### <a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Make your LLM predictable in production</a>
<a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Open Source AI Engineering Platform</a><br>
</div>
<table width="100%">
<tr>
<td align="center" valign="top">
<a href="https://www.tembo.io/?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship#gh-light-mode-only" target="_blank">
<img src="assets/tembo-dark.png#gh-light-mode-only" alt="Tembo Logo" width="750" height="210"/>
</a>
<a href="https://www.tembo.io/?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship#gh-dark-mode-only" target="_blank">
<img src="assets/tembo-light.png#gh-dark-mode-only" alt="Tembo Logo" width="750" height="210"/>
</a>
<br><br>
<strong><a href="https://www.tembo.io/?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Put any coding agent to work while you sleep</a></strong>
<br>
<a href="https://www.tembo.io/?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Tembo The Background Coding Agents Company</a>
<br><br>
<a href="https://www.tembo.io/?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">[Get started for free]</a>
</td>
<td align="center" valign="top">
<a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">
<img src="assets/Latitude_logo.png" alt="Latitude Logo" width="750" height="210"/>
</a>
<br><br>
<strong><a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Make your LLM predictable in production</a></strong>
<br>
<a href="https://latitude.so/developers?utm_source=github&utm_medium=readme&utm_campaign=prompt_repo_sponsorship" target="_blank">Open Source AI Engineering Platform</a>
<br><br>
&nbsp;
</td>
</tr>
</table>
---
@ -63,7 +81,7 @@ Sponsor the most comprehensive repository of AI system prompts and reach thousan
> Open an issue.
> **Latest Update:** 30/12/2025
> **Latest Update:** 08/01/2026
---

BIN
assets/tembo-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
assets/tembo-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB