devwing 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +72 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2066 -0
- package/dist/index.js.map +1 -0
- package/package.json +88 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 DevWing.ai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# DevWing CLI
|
|
2
|
+
|
|
3
|
+
> Your AI Wingman in the Terminal
|
|
4
|
+
|
|
5
|
+
The official command-line interface for DevWing.ai - an AI-powered engineering assistant designed for software engineers, DevOps engineers, and security professionals.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @devwing/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Authenticate with your DevWing account
|
|
17
|
+
devwing login
|
|
18
|
+
|
|
19
|
+
# Ask DevWing anything
|
|
20
|
+
devwing "fix the auth bug"
|
|
21
|
+
|
|
22
|
+
# Run security scan
|
|
23
|
+
devwing scan
|
|
24
|
+
|
|
25
|
+
# Code review
|
|
26
|
+
devwing review
|
|
27
|
+
|
|
28
|
+
# Explain code
|
|
29
|
+
devwing explain src/auth/middleware.js
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Features
|
|
33
|
+
|
|
34
|
+
- **Context-Aware**: Automatically reads your codebase, git history, and project structure
|
|
35
|
+
- **Terminal-Native**: Works everywhere you have a terminal
|
|
36
|
+
- **Team Intelligence**: Shared workspace context and project memory
|
|
37
|
+
- **Specialized Models**: Domain-specific AI models for frontend, backend, security, and DevOps
|
|
38
|
+
- **Privacy-First**: API keys stored securely in OS keychain
|
|
39
|
+
|
|
40
|
+
## Commands
|
|
41
|
+
|
|
42
|
+
| Command | Description |
|
|
43
|
+
|---------|-------------|
|
|
44
|
+
| `devwing <prompt>` | Natural language prompt |
|
|
45
|
+
| `devwing login` | Authenticate with DevWing |
|
|
46
|
+
| `devwing logout` | Clear credentials |
|
|
47
|
+
| `devwing scan` | Security vulnerability scan |
|
|
48
|
+
| `devwing review` | Code review |
|
|
49
|
+
| `devwing explain <file>` | Explain code |
|
|
50
|
+
| `devwing memory save <text>` | Save to project memory |
|
|
51
|
+
| `devwing memory show` | Show project memory |
|
|
52
|
+
| `devwing config` | Configure settings |
|
|
53
|
+
|
|
54
|
+
## Development
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Install dependencies
|
|
58
|
+
pnpm install
|
|
59
|
+
|
|
60
|
+
# Run in development mode
|
|
61
|
+
pnpm dev
|
|
62
|
+
|
|
63
|
+
# Build for production
|
|
64
|
+
pnpm build
|
|
65
|
+
|
|
66
|
+
# Link locally for testing
|
|
67
|
+
pnpm link --global
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
MIT © DevWing.ai
|
package/dist/index.d.ts
ADDED