@grunnverk/kilde 0.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.
Files changed (75) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.md +40 -0
  2. package/.github/ISSUE_TEMPLATE/feature_request.md +31 -0
  3. package/.github/pull_request_template.md +48 -0
  4. package/.github/workflows/deploy-docs.yml +59 -0
  5. package/.github/workflows/npm-publish.yml +48 -0
  6. package/.github/workflows/test.yml +48 -0
  7. package/CHANGELOG.md +92 -0
  8. package/CONTRIBUTING.md +438 -0
  9. package/LICENSE +190 -0
  10. package/PROJECT_SUMMARY.md +318 -0
  11. package/README.md +444 -0
  12. package/RELEASE_CHECKLIST.md +182 -0
  13. package/dist/application.js +166 -0
  14. package/dist/application.js.map +1 -0
  15. package/dist/commands/release.js +326 -0
  16. package/dist/commands/release.js.map +1 -0
  17. package/dist/constants.js +122 -0
  18. package/dist/constants.js.map +1 -0
  19. package/dist/logging.js +176 -0
  20. package/dist/logging.js.map +1 -0
  21. package/dist/main.js +24 -0
  22. package/dist/main.js.map +1 -0
  23. package/dist/mcp-server.js +17467 -0
  24. package/dist/mcp-server.js.map +7 -0
  25. package/dist/utils/config.js +89 -0
  26. package/dist/utils/config.js.map +1 -0
  27. package/docs/AI_GUIDE.md +618 -0
  28. package/eslint.config.mjs +85 -0
  29. package/guide/architecture.md +776 -0
  30. package/guide/commands.md +580 -0
  31. package/guide/configuration.md +779 -0
  32. package/guide/mcp-integration.md +708 -0
  33. package/guide/overview.md +225 -0
  34. package/package.json +91 -0
  35. package/scripts/build-mcp.js +115 -0
  36. package/scripts/test-mcp-compliance.js +254 -0
  37. package/src/application.ts +246 -0
  38. package/src/commands/release.ts +450 -0
  39. package/src/constants.ts +162 -0
  40. package/src/logging.ts +210 -0
  41. package/src/main.ts +25 -0
  42. package/src/mcp/prompts/index.ts +98 -0
  43. package/src/mcp/resources.ts +121 -0
  44. package/src/mcp/server.ts +195 -0
  45. package/src/mcp/tools.ts +219 -0
  46. package/src/types.ts +131 -0
  47. package/src/utils/config.ts +181 -0
  48. package/tests/application.test.ts +114 -0
  49. package/tests/commands/commit.test.ts +248 -0
  50. package/tests/commands/release.test.ts +325 -0
  51. package/tests/constants.test.ts +118 -0
  52. package/tests/logging.test.ts +142 -0
  53. package/tests/mcp/prompts/index.test.ts +202 -0
  54. package/tests/mcp/resources.test.ts +166 -0
  55. package/tests/mcp/tools.test.ts +211 -0
  56. package/tests/utils/config.test.ts +212 -0
  57. package/tsconfig.json +32 -0
  58. package/vite.config.ts +107 -0
  59. package/vitest.config.ts +40 -0
  60. package/website/index.html +14 -0
  61. package/website/src/App.css +142 -0
  62. package/website/src/App.tsx +34 -0
  63. package/website/src/components/Commands.tsx +182 -0
  64. package/website/src/components/Configuration.tsx +214 -0
  65. package/website/src/components/Examples.tsx +234 -0
  66. package/website/src/components/Footer.css +99 -0
  67. package/website/src/components/Footer.tsx +93 -0
  68. package/website/src/components/GettingStarted.tsx +94 -0
  69. package/website/src/components/Hero.css +95 -0
  70. package/website/src/components/Hero.tsx +50 -0
  71. package/website/src/components/Navigation.css +102 -0
  72. package/website/src/components/Navigation.tsx +57 -0
  73. package/website/src/index.css +36 -0
  74. package/website/src/main.tsx +10 -0
  75. package/website/vite.config.ts +12 -0
