codeforerunner 0.3.0__py3-none-any.whl
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.
- codeforerunner/__init__.py +1 -0
- codeforerunner/check.py +156 -0
- codeforerunner/cli.py +236 -0
- codeforerunner/config.py +176 -0
- codeforerunner/doctor.py +321 -0
- codeforerunner/installer.py +304 -0
- codeforerunner/mcp_server.py +177 -0
- codeforerunner/providers/__init__.py +36 -0
- codeforerunner/providers/anthropic.py +61 -0
- codeforerunner/providers/base.py +31 -0
- codeforerunner/providers/google.py +62 -0
- codeforerunner/providers/ollama.py +56 -0
- codeforerunner/providers/openai.py +59 -0
- codeforerunner-0.3.0.dist-info/METADATA +120 -0
- codeforerunner-0.3.0.dist-info/RECORD +19 -0
- codeforerunner-0.3.0.dist-info/WHEEL +5 -0
- codeforerunner-0.3.0.dist-info/entry_points.txt +2 -0
- codeforerunner-0.3.0.dist-info/licenses/LICENSE.md +71 -0
- codeforerunner-0.3.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Codeforerunner Source-Available License v0.1
|
|
2
|
+
===========================================
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2026 Derek Palmer
|
|
5
|
+
|
|
6
|
+
1. Grant of rights
|
|
7
|
+
|
|
8
|
+
Subject to the terms of this license, you are permitted to:
|
|
9
|
+
|
|
10
|
+
1.1 Use this software for personal, educational, and commercial purposes.
|
|
11
|
+
|
|
12
|
+
1.2 Modify this software for your own internal use, including within your
|
|
13
|
+
personal projects, your employer's internal systems, or client work,
|
|
14
|
+
provided that the modified software is not itself sold, licensed,
|
|
15
|
+
hosted as a commercial offering, or otherwise offered as a product or
|
|
16
|
+
service to third parties.
|
|
17
|
+
|
|
18
|
+
1.3 Redistribute unmodified copies of this software, provided that you
|
|
19
|
+
include this license and all copyright notices.
|
|
20
|
+
|
|
21
|
+
2. Restrictions
|
|
22
|
+
|
|
23
|
+
You may NOT, under any circumstance:
|
|
24
|
+
|
|
25
|
+
2.1 Sell, license, sublicense, host, distribute for a fee, or otherwise
|
|
26
|
+
offer this software, or any modified version of it, as a standalone
|
|
27
|
+
product, hosted product, or primary service offering.
|
|
28
|
+
|
|
29
|
+
2.2 Modify, adapt, extend, or integrate this software into another
|
|
30
|
+
product or service and then sell, license, sublicense, host, or
|
|
31
|
+
otherwise commercially offer that product or service where this
|
|
32
|
+
software or any derivative of it provides material functionality.
|
|
33
|
+
|
|
34
|
+
2.3 Rebrand this software, or any modified version of it, as your own
|
|
35
|
+
competing product, or present it in a way that suggests it is your
|
|
36
|
+
original creation.
|
|
37
|
+
|
|
38
|
+
2.4 Remove or alter any attribution, copyright, or license notices
|
|
39
|
+
included with the software, except as necessary to add your own,
|
|
40
|
+
clearly subordinate notices for internal tracking.
|
|
41
|
+
|
|
42
|
+
3. No trademark license
|
|
43
|
+
|
|
44
|
+
The names "codeforerunner", "forerunner", and any associated project
|
|
45
|
+
logos or branding are not licensed for use as your own product or
|
|
46
|
+
service names. You may refer to the software by its name in truthful
|
|
47
|
+
descriptions, such as "powered by codeforerunner", but you may not use
|
|
48
|
+
these names or logos in a way that suggests official endorsement or
|
|
49
|
+
affiliation without prior written permission from the copyright holder.
|
|
50
|
+
|
|
51
|
+
4. No warranty
|
|
52
|
+
|
|
53
|
+
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
54
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
55
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
56
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
57
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
58
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
59
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
60
|
+
|
|
61
|
+
5. Termination
|
|
62
|
+
|
|
63
|
+
Any violation of this license automatically terminates your rights under
|
|
64
|
+
it. Upon termination, you must stop using and distributing the software
|
|
65
|
+
and any derivative works, except where otherwise allowed by applicable
|
|
66
|
+
law.
|
|
67
|
+
|
|
68
|
+
6. Miscellaneous
|
|
69
|
+
|
|
70
|
+
If any provision of this license is held to be unenforceable, the
|
|
71
|
+
remaining provisions will remain in full force and effect.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
codeforerunner
|