|
17 | 17 | <a href="https://github.com/yeasy/ask/blob/main/LICENSE"><img src="https://img.shields.io/github/license/yeasy/ask?style=flat-square" alt="License"></a> |
18 | 18 | <a href="https://github.com/yeasy/ask/stargazers"><img src="https://img.shields.io/github/stars/yeasy/ask?style=flat-square" alt="Stars"></a> |
19 | 19 | <a href="https://goreportcard.com/report/github.com/yeasy/ask"><img src="https://goreportcard.com/badge/github.com/yeasy/ask?style=flat-square" alt="Go Report Card"></a> |
20 | | - <img src="https://img.shields.io/badge/Go-1.21+-00ADD8?style=flat-square&logo=go" alt="Go Version"> |
| 20 | + <img src="https://img.shields.io/badge/Go-1.24+-00ADD8?style=flat-square&logo=go" alt="Go Version"> |
21 | 21 | </p> |
22 | 22 |
|
23 | 23 | <p align="center"> |
@@ -60,7 +60,8 @@ graph LR |
60 | 60 | | **🤖 Multi-Agent** | Auto-detects and installs for **Claude** (`.claude/`), **Cursor** (`.cursor/`), **Codex** (`.codex/`), and more. | |
61 | 61 | | **⚡ Blazing Fast** | Written in Go. Parallel downloads, sparse checkouts, and zero runtime dependencies. | |
62 | 62 | | **🔌 Offline Mode** | Full offline support with `--offline`. Perfect for air-gapped or secure environments. | |
63 | | -| **🌍 Global & Local** | Manage project-specific skills (`.agent/skills`) or user-wide tools (`~/.ask/skills`). | |
| 63 | +| **🌎 Global & Local** | Manage project-specific skills (`.agent/skills`) or user-wide tools (`~/.ask/skills`). | |
| 64 | +| **🛡️ Security Guard** | Built-in security scanner checks skills for secrets, dangerous commands, and malware using entropy analysis. | |
64 | 65 |
|
65 | 66 | ## 🚀 Quick Start |
66 | 67 |
|
@@ -99,10 +100,11 @@ ask install mcp-builder@v1.0.0 |
99 | 100 |
|
100 | 101 | # Install for specific agent |
101 | 102 | ask install mcp-builder --agent claude |
| 103 | +ask install mcp-builder --agent claude cursor |
102 | 104 |
|
103 | 105 | # Security Check |
104 | 106 | ask check . |
105 | | -ask check anthropics/mcp-builder --report report.html |
| 107 | +ask check anthropics/mcp-builder -o report.html |
106 | 108 | ``` |
107 | 109 |
|
108 | 110 | ## 📋 Commands |
@@ -170,6 +172,15 @@ my-project/ |
170 | 172 | - **Cursor**: `.cursor/skills/` |
171 | 173 | - **Codex**: `.codex/skills/` |
172 | 174 |
|
| 175 | +## 🐞 Debugging |
| 176 | + |
| 177 | +To see detailed operational logs (scanning, updating, searching), set `ASK_LOG=debug`: |
| 178 | + |
| 179 | +```bash |
| 180 | +export ASK_LOG=debug |
| 181 | +ask skill install browser-use |
| 182 | +``` |
| 183 | + |
173 | 184 | ## 🤝 Contributing |
174 | 185 | Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for details. |
175 | 186 |
|
|
0 commit comments