@@ -0,0 +1,438 @@
1
+ # Contributing to Kilde
2
+
3
+ Thank you for your interest in contributing to Kilde! This document provides guidelines and instructions for contributing.
4
+
5
+ ## Table of Contents
6
+
7
+ - [Code of Conduct](#code-of-conduct)
8
+ - [Getting Started](#getting-started)
9
+ - [Development Setup](#development-setup)
10
+ - [Making Changes](#making-changes)
11
+ - [Testing](#testing)
12
+ - [Documentation](#documentation)
13
+ - [Submitting Changes](#submitting-changes)
14
+ - [Release Process](#release-process)
15
+
16
+ ## Code of Conduct
17
+
18
+ ### Our Standards
19
+
20
+ - Be respectful and inclusive
21
+ - Welcome newcomers and help them learn
22
+ - Focus on what is best for the community
23
+ - Show empathy towards other community members
24
+
25
+ ### Unacceptable Behavior
26
+
27
+ - Harassment, trolling, or discriminatory language
28
+ - Publishing others' private information
29
+ - Other conduct which could reasonably be considered inappropriate
30
+
31
+ ## Getting Started
32
+
33
+ ### Prerequisites
34
+
35
+ - Node.js 24.0.0 or higher
36
+ - Git 2.0 or higher
37
+ - npm 10.0 or higher
38
+ - OpenAI API key for testing
39
+
40
+ ### Finding Issues
41
+
42
+ Good places to start:
43
+
44
+ - [Issues labeled "good first issue"](https://github.com/grunnverk/kilde/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
45
+ - [Issues labeled "help wanted"](https://github.com/grunnverk/kilde/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)
46
+ - Documentation improvements
47
+ - Test coverage improvements
48
+
49
+ ## Development Setup
50
+
51
+ ### 1. Fork and Clone
52
+
53
+ ```bash
54
+ # Fork the repository on GitHub, then clone your fork
55
+ git clone https://github.com/YOUR_USERNAME/kilde.git
56
+ cd kilde
57
+
58
+ # Add upstream remote
59
+ git remote add upstream https://github.com/grunnverk/kilde.git
60
+ ```
61
+
62
+ ### 2. Install Dependencies
63
+
64
+ ```bash
65
+ npm install
66
+ ```
67
+
68
+ ### 3. Set Up Environment
69
+
70
+ Create a `.env` file in the project root:
71
+
72
+ ```bash
73
+ OPENAI_API_KEY=sk-your-api-key-here
74
+ ```
75
+
76
+ ### 4. Build the Project
77
+
78
+ ```bash
79
+ npm run build
80
+ ```
81
+
82
+ ### 5. Run Tests
83
+
84
+ ```bash
85
+ npm test
86
+ ```
87
+
88
+ ### 6. Development Mode
89
+
90
+ For active development with auto-rebuild:
91
+
92
+ ```bash
93
+ npm run watch
94
+ ```
95
+
96
+ ## Project Structure
97
+
98
+ ```
99
+ kilde/
100
+ ├── src/
101
+ │ ├── commands/ # Command implementations
102
+ │ │ └── release.ts # Release notes command
103
+ │ ├── mcp/ # MCP server implementation
104
+ │ │ ├── server.ts # MCP server
105
+ │ │ ├── tools.ts # MCP tools
106
+ │ │ ├── resources.ts # MCP resources
107
+ │ │ └── prompts/ # MCP prompts
108
+ │ ├── utils/ # Utility functions
109
+ │ │ └── config.ts # Configuration handling
110
+ │ ├── application.ts # CLI application
111
+ │ ├── constants.ts # Constants and defaults
112
+ │ ├── logging.ts # Logging setup
113
+ │ ├── main.ts # Entry point
114
+ │ └── types.ts # TypeScript types
115
+ ├── tests/ # Test files
116
+ │ ├── mcp/ # MCP tests
117
+ │ ├── utils/ # Utility tests
118
+ │ └── *.test.ts # Other tests
119
+ ├── docs/ # Documentation
120
+ ├── scripts/ # Build scripts
121
+ └── dist/ # Build output
122
+ ```
123
+
124
+ ## Making Changes
125
+
126
+ ### 1. Create a Branch
127
+
128
+ ```bash
129
+ # Update your fork
130
+ git fetch upstream
131
+ git checkout main
132
+ git merge upstream/main
133
+
134
+ # Create a feature branch
135
+ git checkout -b feature/your-feature-name
136
+ ```
137
+
138
+ ### Branch Naming
139
+
140
+ - `feature/` - New features
141
+ - `fix/` - Bug fixes
142
+ - `docs/` - Documentation changes
143
+ - `test/` - Test improvements
144
+ - `refactor/` - Code refactoring
145
+
146
+ ### 2. Make Your Changes
147
+
148
+ Follow these guidelines:
149
+
150
+ #### Code Style
151
+
152
+ - Use TypeScript strict mode
153
+ - Follow existing code patterns
154
+ - Use meaningful variable names
155
+ - Add JSDoc comments for public APIs
156
+ - Keep functions small and focused
157
+
158
+ #### Example
159
+
160
+ ```typescript
161
+ /**
162
+ * Load configuration from file system
163
+ * @param cwd - Working directory to search from
164
+ * @returns Loaded configuration or null if not found
165
+ */
166
+ export async function loadConfig(cwd: string = process.cwd()): Promise<Config | null> {
167
+ // Implementation
168
+ }
169
+ ```
170
+
171
+ #### Imports
172
+
173
+ ```typescript
174
+ // External imports first
175
+ import { Command } from 'commander';
176
+ import winston from 'winston';
177
+
178
+ // Internal imports second
179
+ import { Config } from '@grunnverk/core';
180
+ import { getLogger } from './logging';
181
+
182
+ // Relative imports last
183
+ import { loadConfig } from './utils/config';
184
+ ```
185
+
186
+ #### Error Handling
187
+
188
+ ```typescript
189
+ try {
190
+ const result = await someOperation();
191
+ return result;
192
+ } catch (error: any) {
193
+ logger.error(`Operation failed: ${error.message}`);
194
+ throw error;
195
+ }
196
+ ```
197
+
198
+ ### 3. Write Tests
199
+
200
+ All new code must include tests:
201
+
202
+ ```typescript
203
+ import { describe, it, expect } from 'vitest';
204
+
205
+ describe('myFunction', () => {
206
+ it('should do something correctly', () => {
207
+ const result = myFunction('input');
208
+ expect(result).toBe('expected output');
209
+ });
210
+
211
+ it('should handle edge cases', () => {
212
+ expect(() => myFunction(null)).toThrow();
213
+ });
214
+ });
215
+ ```
216
+
217
+ ### 4. Update Documentation
218
+
219
+ - Update README.md if adding features
220
+ - Add JSDoc comments to new functions
221
+ - Update AI_GUIDE.md for MCP changes
222
+ - Create examples for new functionality
223
+
224
+ ## Testing
225
+
226
+ ### Running Tests
227
+
228
+ ```bash
229
+ # Run all tests
230
+ npm test
231
+
232
+ # Run tests in watch mode
233
+ npm run test:watch
234
+
235
+ # Run tests with coverage
236
+ npm test -- --coverage
237
+
238
+ # Run specific test file
239
+ npm test tests/utils/config.test.ts
240
+ ```
241
+
242
+ ### Coverage Requirements
243
+
244
+ - Statements: 70%
245
+ - Branches: 70%
246
+ - Functions: 70%
247
+ - Lines: 70%
248
+
249
+ ### Writing Good Tests
250
+
251
+ 1. **Test Behavior, Not Implementation**
252
+ ```typescript
253
+ // Good
254
+ it('should return configuration from file', async () => {
255
+ const config = await loadConfig();
256
+ expect(config.verbose).toBeDefined();
257
+ });
258
+
259
+ // Avoid
260
+ it('should call fs.readFile with correct path', async () => {
261
+ await loadConfig();
262
+ expect(mockReadFile).toHaveBeenCalledWith('/path');
263
+ });
264
+ ```
265
+
266
+ 2. **Use Descriptive Test Names**
267
+ ```typescript
268
+ // Good
269
+ it('should return null when no config file exists', async () => {});
270
+
271
+ // Avoid
272
+ it('works correctly', async () => {});
273
+ ```
274
+
275
+ 3. **Test Edge Cases**
276
+ ```typescript
277
+ describe('loadConfig', () => {
278
+ it('should handle missing file');
279
+ it('should handle malformed JSON');
280
+ it('should handle permission errors');
281
+ });
282
+ ```
283
+
284
+ ## Documentation
285
+
286
+ ### Code Comments
287
+
288
+ - Use JSDoc for public APIs
289
+ - Explain "why", not "what"
290
+ - Keep comments up to date
291
+
292
+ ```typescript
293
+ /**
294
+ * Execute a tool with the given name and arguments.
295
+ *
296
+ * This function builds the config from defaults and executes
297
+ * the appropriate command (commit or release).
298
+ *
299
+ * @param name - Tool name ('kilde_commit' or 'kilde_release')
300
+ * @param args - Tool arguments
301
+ * @param context - Execution context
302
+ * @returns Tool result with content array
303
+ */
304
+ export async function executeTool(
305
+ name: string,
306
+ args: Record<string, any>,
307
+ context: ToolContext
308
+ ): Promise<ToolResult> {
309
+ // Implementation
310
+ }
311
+ ```
312
+
313
+ ### README Updates
314
+
315
+ When adding features:
316
+
317
+ 1. Add to Features section
318
+ 2. Update Commands section
319
+ 3. Add examples
320
+ 4. Update configuration if needed
321
+
322
+ ### AI Guide Updates
323
+
324
+ When changing MCP functionality:
325
+
326
+ 1. Update tool parameters
327
+ 2. Add new examples
328
+ 3. Update best practices
329
+ 4. Add troubleshooting tips
330
+
331
+ ## Submitting Changes
332
+
333
+ ### 1. Commit Your Changes
334
+
335
+ Follow conventional commit format:
336
+
337
+ ```bash
338
+ # Format: <type>(<scope>): <description>
339
+
340
+ git commit -m "feat(mcp): add new resource for git tags"
341
+ git commit -m "fix(commit): handle empty diff gracefully"
342
+ git commit -m "docs: update AI integration guide"
343
+ git commit -m "test: add tests for config loading"
344
+ ```
345
+
346
+ Types:
347
+ - `feat` - New feature
348
+ - `fix` - Bug fix
349
+ - `docs` - Documentation
350
+ - `test` - Tests
351
+ - `refactor` - Code refactoring
352
+ - `chore` - Maintenance
353
+
354
+ ### 2. Push to Your Fork
355
+
356
+ ```bash
357
+ git push origin feature/your-feature-name
358
+ ```
359
+
360
+ ### 3. Create Pull Request
361
+
362
+ 1. Go to GitHub and create a pull request
363
+ 2. Fill out the pull request template
364
+ 3. Link related issues
365
+ 4. Request review
366
+
367
+ ### Pull Request Template
368
+
369
+ ```markdown
370
+ ## Description
371
+ Brief description of changes
372
+
373
+ ## Type of Change
374
+ - [ ] Bug fix
375
+ - [ ] New feature
376
+ - [ ] Breaking change
377
+ - [ ] Documentation update
378
+
379
+ ## Testing
380
+ - [ ] Tests pass locally
381
+ - [ ] New tests added
382
+ - [ ] Coverage maintained/improved
383
+
384
+ ## Checklist
385
+ - [ ] Code follows project style
386
+ - [ ] Documentation updated
387
+ - [ ] Commit messages follow convention
388
+ - [ ] No breaking changes (or documented)
389
+ ```
390
+
391
+ ### 4. Code Review Process
392
+
393
+ - Address reviewer feedback promptly
394
+ - Keep discussions focused and professional
395
+ - Make requested changes in new commits
396
+ - Don't force-push during review
397
+
398
+ ### 5. After Approval
399
+
400
+ Once approved, a maintainer will merge your PR.
401
+
402
+ ## Release Process
403
+
404
+ Releases are handled by maintainers:
405
+
406
+ 1. Version bump
407
+ 2. Update CHANGELOG
408
+ 3. Create git tag
409
+ 4. Publish to npm
410
+ 5. Create GitHub release
411
+
412
+ ### Versioning
413
+
414
+ We follow [Semantic Versioning](https://semver.org/):
415
+
416
+ - **MAJOR**: Breaking changes
417
+ - **MINOR**: New features (backward compatible)
418
+ - **PATCH**: Bug fixes
419
+
420
+ ## Getting Help
421
+
422
+ - [GitHub Discussions](https://github.com/grunnverk/kilde/discussions)
423
+ - [GitHub Issues](https://github.com/grunnverk/kilde/issues)
424
+ - [Discord Community](https://discord.gg/grunnverk) (coming soon)
425
+
426
+ ## Recognition
427
+
428
+ Contributors are recognized in:
429
+
430
+ - CHANGELOG.md
431
+ - GitHub contributors page
432
+ - Release notes
433
+
434
+ Thank you for contributing to Kilde! 🎉
435
+
436
+ ---
437
+
438
+ **Questions?** Open a [GitHub Discussion](https://github.com/grunnverk/kilde/discussions)
package/LICENSE ADDED
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Tim O'Brien
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.