@aslomon/effectum 0.4.0 → 0.5.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/bin/install.js +46 -7
- package/bin/lib/cli-tools.js +201 -118
- package/bin/lib/tool-loader.js +243 -0
- package/bin/lib/ui.js +138 -75
- package/package.json +1 -1
- package/system/tools/_schema.json +112 -0
- package/system/tools/foundation.json +56 -0
- package/system/tools/generic.json +20 -0
- package/system/tools/nextjs-supabase.json +56 -0
- package/system/tools/python-fastapi.json +47 -0
- package/system/tools/swift-ios.json +33 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Generic Tools",
|
|
3
|
+
"description": "Minimal optional tools for generic or undetected stacks.",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"key": "jq",
|
|
7
|
+
"bin": "jq",
|
|
8
|
+
"displayName": "jq",
|
|
9
|
+
"category": "optional",
|
|
10
|
+
"why": "JSON processing on the command line",
|
|
11
|
+
"priority": 5,
|
|
12
|
+
"autoInstall": true,
|
|
13
|
+
"install": {
|
|
14
|
+
"darwin": "brew install jq",
|
|
15
|
+
"linux": "sudo apt install -y jq"
|
|
16
|
+
},
|
|
17
|
+
"check": "jq --version"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Next.js + Supabase Tools",
|
|
3
|
+
"description": "Tools for Next.js with Supabase stack projects.",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"key": "pnpm",
|
|
7
|
+
"bin": "pnpm",
|
|
8
|
+
"displayName": "pnpm",
|
|
9
|
+
"category": "stack",
|
|
10
|
+
"why": "Fast, disk-efficient package manager for Node.js",
|
|
11
|
+
"priority": 1,
|
|
12
|
+
"autoInstall": true,
|
|
13
|
+
"install": {
|
|
14
|
+
"all": "npm i -g pnpm"
|
|
15
|
+
},
|
|
16
|
+
"check": "pnpm --version"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"key": "supabase",
|
|
20
|
+
"bin": "supabase",
|
|
21
|
+
"displayName": "Supabase CLI",
|
|
22
|
+
"category": "stack",
|
|
23
|
+
"why": "Database migrations, type generation, edge functions",
|
|
24
|
+
"priority": 2,
|
|
25
|
+
"autoInstall": true,
|
|
26
|
+
"install": {
|
|
27
|
+
"darwin": "brew install supabase/tap/supabase",
|
|
28
|
+
"linux": "npm i -g supabase"
|
|
29
|
+
},
|
|
30
|
+
"check": "supabase --version",
|
|
31
|
+
"auth": {
|
|
32
|
+
"check": "supabase projects list 2>&1 | head -1",
|
|
33
|
+
"setup": "supabase login",
|
|
34
|
+
"url": "https://supabase.com/dashboard/account/tokens"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"key": "vercel",
|
|
39
|
+
"bin": "vercel",
|
|
40
|
+
"displayName": "Vercel CLI",
|
|
41
|
+
"category": "stack",
|
|
42
|
+
"why": "Deployment to Vercel",
|
|
43
|
+
"priority": 3,
|
|
44
|
+
"autoInstall": true,
|
|
45
|
+
"install": {
|
|
46
|
+
"all": "npm i -g vercel"
|
|
47
|
+
},
|
|
48
|
+
"check": "vercel --version",
|
|
49
|
+
"auth": {
|
|
50
|
+
"check": "vercel whoami",
|
|
51
|
+
"setup": "vercel login",
|
|
52
|
+
"url": "https://vercel.com/account/tokens"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Python + FastAPI Tools",
|
|
3
|
+
"description": "Tools for Python with FastAPI stack projects.",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"key": "uv",
|
|
7
|
+
"bin": "uv",
|
|
8
|
+
"displayName": "uv",
|
|
9
|
+
"category": "stack",
|
|
10
|
+
"why": "Fast Python package management",
|
|
11
|
+
"priority": 1,
|
|
12
|
+
"autoInstall": true,
|
|
13
|
+
"install": {
|
|
14
|
+
"all": "curl -LsSf https://astral.sh/uv/install.sh | sh"
|
|
15
|
+
},
|
|
16
|
+
"check": "uv --version"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"key": "ruff",
|
|
20
|
+
"bin": "ruff",
|
|
21
|
+
"displayName": "Ruff",
|
|
22
|
+
"category": "stack",
|
|
23
|
+
"why": "Python linting and formatting",
|
|
24
|
+
"priority": 2,
|
|
25
|
+
"autoInstall": true,
|
|
26
|
+
"install": {
|
|
27
|
+
"all": "pip install ruff"
|
|
28
|
+
},
|
|
29
|
+
"check": "ruff --version"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"key": "docker",
|
|
33
|
+
"bin": "docker",
|
|
34
|
+
"displayName": "Docker",
|
|
35
|
+
"category": "stack",
|
|
36
|
+
"why": "Container management, local dev environment",
|
|
37
|
+
"priority": 5,
|
|
38
|
+
"autoInstall": false,
|
|
39
|
+
"install": {
|
|
40
|
+
"darwin": "brew install --cask docker",
|
|
41
|
+
"linux": "sudo apt install -y docker.io"
|
|
42
|
+
},
|
|
43
|
+
"check": "docker --version",
|
|
44
|
+
"manualUrl": "https://docs.docker.com/get-docker/"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Swift / iOS Tools",
|
|
3
|
+
"description": "Tools for Swift and iOS/macOS development.",
|
|
4
|
+
"tools": [
|
|
5
|
+
{
|
|
6
|
+
"key": "xcode-select",
|
|
7
|
+
"bin": "xcodebuild",
|
|
8
|
+
"displayName": "Xcode Command Line Tools",
|
|
9
|
+
"category": "stack",
|
|
10
|
+
"why": "iOS/macOS build toolchain",
|
|
11
|
+
"priority": 0,
|
|
12
|
+
"autoInstall": false,
|
|
13
|
+
"install": {
|
|
14
|
+
"darwin": "xcode-select --install"
|
|
15
|
+
},
|
|
16
|
+
"check": "xcodebuild -version",
|
|
17
|
+
"manualUrl": "https://developer.apple.com/xcode/"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"key": "swift-format",
|
|
21
|
+
"bin": "swift-format",
|
|
22
|
+
"displayName": "swift-format",
|
|
23
|
+
"category": "stack",
|
|
24
|
+
"why": "Swift code formatting",
|
|
25
|
+
"priority": 2,
|
|
26
|
+
"autoInstall": true,
|
|
27
|
+
"install": {
|
|
28
|
+
"darwin": "brew install swift-format"
|
|
29
|
+
},
|
|
30
|
+
"check": "swift-format --version"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|