indusagi-coding-agent 0.1.52 → 0.1.53

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.53] - Latest Release
4
+
5
+ ### Changed
6
+ - **License Switch**: Replaced the MIT `LICENSE` with a proprietary "all rights reserved" notice for IndusAGI Labs.
7
+ - **Third-Party Notice**: Added `LICENSE-THIRD-PARTY.txt` carrying the full pi-mono MIT notice for derived components.
8
+ - **README Credits**: Added a Credits section attributing IndusAGI to Varun Israni / IndusAGI Labs and acknowledging pi-mono by Mario Zechner as the upstream foundation.
9
+ - **Version Bump**: Updated package version to `0.1.53`.
10
+
3
11
  ## [0.1.52] - Latest Release
4
12
 
5
13
  ### Added
package/LICENSE CHANGED
@@ -1,21 +1,8 @@
1
- MIT License
1
+ Copyright (c) 2026 Varun Israni / IndusAGI Labs
2
+ All rights reserved.
2
3
 
3
- Copyright (c) 2026 Varun Israni
4
+ This software is proprietary and closed-source.
5
+ Unauthorized copying, modification, distribution, or use is strictly prohibited.
4
6
 
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.
7
+ This package includes third-party open-source components.
8
+ See LICENSE-THIRD-PARTY.txt for details.
@@ -0,0 +1,30 @@
1
+ This package, IndusAGI, contains modifications and original work by:
2
+
3
+ Copyright (c) 2026 Varun Israni / IndusAGI
4
+ All modifications, Indian-context extensions, and additional features.
5
+
6
+ ---
7
+
8
+ It also contains code derived from pi-mono:
9
+
10
+ Copyright (c) Mario Zechner
11
+ https://github.com/badlogic/pi-mono
12
+ Licensed under the MIT License:
13
+
14
+ Permission is hereby granted, free of charge, to any person obtaining a copy
15
+ of this software and associated documentation files (the "Software"), to deal
16
+ in the Software without restriction, including without limitation the rights
17
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the Software is
19
+ furnished to do so, subject to the following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be included in all
22
+ copies or substantial portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHER LIABILITY,
29
+ ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE, OR IN CONNECTION WITH THE
30
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -70,4 +70,8 @@ Settings can be global or project-specific. See `docs/settings.md`.
70
70
 
71
71
  ## License
72
72
 
73
- MIT
73
+ See `LICENSE` and `LICENSE-THIRD-PARTY.txt`.
74
+
75
+ ## Credits
76
+
77
+ IndusAGI is built and maintained by **Varun Israni / IndusAGI Labs**, with modifications and Indian-context extensions on top of [pi-mono](https://github.com/badlogic/pi-mono) by Mario Zechner (MIT License).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indusagi-coding-agent",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "description": "Terminal-first TypeScript coding agent built on the indusagi framework package.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,8 @@
21
21
  "guides",
22
22
  "demos",
23
23
  "CHANGELOG.md",
24
- "README.md"
24
+ "README.md",
25
+ "LICENSE-THIRD-PARTY.txt"
25
26
  ],
26
27
  "engines": {
27
28
  "node": ">=20.0.0"