@rudinmax87/united-we-stand 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.
- package/.united-we-stand/README.md +523 -0
- package/.united-we-stand/agents/0-status-checker.md +65 -0
- package/.united-we-stand/agents/1-initializer.md +48 -0
- package/.united-we-stand/agents/2-planner.md +44 -0
- package/.united-we-stand/agents/3-designer.md +50 -0
- package/.united-we-stand/agents/4-implementer.md +56 -0
- package/.united-we-stand/agents/5-code-reviewer.md +51 -0
- package/.united-we-stand/agents/6-finalizer.md +53 -0
- package/.united-we-stand/agents/accessibility-reviewer.md +15 -0
- package/.united-we-stand/agents/api-contract-writer.md +15 -0
- package/.united-we-stand/agents/data-modeler.md +15 -0
- package/.united-we-stand/agents/debugger.md +15 -0
- package/.united-we-stand/agents/documentation-writer.md +15 -0
- package/.united-we-stand/agents/migration-planner.md +15 -0
- package/.united-we-stand/agents/observability-reviewer.md +15 -0
- package/.united-we-stand/agents/performance-reviewer.md +15 -0
- package/.united-we-stand/agents/project-manager.md +15 -0
- package/.united-we-stand/agents/refactorer.md +15 -0
- package/.united-we-stand/agents/release-coordinator.md +15 -0
- package/.united-we-stand/agents/sql-database-designer.md +24 -0
- package/.united-we-stand/agents/test-strategist.md +15 -0
- package/.united-we-stand/agents/web-designer.md +19 -0
- package/.united-we-stand/agents-md-block.md +153 -0
- package/.united-we-stand/antigravity-workflow.md +15 -0
- package/.united-we-stand/copilot-instructions.md +15 -0
- package/.united-we-stand/cursor-rule.mdc +18 -0
- package/.united-we-stand/framework/00-index.md +53 -0
- package/.united-we-stand/framework/01-core-rules.md +157 -0
- package/.united-we-stand/framework/02-state-model.md +143 -0
- package/.united-we-stand/framework/03-stage-lifecycle.md +67 -0
- package/.united-we-stand/framework/04-command-routing.md +258 -0
- package/.united-we-stand/framework/05-conflict-resolution.md +41 -0
- package/.united-we-stand/framework/06-spec-writing-standard.md +156 -0
- package/.united-we-stand/framework/07-definition-of-done.md +52 -0
- package/.united-we-stand/framework/08-skip-force-policy.md +51 -0
- package/.united-we-stand/framework/09-traceability-model.md +37 -0
- package/.united-we-stand/framework/10-review-model.md +67 -0
- package/.united-we-stand/framework/11-glossary.md +16 -0
- package/.united-we-stand/framework/profiles/00-profile-selection.md +21 -0
- package/.united-we-stand/framework/profiles/api-service.md +11 -0
- package/.united-we-stand/framework/profiles/cli-tool.md +9 -0
- package/.united-we-stand/framework/profiles/csharp.md +10 -0
- package/.united-we-stand/framework/profiles/data-pipeline.md +9 -0
- package/.united-we-stand/framework/profiles/generic.md +37 -0
- package/.united-we-stand/framework/profiles/go.md +12 -0
- package/.united-we-stand/framework/profiles/java.md +11 -0
- package/.united-we-stand/framework/profiles/javascript-typescript.md +51 -0
- package/.united-we-stand/framework/profiles/library-package.md +10 -0
- package/.united-we-stand/framework/profiles/mobile-app.md +9 -0
- package/.united-we-stand/framework/profiles/php.md +10 -0
- package/.united-we-stand/framework/profiles/python.md +16 -0
- package/.united-we-stand/framework/profiles/ruby.md +10 -0
- package/.united-we-stand/framework/profiles/rust.md +11 -0
- package/.united-we-stand/framework/profiles/web-app.md +11 -0
- package/.united-we-stand/playbooks/00-index.md +19 -0
- package/.united-we-stand/playbooks/api-change.md +3 -0
- package/.united-we-stand/playbooks/bugfix.md +3 -0
- package/.united-we-stand/playbooks/data-model-change.md +3 -0
- package/.united-we-stand/playbooks/docs-only-change.md +3 -0
- package/.united-we-stand/playbooks/existing-feature-enhancement.md +3 -0
- package/.united-we-stand/playbooks/greenfield-feature.md +3 -0
- package/.united-we-stand/playbooks/migration.md +3 -0
- package/.united-we-stand/playbooks/refactor.md +3 -0
- package/.united-we-stand/playbooks/release-preparation.md +3 -0
- package/.united-we-stand/playbooks/security-hotfix.md +3 -0
- package/.united-we-stand/playbooks/ui-ux-change.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/00-current-status.md +46 -0
- package/.united-we-stand/spec-driven/branch-template/01-init.md +24 -0
- package/.united-we-stand/spec-driven/branch-template/02-plan.md +19 -0
- package/.united-we-stand/spec-driven/branch-template/03-design.md +22 -0
- package/.united-we-stand/spec-driven/branch-template/04-implementation.md +19 -0
- package/.united-we-stand/spec-driven/branch-template/05-code-review.md +16 -0
- package/.united-we-stand/spec-driven/branch-template/06-finalization.md +22 -0
- package/.united-we-stand/spec-driven/branch-template/07-decisions.md +10 -0
- package/.united-we-stand/spec-driven/branch-template/08-traceability.md +7 -0
- package/.united-we-stand/spec-driven/branch-template/09-risks-issues.md +10 -0
- package/.united-we-stand/spec-driven/branch-template/10-test-strategy.md +16 -0
- package/.united-we-stand/spec-driven/branch-template/11-change-log.md +5 -0
- package/.united-we-stand/spec-driven/branch-template/12-handoff.md +10 -0
- package/.united-we-stand/spec-driven/branch-template/13-retrospective.md +10 -0
- package/.united-we-stand/spec-driven/branch-template/api/auth-boundaries.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/api/contracts.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/api/endpoints.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/data/data-boundaries.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/data/migrations.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/data/schema-notes.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/modules/example-module.md +12 -0
- package/.united-we-stand/spec-driven/branch-template/ux/copy-notes.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/ux/screen-states.md +3 -0
- package/.united-we-stand/spec-driven/branch-template/ux/user-flows.md +3 -0
- package/.united-we-stand/steering/00-index.md +15 -0
- package/.united-we-stand/steering/architecture-steering.md +13 -0
- package/.united-we-stand/steering/coding-steering.md +77 -0
- package/.united-we-stand/steering/data-steering.md +31 -0
- package/.united-we-stand/steering/documentation-steering.md +11 -0
- package/.united-we-stand/steering/observability-steering.md +11 -0
- package/.united-we-stand/steering/product-steering.md +16 -0
- package/.united-we-stand/steering/repo-conventions.md +12 -0
- package/.united-we-stand/steering/security-steering.md +12 -0
- package/.united-we-stand/steering/testing-steering.md +11 -0
- package/.united-we-stand/steering/ux-steering.md +26 -0
- package/LICENSE +21 -0
- package/README.md +595 -0
- package/dist/cli.d.ts +7 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +96 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/branch-init.d.ts +16 -0
- package/dist/commands/branch-init.d.ts.map +1 -0
- package/dist/commands/branch-init.js +337 -0
- package/dist/commands/branch-init.js.map +1 -0
- package/dist/commands/doctor.d.ts +17 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +527 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/install.d.ts +18 -0
- package/dist/commands/install.d.ts.map +1 -0
- package/dist/commands/install.js +127 -0
- package/dist/commands/install.js.map +1 -0
- package/dist/commands/refresh.d.ts +17 -0
- package/dist/commands/refresh.d.ts.map +1 -0
- package/dist/commands/refresh.js +69 -0
- package/dist/commands/refresh.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/branch-routing.d.ts +14 -0
- package/dist/lib/branch-routing.d.ts.map +1 -0
- package/dist/lib/branch-routing.js +62 -0
- package/dist/lib/branch-routing.js.map +1 -0
- package/dist/lib/branch.d.ts +12 -0
- package/dist/lib/branch.d.ts.map +1 -0
- package/dist/lib/branch.js +19 -0
- package/dist/lib/branch.js.map +1 -0
- package/dist/lib/fs.d.ts +37 -0
- package/dist/lib/fs.d.ts.map +1 -0
- package/dist/lib/fs.js +123 -0
- package/dist/lib/fs.js.map +1 -0
- package/dist/lib/git.d.ts +20 -0
- package/dist/lib/git.d.ts.map +1 -0
- package/dist/lib/git.js +87 -0
- package/dist/lib/git.js.map +1 -0
- package/dist/lib/github.d.ts +13 -0
- package/dist/lib/github.d.ts.map +1 -0
- package/dist/lib/github.js +105 -0
- package/dist/lib/github.js.map +1 -0
- package/dist/lib/logger.d.ts +26 -0
- package/dist/lib/logger.d.ts.map +1 -0
- package/dist/lib/logger.js +37 -0
- package/dist/lib/logger.js.map +1 -0
- package/dist/lib/markers.d.ts +25 -0
- package/dist/lib/markers.d.ts.map +1 -0
- package/dist/lib/markers.js +60 -0
- package/dist/lib/markers.js.map +1 -0
- package/dist/lib/package-version.d.ts +6 -0
- package/dist/lib/package-version.d.ts.map +1 -0
- package/dist/lib/package-version.js +18 -0
- package/dist/lib/package-version.js.map +1 -0
- package/dist/lib/runtime-state.d.ts +35 -0
- package/dist/lib/runtime-state.d.ts.map +1 -0
- package/dist/lib/runtime-state.js +131 -0
- package/dist/lib/runtime-state.js.map +1 -0
- package/dist/lib/templates.d.ts +88 -0
- package/dist/lib/templates.d.ts.map +1 -0
- package/dist/lib/templates.js +213 -0
- package/dist/lib/templates.js.map +1 -0
- package/package.json +57 -0
- package/public/united-we-stand-logo.png +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Steering Index
|
|
2
|
+
|
|
3
|
+
This directory contains repo-specific steering.
|
|
4
|
+
|
|
5
|
+
Read order:
|
|
6
|
+
1. `product-steering.md`
|
|
7
|
+
2. `architecture-steering.md`
|
|
8
|
+
3. `coding-steering.md`
|
|
9
|
+
4. `testing-steering.md`
|
|
10
|
+
5. `security-steering.md`
|
|
11
|
+
6. `observability-steering.md`
|
|
12
|
+
7. `documentation-steering.md`
|
|
13
|
+
8. `repo-conventions.md`
|
|
14
|
+
|
|
15
|
+
Read `ux-steering.md` or `data-steering.md` when relevant.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Architecture Steering
|
|
2
|
+
|
|
3
|
+
Use this file to encode durable architectural preferences.
|
|
4
|
+
|
|
5
|
+
## Suggested Sections
|
|
6
|
+
|
|
7
|
+
- System boundaries
|
|
8
|
+
- Preferred patterns
|
|
9
|
+
- Disallowed couplings
|
|
10
|
+
- State ownership
|
|
11
|
+
- Integration boundaries
|
|
12
|
+
- Scalability constraints
|
|
13
|
+
- Migration constraints
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Coding Steering
|
|
2
|
+
|
|
3
|
+
This file defines repo-specific coding conventions that `4-implementer` must
|
|
4
|
+
follow for every code change and `5-code-reviewer` must enforce during review.
|
|
5
|
+
When this file is more specific than a profile doc, this file wins.
|
|
6
|
+
|
|
7
|
+
## Formatting and consistency
|
|
8
|
+
|
|
9
|
+
- Follow Airbnb JS/TS style guidance unless a stricter repo rule in this file overrides it.
|
|
10
|
+
- Keep code consistently formatted with configured formatter/linter rules when present.
|
|
11
|
+
- Order imports consistently.
|
|
12
|
+
- Prefer clarity over cleverness.
|
|
13
|
+
- Small, composable functions are mandatory.
|
|
14
|
+
- Keep modules cohesive so each file has one main responsibility.
|
|
15
|
+
- Use `const` by default; use `let` only when reassignment is required; avoid `var`.
|
|
16
|
+
- Avoid deep nesting by using early returns, guard clauses, and small helpers.
|
|
17
|
+
- Do not leave oversized functions in place when they can be split into smaller helpers with clearer responsibilities.
|
|
18
|
+
- If a function starts mixing responsibilities, repeated condition branches, or long sequential logic, split it before considering the implementation complete.
|
|
19
|
+
|
|
20
|
+
## Naming conventions
|
|
21
|
+
|
|
22
|
+
- Use explicit, intent-revealing names instead of abbreviations.
|
|
23
|
+
- Function and method names must describe what they do using `verb + object` naming where practical, such as `createAppointmentSlots`, `validateBookingRequest`, or `loadAvailableDays`.
|
|
24
|
+
- Avoid vague names such as `doThing`, `handle`, `process`, `run`, `q`, or `fn1` for core logic.
|
|
25
|
+
- Do not use single-letter identifiers, including in loops, callbacks, and temporary variables.
|
|
26
|
+
- Prefer descriptive iteration and callback names such as `index`, `dayIndex`, `slotIndex`, `hourIndex`, `day`, `hour`, `appointment`, `user`, `request`, `error`, `event`, `response`, or `document`.
|
|
27
|
+
- Use `camelCase` for variables and functions.
|
|
28
|
+
- Use `PascalCase` for classes and components.
|
|
29
|
+
- Use `UPPER_SNAKE_CASE` only for values that are truly constant and shared.
|
|
30
|
+
|
|
31
|
+
## Commenting and documentation preferences
|
|
32
|
+
|
|
33
|
+
- Commenting requirements in this section are mandatory for `4-implementer` and must be enforced by `5-code-reviewer`.
|
|
34
|
+
- Every function and method must have a short JSDoc-style doc comment immediately above it.
|
|
35
|
+
- Keep function and method doc comments to one brief sentence describing behavior.
|
|
36
|
+
- Every changed code file must contain at least one intent-focused code comment.
|
|
37
|
+
- If a file contains only one small function, that file still must include at least one short comment explaining what the function does.
|
|
38
|
+
- Add `//` inline comments before each non-trivial block to explain intent, boundary handling, or reasoning.
|
|
39
|
+
- When a block is small but important, still add a short comment if it clarifies why the code exists.
|
|
40
|
+
- Do not comment obvious code paths line by line; comment intent, boundaries, and why the block exists.
|
|
41
|
+
|
|
42
|
+
## Error-handling preferences
|
|
43
|
+
|
|
44
|
+
- Handle errors intentionally and do not swallow exceptions.
|
|
45
|
+
- Prefer predictable control flow and avoid hidden side effects.
|
|
46
|
+
|
|
47
|
+
## Shared utilities rules
|
|
48
|
+
|
|
49
|
+
- If logic is needed in more than one place, extract it into a shared function or module.
|
|
50
|
+
- Prefer `utils/` for general-purpose helpers.
|
|
51
|
+
- Prefer `lib/` for domain-specific shared logic.
|
|
52
|
+
- Add at least minimal tests for shared utilities.
|
|
53
|
+
|
|
54
|
+
## Dependency policy
|
|
55
|
+
|
|
56
|
+
- Keep dependencies minimal and justify every new package.
|
|
57
|
+
- Prefer built-in platform APIs before adding third-party dependencies when they are sufficient.
|
|
58
|
+
- Prefer popular, maintained libraries with active releases and a solid security posture when a dependency is necessary.
|
|
59
|
+
- Do not add deprecated or unmaintained packages when a maintained alternative exists.
|
|
60
|
+
- Do not add packages with known active vulnerabilities.
|
|
61
|
+
- Maintain the appropriate lockfile for the package manager in use.
|
|
62
|
+
- Before merging a dependency change in npm-based repositories, run `npm audit` and address reported vulnerabilities by updating, replacing, or removing the dependency.
|
|
63
|
+
|
|
64
|
+
## SonarQube-aligned quality rules
|
|
65
|
+
|
|
66
|
+
- Follow common SonarQube-style clean code guidance as mandatory review criteria.
|
|
67
|
+
- Avoid large functions. If a function grows beyond a small, easy-to-scan unit or starts carrying multiple responsibilities, split it into helpers before calling the work done.
|
|
68
|
+
- Use strict equality (`===`, `!==`) instead of loose equality except for intentional safe nullish checks.
|
|
69
|
+
- Do not import a module into itself.
|
|
70
|
+
- Avoid absolute import paths unless repo conventions explicitly require alias-based imports.
|
|
71
|
+
- Use `Number.isNaN()` for `NaN` checks.
|
|
72
|
+
- Prefer spread syntax over redundant `.apply()` usage.
|
|
73
|
+
- Prefer object spread syntax over `Object.assign()` when it is appropriate and equivalent.
|
|
74
|
+
- Keep function and method names compliant with the naming rules in this file.
|
|
75
|
+
- Remove unused variables, unused assignments, and dead code.
|
|
76
|
+
- Avoid duplicated logic.
|
|
77
|
+
- Avoid code shapes that would predictably trigger routine SonarQube-style maintainability findings when a straightforward cleanup is available.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Data Steering
|
|
2
|
+
|
|
3
|
+
Use this file when the repo owns schemas, migrations, analytics, or data pipelines.
|
|
4
|
+
|
|
5
|
+
## Schema and Diagram Expectations
|
|
6
|
+
|
|
7
|
+
- For SQL database work, capture both conceptual and implementation-level structure.
|
|
8
|
+
- Each process that interacts with the database should have:
|
|
9
|
+
- a flowchart
|
|
10
|
+
- a sequence diagram
|
|
11
|
+
- an entity-relationship model (`modelo de entidad relacion`)
|
|
12
|
+
- a relational model (`modelo relacional`)
|
|
13
|
+
|
|
14
|
+
## SQL File Organization
|
|
15
|
+
|
|
16
|
+
- Keep SQL commands in correctly named files separated by purpose, such as create, alter/update, seed, policy/RLS, rollback, or backfill work.
|
|
17
|
+
- SQL files should have clear file-level comments stating purpose, scope, and execution intent.
|
|
18
|
+
- If a `supabase/` directory exists, keep SQL migration files inside `supabase/migrations/`.
|
|
19
|
+
- If SQL files already exist outside `supabase/migrations/` in a repo that uses Supabase, move or rewrite them into `supabase/migrations/` unless the user explicitly requests otherwise.
|
|
20
|
+
- Use names that make the function obvious, for example timestamped migration files with purpose suffixes such as `create_users_table`, `update_booking_indexes`, or `rls_appointments_policies`.
|
|
21
|
+
|
|
22
|
+
## Migration Rules
|
|
23
|
+
|
|
24
|
+
- Separate schema creation, data correction, and security-policy work when that separation improves reviewability.
|
|
25
|
+
- Comment non-trivial SQL blocks to explain intent, assumptions, and ordering constraints.
|
|
26
|
+
- Prefer idempotent or explicitly guarded operations when the platform/workflow expects rerunnable scripts.
|
|
27
|
+
|
|
28
|
+
## Data Safety Expectations
|
|
29
|
+
|
|
30
|
+
- Make ownership, access control, and retention implications explicit for schema changes.
|
|
31
|
+
- Document compatibility or rollout concerns when migrations affect live data or existing consumers.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Observability Steering
|
|
2
|
+
|
|
3
|
+
Use this file to define logging, metrics, tracing, and alerting expectations.
|
|
4
|
+
|
|
5
|
+
## Suggested Sections
|
|
6
|
+
|
|
7
|
+
- What must be logged
|
|
8
|
+
- Structured logging requirements
|
|
9
|
+
- Performance metrics
|
|
10
|
+
- Tracing expectations
|
|
11
|
+
- Error visibility requirements
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Product Steering
|
|
2
|
+
|
|
3
|
+
Use this file to encode durable product direction for the repo.
|
|
4
|
+
|
|
5
|
+
## Suggested Sections
|
|
6
|
+
|
|
7
|
+
- Primary users
|
|
8
|
+
- Main outcomes
|
|
9
|
+
- Priority tradeoffs
|
|
10
|
+
- Non-goals
|
|
11
|
+
- Constraints
|
|
12
|
+
- Release posture
|
|
13
|
+
|
|
14
|
+
## Template
|
|
15
|
+
|
|
16
|
+
Fill this file with repo-specific information. If not yet defined, say `Not yet defined`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Security Steering
|
|
2
|
+
|
|
3
|
+
Use this file to define repo-specific security expectations.
|
|
4
|
+
|
|
5
|
+
## Suggested Sections
|
|
6
|
+
|
|
7
|
+
- Secret handling
|
|
8
|
+
- AuthN/AuthZ requirements
|
|
9
|
+
- Input validation boundaries
|
|
10
|
+
- Data exposure rules
|
|
11
|
+
- Dependency security expectations
|
|
12
|
+
- Audit / compliance notes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Testing Steering
|
|
2
|
+
|
|
3
|
+
Use this file to define what testing matters most in this repo.
|
|
4
|
+
|
|
5
|
+
## Suggested Sections
|
|
6
|
+
|
|
7
|
+
- Test pyramid priorities
|
|
8
|
+
- Required regression coverage
|
|
9
|
+
- Contract/integration expectations
|
|
10
|
+
- Mocking boundaries
|
|
11
|
+
- Acceptance criteria style
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# UX Steering
|
|
2
|
+
|
|
3
|
+
Use this file when the repo has user-facing interface work.
|
|
4
|
+
|
|
5
|
+
## Layout and Visual Direction
|
|
6
|
+
|
|
7
|
+
- Match the visual direction to the requested audience and tone.
|
|
8
|
+
- For formal sites, prefer restrained layouts, calmer palettes, strong hierarchy, and conservative contrast usage.
|
|
9
|
+
- For attention-grabbing or promotional sites, use bolder visual rhythm, stronger color accents, and more expressive composition while preserving usability.
|
|
10
|
+
- For children-focused experiences, prefer friendly shapes, high clarity, playful palettes, and obvious interaction affordances without sacrificing accessibility.
|
|
11
|
+
|
|
12
|
+
## Color and Contrast
|
|
13
|
+
|
|
14
|
+
- Define a deliberate color palette instead of drifting into default UI colors.
|
|
15
|
+
- Keep contrast strong enough for readability across primary text, controls, and states.
|
|
16
|
+
- Use accent colors intentionally and consistently across calls to action, highlights, and status cues.
|
|
17
|
+
|
|
18
|
+
## Accessibility Expectations
|
|
19
|
+
|
|
20
|
+
- Preserve readable typography, usable focus states, and semantic structure.
|
|
21
|
+
- Ensure layout, color, and motion choices do not reduce comprehension or navigation clarity.
|
|
22
|
+
|
|
23
|
+
## Error and Empty States
|
|
24
|
+
|
|
25
|
+
- UI states should be visually coherent with the selected visual direction.
|
|
26
|
+
- Empty, loading, and error states should remain readable and intentional rather than generic placeholders.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
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:
|
|
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.
|