aid-installer 0.7.5 → 1.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/README.md +4 -2
- package/VERSION +1 -1
- package/bin/aid +2445 -194
- package/bin/aid.ps1 +2361 -106
- package/dashboard/home.html +3321 -0
- package/dashboard/index.html +987 -0
- package/dashboard/reader/__init__.py +56 -0
- package/dashboard/reader/derivation.py +892 -0
- package/dashboard/reader/locator.py +228 -0
- package/dashboard/reader/models.py +408 -0
- package/dashboard/reader/parsers.py +2105 -0
- package/dashboard/reader/reader.py +1196 -0
- package/dashboard/server/__init__.py +3 -0
- package/dashboard/server/reader.mjs +3699 -0
- package/dashboard/server/server.mjs +780 -0
- package/dashboard/server/server.py +1004 -0
- package/lib/AidInstallCore.psm1 +446 -43
- package/lib/aid-install-core.sh +405 -48
- package/package.json +6 -3
- package/scripts/postinstall.js +106 -0
- package/scripts/vendor.js +98 -0
package/README.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# aid-installer
|
|
2
2
|
|
|
3
3
|
Install [AID](https://github.com/AndreVianna/aid-methodology) (Agentic Iterative Development)
|
|
4
|
-
into your repository.
|
|
4
|
+
into your repository. Current release: **v1.1.0**.
|
|
5
5
|
|
|
6
6
|
`npm i -g aid-installer` (or `npx aid-installer ...`) puts an `aid` command on your PATH.
|
|
7
7
|
Then, inside a project:
|
|
8
8
|
|
|
9
9
|
aid add claude-code # add tool(s): claude-code, codex, cursor, copilot-cli, antigravity
|
|
10
10
|
aid status # show installed tools
|
|
11
|
-
aid update [tool|self] # update to latest
|
|
11
|
+
aid update [tool|self] # update to latest; "self" migrates existing projects to the new layout
|
|
12
|
+
aid projects # list / add / remove the projects AID tracks
|
|
13
|
+
aid dashboard start node|python # open a local web view of all tracked projects
|
|
12
14
|
aid remove [tool|self] # remove
|
|
13
15
|
|
|
14
16
|
This package is a thin wrapper that spawns the cross-platform AID CLI (bash / PowerShell).
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1.1.0
|