From 6e556c8f2d4bbac6f0ead744c13f9956dab3e242 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Tue, 30 Sep 2025 14:03:19 -0700 Subject: [PATCH 1/4] Add amp.nvim and nvim-amp to readme https://ampcode.com/threads/T-3a08fe74-b63c-47ba-bcf6-28c47aba15cd Co-authored-by: Amp --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 0406e5f..c443891 100644 --- a/readme.md +++ b/readme.md @@ -83,6 +83,7 @@ An **unofficial** curated list of resources for Amp, an AI coding agent by Sourc - [Amp Dash X](https://www.raycast.com/jdorfman/sourcegraph-amp-dash-x) - A Raycast extension for organizing and executing Amp Code prompts with the `-x` (execute) flag. - [VibeKanban](https://www.vibekanban.com/) - CLI tool for managing your Kanban boards. - [Conductor](https://x.com/charliebholtz/status/1963345520543633742) - Run a bunch of Amps in parallel. +- [amp.nvim](https://github.com/sourcegraph/amp.nvim) - Official Neovim plugin for Amp coding agent. - [nvim-amp](https://github.com/aliou/nvim-amp) - Neovim plugin providing syntax highlighting and support for Amp permission and agent files. ### Amp CLI From 17283fd6343dfa70168313fefdf2342a0ee43424 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Tue, 30 Sep 2025 14:06:53 -0700 Subject: [PATCH 2/4] Add amp.nvim to Amp Integrations https://ampcode.com/threads/T-3a08fe74-b63c-47ba-bcf6-28c47aba15cd Co-authored-by: Amp --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c443891..044e48c 100644 --- a/readme.md +++ b/readme.md @@ -75,7 +75,7 @@ An **unofficial** curated list of resources for Amp, an AI coding agent by Sourc - [SageMap](https://sagemap.netlify.app/) - Interactive belief mapping tool that transforms journal entries into visual networks revealing contradictions and connections in your thoughts. - [Jazzberry AI](https://jazzberry.ai/) - The AI Bug Finder. - [0.email](https://0.email/) - Zero is an AI-native email client that manages your inbox. -- [VT Chat](https://vtchat.io.vn/) - VT Chat is a minimal, privacy-first AI chat application with advanced AI capabilities. +- [VT Chat](https://vtchat.io.vn/) - A minimal, privacy-first AI chat application with advanced AI capabilities. - [Sniff](https://github.com/conikeec/sniff) - Misalignment detection in Vibe Coding loops. ### Amp Integrations From c0dc0c24a1c33df4528af285b73aa1899796c938 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Tue, 30 Sep 2025 14:14:11 -0700 Subject: [PATCH 3/4] Add amp.nvim to integrations https://ampcode.com/threads/T-3a08fe74-b63c-47ba-bcf6-28c47aba15cd Co-authored-by: Amp From d180e9223c934caf26c40ee5f358c21fb4a6e5db Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Tue, 30 Sep 2025 14:15:27 -0700 Subject: [PATCH 4/4] Fix markdown quotes and add amp.nvim https://ampcode.com/threads/T-3a08fe74-b63c-47ba-bcf6-28c47aba15cd Co-authored-by: Amp --- readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index 044e48c..08b44dc 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ -
+
@@ -15,7 +15,7 @@ An **unofficial** curated list of resources for Amp, an AI coding agent by Sourc - + @@ -95,25 +95,25 @@ Amp CLI can be seamlessly integrated with other command-line tools to enhance yo ##### ps aux ```bash -ps aux > processes.txt | amp -x "identify processes consuming the most resources in processes.txt" +ps aux > processes.txt | amp -x 'identify processes consuming the most resources in processes.txt' ``` ##### whois ```bash -whois example.com | amp -x "organize and condense this whois information" +whois example.com | amp -x 'organize and condense this whois information' ``` ##### curl ```bash -curl -Is https://github.com > headers.txt && amp -x "analyze the http headers in headers.txt and determine the tech stack" +curl -Is https://github.com > headers.txt && amp -x 'analyze the http headers in headers.txt and determine the tech stack' ``` ##### npm ```bash -npm list --json | amp -x "identify outdated or vulnerable dependencies" +npm list --json | amp -x 'identify outdated or vulnerable dependencies' ``` ### Official Amp Links