maistro 1.0.398 → 1.0.401
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 +13 -1
- package/dist/buildInfo.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -104,4 +104,16 @@ Questions or issues? Contact support@dreamteam-mobile.com
|
|
|
104
104
|
|
|
105
105
|
## License
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
Copyright (c) 2026 DreamTeam Mobile. All rights reserved.
|
|
108
|
+
|
|
109
|
+
Permission is granted, free of charge, to use this software for any purpose,
|
|
110
|
+
including commercial applications, subject to the following conditions:
|
|
111
|
+
|
|
112
|
+
1. You MAY use this software for personal or commercial purposes.
|
|
113
|
+
2. You MAY NOT modify, adapt, or create derivative works.
|
|
114
|
+
3. You MAY NOT redistribute, sublicense, or resell this software.
|
|
115
|
+
4. You MAY NOT remove or alter any copyright notices.
|
|
116
|
+
|
|
117
|
+
This software is provided "as is", without warranty of any kind, express or
|
|
118
|
+
implied. In no event shall the authors be liable for any claim, damages, or
|
|
119
|
+
other liability arising from the use of this software.
|
package/dist/buildInfo.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const BUILD_INFO = { version: "1.0.
|
|
1
|
+
export const BUILD_INFO = { version: "1.0.401", time: "202602030350" };
|
|
2
2
|
//# sourceMappingURL=buildInfo.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maistro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.401",
|
|
4
4
|
"description": "AI-powered CLI that breaks down complex projects into tasks and executes them automatically via Claude Code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test:watch": "vitest --exclude 'src/pty-*.test.ts' --exclude 'src/smoke.test.ts' --exclude 'src/run-execution.test.ts'",
|
|
29
29
|
"test:pty": "vitest run src/pty-*.test.ts --test-timeout 60000",
|
|
30
30
|
"test:smoke": "vitest run src/smoke.test.ts",
|
|
31
|
-
"test:coverage": "vitest run --exclude 'src/pty-*.test.ts' --exclude 'src/smoke.test.ts' --coverage",
|
|
31
|
+
"test:coverage": "vitest run --exclude 'src/pty-*.test.ts' --exclude 'src/smoke.test.ts' --exclude 'src/run-execution.test.ts' --coverage",
|
|
32
32
|
"test:coverage:all": "vitest run --coverage",
|
|
33
33
|
"setup": "git pull 2>/dev/null; npm install && npm run build && npm link"
|
|
34
34
|
},
|