@heetmehta18/autodev 0.3.1 → 0.4.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/.turbo/turbo-test.log +23 -18
- package/README.md +24 -6
- package/bin/index.js +1 -1
- package/package.json +1 -1
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @heetmehta18/autodev@0.
|
|
3
|
+
> @heetmehta18/autodev@0.3.2 test /media/heet18/Futuristic1/Heet/Github/Autodev/packages/npm-cli
|
|
4
4
|
> node bin/index.js --help
|
|
5
5
|
|
|
6
6
|
|
|
@@ -19,23 +19,28 @@ Usage:
|
|
|
19
19
|
autodev [command]
|
|
20
20
|
|
|
21
21
|
Available Commands:
|
|
22
|
-
audit
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
22
|
+
audit Audit repository dependencies for security vulnerabilities
|
|
23
|
+
benchmark Display AI token and efficiency benchmarks for AutoDev projects
|
|
24
|
+
clean Remove AutoDev cache and temp files
|
|
25
|
+
clone Clone a Git repository, scan it, and install all missing dependencies
|
|
26
|
+
completion Generate the autocompletion script for the specified shell
|
|
27
|
+
containerize Generate DevContainer and VSCode workspace configuration
|
|
28
|
+
create Create a new pre-configured boilerplate project
|
|
29
|
+
doctor Check the health and security of your codebase
|
|
30
|
+
export Export environment as a reproducible JSON lockfile
|
|
31
|
+
github Scan all public repositories for a GitHub user
|
|
32
|
+
help Help about any command
|
|
33
|
+
install Install a specific package by ID
|
|
34
|
+
mcp Model Context Protocol (MCP) server integration
|
|
35
|
+
migrate Migrate legacy JSON configuration files to the new YAML schema
|
|
36
|
+
profile Install a pre-defined developer profile (role-based tool set)
|
|
37
|
+
prompts Manage and view captured prompt history
|
|
38
|
+
report Generate a detailed environment report (HTML, JSON, Markdown)
|
|
39
|
+
scan Scan a repository for languages, frameworks, and dependencies
|
|
40
|
+
setup Detect and install all missing runtimes and dependencies
|
|
41
|
+
skills Generate a personalized learning roadmap based on detected technologies
|
|
42
|
+
ui Start the local AutoDev interactive web dashboard
|
|
43
|
+
update Check for and apply updates to managed packages
|
|
39
44
|
|
|
40
45
|
Flags:
|
|
41
46
|
--config string config file (default: .autodev.yaml)
|
package/README.md
CHANGED
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
## 🚀 Key Features
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
- 🔍 **Polyglot Codebase Scanner**: Detects 30+ languages, frameworks, package managers, and DevOps infrastructure.
|
|
13
|
+
- 🛡️ **Supply-Chain Security Audits**: Queries the OSV (Open Source Vulnerabilities) database to find safety risks in your dependencies.
|
|
14
|
+
- ⚙️ **Ballast Installer**: Automatically extracts and links compilers/runtimes (like Node.js, Go, Python, Rust) to your path.
|
|
15
|
+
- 📦 **Monorepo / Multi-project Scanner**: Groups and maps nested modules dynamically within a monorepo structure.
|
|
16
|
+
- 🛰️ **Cloud IDE Scaffolding**: Runs `autodev containerize` to generate `.devcontainer.json` environment setups.
|
|
17
|
+
- 🔄 **Config Migrator**: Seamlessly upgrades legacy profile configurations to standard YAML.
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
@@ -23,19 +23,25 @@
|
|
|
23
23
|
You can run AutoDev on the fly using Node's package executor, or install it globally.
|
|
24
24
|
|
|
25
25
|
### 1. Run Instantly (No Installation)
|
|
26
|
+
|
|
26
27
|
Scan your workspace and bootstrap dependencies without installing anything permanently:
|
|
28
|
+
|
|
27
29
|
```bash
|
|
28
30
|
npx @heetmehta18/autodev setup
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
### 2. Install Globally
|
|
34
|
+
|
|
32
35
|
Install the package globally for instant local terminal access:
|
|
36
|
+
|
|
33
37
|
```bash
|
|
34
38
|
npm install -g @heetmehta18/autodev
|
|
35
39
|
```
|
|
36
40
|
|
|
37
41
|
### 3. Usage
|
|
42
|
+
|
|
38
43
|
Verify that the CLI is installed and ready:
|
|
44
|
+
|
|
39
45
|
```bash
|
|
40
46
|
autodev --help
|
|
41
47
|
```
|
|
@@ -45,39 +51,51 @@ autodev --help
|
|
|
45
51
|
## 🛠️ Main CLI Commands
|
|
46
52
|
|
|
47
53
|
### 🔍 scan
|
|
54
|
+
|
|
48
55
|
Analyzes your current working directory for configuration markers, lockfiles, and monorepo folders:
|
|
56
|
+
|
|
49
57
|
```bash
|
|
50
58
|
autodev scan
|
|
51
59
|
```
|
|
52
60
|
|
|
53
61
|
### 📦 setup
|
|
62
|
+
|
|
54
63
|
Scans the project and aligns your local development environment by downloading missing runtimes:
|
|
64
|
+
|
|
55
65
|
```bash
|
|
56
66
|
autodev setup
|
|
57
67
|
autodev setup --yes # Skip confirmation prompts
|
|
58
68
|
```
|
|
59
69
|
|
|
60
70
|
### 🩺 doctor
|
|
71
|
+
|
|
61
72
|
Inspects your system configuration, checks tool versions against the `.autodev.lock.json` lockfile, and scans for exposed secrets (like AWS keys or GitHub tokens):
|
|
73
|
+
|
|
62
74
|
```bash
|
|
63
75
|
autodev doctor
|
|
64
76
|
autodev doctor --fix # Restore lockfile mismatches automatically
|
|
65
77
|
```
|
|
66
78
|
|
|
67
79
|
### 🛡️ audit
|
|
80
|
+
|
|
68
81
|
Scans lockfiles and dependencies for known supply-chain vulnerabilities using the OSV database:
|
|
82
|
+
|
|
69
83
|
```bash
|
|
70
84
|
autodev audit
|
|
71
85
|
```
|
|
72
86
|
|
|
73
87
|
### 💻 containerize
|
|
88
|
+
|
|
74
89
|
Generates dev container setup configurations (`.devcontainer.json`) and VSCode plugin recommendations based on the detected stack:
|
|
90
|
+
|
|
75
91
|
```bash
|
|
76
92
|
autodev containerize
|
|
77
93
|
```
|
|
78
94
|
|
|
79
95
|
### 🔄 migrate
|
|
96
|
+
|
|
80
97
|
Upgrades legacy `.json` profile configs to the standard `.autodev.yaml` schema:
|
|
98
|
+
|
|
81
99
|
```bash
|
|
82
100
|
autodev migrate
|
|
83
101
|
```
|
package/bin/index.js
CHANGED
|
@@ -154,7 +154,7 @@ async function downloadBinary() {
|
|
|
154
154
|
console.log(`[autodev] Downloading from: ${url}`);
|
|
155
155
|
await download(url, tempFile);
|
|
156
156
|
} catch (err) {
|
|
157
|
-
const stableFallback = "v0.3.
|
|
157
|
+
const stableFallback = "v0.3.2";
|
|
158
158
|
if (version !== stableFallback) {
|
|
159
159
|
console.warn(
|
|
160
160
|
`\n[autodev] Failed to download version ${version}: ${err.message}`,
|