@compilr-dev/agents-coding-ts 0.1.4 → 0.1.5

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.
Files changed (3) hide show
  1. package/LICENSE +95 -8
  2. package/README.md +4 -1
  3. package/package.json +8 -8
package/LICENSE CHANGED
@@ -1,13 +1,100 @@
1
- MIT License
1
+ Functional Source License, Version 1.1, MIT Future License
2
2
 
3
- Copyright (c) 2026 scozzola
3
+ Abbreviation: FSL-1.1-MIT
4
4
 
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:
5
+ Notice
6
+
7
+ Copyright 2026 Carmelo Scozzola
8
+
9
+ Terms and Conditions
10
+
11
+ Licensor ("We")
12
+
13
+ The party offering the Software under these Terms and Conditions.
14
+
15
+ The Software
16
+
17
+ The "Software" is each version of the software that we make available under
18
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
19
+ Conditions with the Software.
20
+
21
+ License Grant
22
+
23
+ Subject to your compliance with this License Grant and the Patents,
24
+ Redistribution and Trademark clauses below, we hereby grant you the right to
25
+ use, copy, modify, create derivative works, publicly perform, publicly display
26
+ and redistribute the Software for any Permitted Purpose identified below.
27
+
28
+ Permitted Purpose
29
+
30
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
31
+ means making the Software available to others in a commercial product or
32
+ service that:
33
+
34
+ 1. substitutes for the Software;
35
+
36
+ 2. substitutes for any other product or service we offer using the Software
37
+ that exists as of the date we make the Software available; or
38
+
39
+ 3. offers the same or substantially similar functionality as the Software.
40
+
41
+ Permitted Purposes specifically include using the Software:
42
+
43
+ 1. for your internal use and access;
44
+
45
+ 2. for non-commercial education;
46
+
47
+ 3. for non-commercial research; and
48
+
49
+ 4. in connection with professional services that you provide to a licensee
50
+ using the Software in accordance with these Terms and Conditions.
51
+
52
+ Patents
53
+
54
+ To the extent your use for a Permitted Purpose would necessarily infringe our
55
+ patents, the license grant above includes a license under our patents. If you
56
+ make a claim against any party that the Software infringes or contributes to
57
+ the infringement of any patent, then your patent license to the Software ends
58
+ immediately.
59
+
60
+ Redistribution
61
+
62
+ The Terms and Conditions apply to all copies, modifications and derivatives of
63
+ the Software.
64
+
65
+ If you redistribute any copies, modifications or derivatives of the Software,
66
+ you must include a copy of or a link to these Terms and Conditions and not
67
+ remove any copyright notices provided in or with the Software.
68
+
69
+ Disclaimer
70
+
71
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
72
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
73
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
74
+
75
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
76
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
77
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
78
+
79
+ Trademarks
80
+
81
+ Except for displaying the License Details and identifying us as the origin of
82
+ the Software, you have no right under these Terms and Conditions to use our
83
+ trademarks, trade names, service marks or product names.
84
+
85
+ Grant of Future License
86
+
87
+ We hereby irrevocably grant you an additional license to use the Software under
88
+ the MIT license that is effective on the second anniversary of the date we make
89
+ the Software available. On or after that date, you may use the Software under
90
+ the MIT license, in which case the following will apply:
91
+
92
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
93
+ this software and associated documentation files (the "Software"), to deal in
94
+ the Software without restriction, including without limitation the rights to
95
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
96
+ of the Software, and to permit persons to whom the Software is furnished to do
97
+ so, subject to the following conditions:
11
98
 
12
99
  The above copyright notice and this permission notice shall be included in all
13
100
  copies or substantial portions of the Software.
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  TypeScript/JavaScript analysis tools for AI agents - AST-based code analysis using the TypeScript Compiler API.
4
4
 
5
+ > [!WARNING]
6
+ > This package is in beta. APIs may change between minor versions.
7
+
5
8
  ## Installation
6
9
 
7
10
  ```bash
@@ -46,4 +49,4 @@ agent.registerSkills(tsSkills);
46
49
 
47
50
  ## License
48
51
 
49
- MIT
52
+ [FSL-1.1-MIT](https://fsl.software/) - See [LICENSE](LICENSE) for details. Converts to MIT after 2 years per version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compilr-dev/agents-coding-ts",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "TypeScript/JavaScript analysis tools for AI agents - AST-based code analysis, complexity metrics, and type hierarchy",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -56,13 +56,13 @@
56
56
  "tools"
57
57
  ],
58
58
  "author": "Carmelo Scozzola",
59
- "license": "MIT",
59
+ "license": "FSL-1.1-MIT",
60
60
  "bugs": {
61
61
  "url": "https://github.com/compilr-dev/agents-coding/issues"
62
62
  },
63
63
  "homepage": "https://github.com/compilr-dev/agents-coding#readme",
64
64
  "engines": {
65
- "node": ">=18.0.0"
65
+ "node": ">=20.0.0"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "@compilr-dev/agents": "^0.3.1"
@@ -71,14 +71,14 @@
71
71
  "typescript": "^5.3.0"
72
72
  },
73
73
  "devDependencies": {
74
- "@anthropic-ai/sdk": "^0.30.1",
75
- "@compilr-dev/agents": "^0.3.1",
74
+ "@anthropic-ai/sdk": "^0.74.0",
75
+ "@compilr-dev/agents": "^0.3.11",
76
76
  "@eslint/js": "^9.39.1",
77
- "@types/node": "^24.10.1",
78
- "@vitest/coverage-v8": "^3.2.4",
77
+ "@types/node": "^25.2.3",
78
+ "@vitest/coverage-v8": "^4.0.18",
79
79
  "eslint": "^9.39.1",
80
80
  "prettier": "^3.7.1",
81
81
  "typescript-eslint": "^8.48.0",
82
- "vitest": "^3.2.4"
82
+ "vitest": "^4.0.18"
83
83
  }
84
84
  }