You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -75,14 +75,15 @@ An **unofficial** curated list of resources for Amp, an AI coding agent by Sourc
75
75
-[SageMap](https://sagemap.netlify.app/) - Interactive belief mapping tool that transforms journal entries into visual networks revealing contradictions and connections in your thoughts.
76
76
-[Jazzberry AI](https://jazzberry.ai/) - The AI Bug Finder.
77
77
-[0.email](https://0.email/) - Zero is an AI-native email client that manages your inbox.
78
-
-[VT Chat](https://vtchat.io.vn/) - VT Chat is a minimal, privacy-first AI chat application with advanced AI capabilities.
78
+
-[VT Chat](https://vtchat.io.vn/) - A minimal, privacy-first AI chat application with advanced AI capabilities.
79
79
-[Sniff](https://github.com/conikeec/sniff) - Misalignment detection in Vibe Coding loops.
80
80
81
81
### Amp Integrations
82
82
83
83
-[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.
84
84
-[VibeKanban](https://www.vibekanban.com/) - CLI tool for managing your Kanban boards.
85
85
-[Conductor](https://x.com/charliebholtz/status/1963345520543633742) - Run a bunch of Amps in parallel.
86
+
-[amp.nvim](https://github.com/sourcegraph/amp.nvim) - Official Neovim plugin for Amp coding agent.
86
87
-[nvim-amp](https://github.com/aliou/nvim-amp) - Neovim plugin providing syntax highlighting and support for Amp permission and agent files.
87
88
88
89
### Amp CLI
@@ -94,25 +95,25 @@ Amp CLI can be seamlessly integrated with other command-line tools to enhance yo
94
95
##### ps aux
95
96
96
97
```bash
97
-
ps aux > processes.txt | amp -x "identify processes consuming the most resources in processes.txt"
98
+
ps aux > processes.txt | amp -x 'identify processes consuming the most resources in processes.txt'
98
99
```
99
100
100
101
##### whois
101
102
102
103
```bash
103
-
whois example.com | amp -x "organize and condense this whois information"
104
+
whois example.com | amp -x 'organize and condense this whois information'
104
105
```
105
106
106
107
##### curl
107
108
108
109
```bash
109
-
curl -Is https://github.com > headers.txt && amp -x "analyze the http headers in headers.txt and determine the tech stack"
110
+
curl -Is https://github.com > headers.txt && amp -x 'analyze the http headers in headers.txt and determine the tech stack'
110
111
```
111
112
112
113
##### npm
113
114
114
115
```bash
115
-
npm list --json | amp -x "identify outdated or vulnerable dependencies"
116
+
npm list --json | amp -x 'identify outdated or vulnerable dependencies'
0 commit comments