app
Build a complete application from a short description. Asks the developer clarifying questions, generates data requirements, launches discovery agents, and builds a dashboard. Use when the developer describes what they want to build in plain language — "compare tickets", "track prices", "search j...
Install this skill
or
80/100
Security score
The app skill was audited on Jul 29, 2026 and we found 4 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
medium line 122
Curl to non-GitHub URL
SourceSKILL.md
| 120 | **3b. Register and test every route** through the API proxy: |
| 121 | ```bash |
| 122 | curl -s http://localhost:3001/api/<domain>/<route> | head -50 |
| 123 | ``` |
| 124 |
medium line 129
Curl to non-GitHub URL
SourceSKILL.md
| 127 | mkdir -p tmp/cache/<domain> |
| 128 | # Search/list results |
| 129 | curl -s "http://localhost:3001/api/<domain>/search?q=example" > tmp/cache/<domain>/search.json |
| 130 | # Detail page |
| 131 | curl -s "http://localhost:3001/api/<domain>/detail/123" > tmp/cache/<domain>/detail-123.json |
medium line 131
Curl to non-GitHub URL
SourceSKILL.md
| 129 | curl -s "http://localhost:3001/api/<domain>/search?q=example" > tmp/cache/<domain>/search.json |
| 130 | # Detail page |
| 131 | curl -s "http://localhost:3001/api/<domain>/detail/123" > tmp/cache/<domain>/detail-123.json |
| 132 | # Pagination page 2 |
| 133 | curl -s "http://localhost:3001/api/<domain>/search?q=example&page=2" > tmp/cache/<domain>/search-page2.json |
medium line 133
Curl to non-GitHub URL
SourceSKILL.md
| 131 | curl -s "http://localhost:3001/api/<domain>/detail/123" > tmp/cache/<domain>/detail-123.json |
| 132 | # Pagination page 2 |
| 133 | curl -s "http://localhost:3001/api/<domain>/search?q=example&page=2" > tmp/cache/<domain>/search-page2.json |
| 134 | # Edge cases: empty results, single result, max results |
| 135 | ``` |
Scanned on Jul 29, 2026
View Security Dashboard