bb-harness 4.0.1__tar.gz
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.
- bb_harness-4.0.1/COMMERCIAL-LICENSE.md +14 -0
- bb_harness-4.0.1/LICENSE +217 -0
- bb_harness-4.0.1/LICENSE.ja.md +190 -0
- bb_harness-4.0.1/LICENSING.md +55 -0
- bb_harness-4.0.1/NOTICE +29 -0
- bb_harness-4.0.1/PKG-INFO +308 -0
- bb_harness-4.0.1/README.md +267 -0
- bb_harness-4.0.1/THIRD_PARTY_NOTICES.md +11 -0
- bb_harness-4.0.1/pyproject.toml +93 -0
- bb_harness-4.0.1/setup.cfg +4 -0
- bb_harness-4.0.1/src/bb_harness/__init__.py +3 -0
- bb_harness-4.0.1/src/bb_harness/__main__.py +8 -0
- bb_harness-4.0.1/src/bb_harness/artifact_migration.py +141 -0
- bb_harness-4.0.1/src/bb_harness/batched_generation.py +272 -0
- bb_harness-4.0.1/src/bb_harness/cli.py +120 -0
- bb_harness-4.0.1/src/bb_harness/commands/__init__.py +25 -0
- bb_harness-4.0.1/src/bb_harness/commands/_invoke.py +26 -0
- bb_harness-4.0.1/src/bb_harness/commands/coverage.py +86 -0
- bb_harness-4.0.1/src/bb_harness/commands/evaluate.py +72 -0
- bb_harness-4.0.1/src/bb_harness/commands/export.py +145 -0
- bb_harness-4.0.1/src/bb_harness/commands/gate.py +69 -0
- bb_harness-4.0.1/src/bb_harness/commands/heatmap.py +61 -0
- bb_harness-4.0.1/src/bb_harness/commands/import_results.py +127 -0
- bb_harness-4.0.1/src/bb_harness/commands/ingest.py +64 -0
- bb_harness-4.0.1/src/bb_harness/commands/regression_graph.py +54 -0
- bb_harness-4.0.1/src/bb_harness/commands/run.py +222 -0
- bb_harness-4.0.1/src/bb_harness/commands/state_diagram.py +46 -0
- bb_harness-4.0.1/src/bb_harness/commands/validate.py +36 -0
- bb_harness-4.0.1/src/bb_harness/coverage_engine.py +553 -0
- bb_harness-4.0.1/src/bb_harness/efficiency_benchmark.py +194 -0
- bb_harness-4.0.1/src/bb_harness/efficient_generation.py +138 -0
- bb_harness-4.0.1/src/bb_harness/evidence_revisions.py +79 -0
- bb_harness-4.0.1/src/bb_harness/gate_engine.py +790 -0
- bb_harness-4.0.1/src/bb_harness/local_pipeline.py +1577 -0
- bb_harness-4.0.1/src/bb_harness/local_profiles.yaml +46 -0
- bb_harness-4.0.1/src/bb_harness/local_runtime.py +310 -0
- bb_harness-4.0.1/src/bb_harness/requirements_confidence.py +580 -0
- bb_harness-4.0.1/src/bb_harness/schema_validation.py +81 -0
- bb_harness-4.0.1/src/bb_harness/schemas/__init__.py +1 -0
- bb_harness-4.0.1/src/bb_harness/schemas/automation_evidence.schema.json +72 -0
- bb_harness-4.0.1/src/bb_harness/schemas/case_review_patch.schema.json +157 -0
- bb_harness-4.0.1/src/bb_harness/schemas/coverage_report.schema.json +257 -0
- bb_harness-4.0.1/src/bb_harness/schemas/effort_plan.schema.json +114 -0
- bb_harness-4.0.1/src/bb_harness/schemas/execution_evidence.schema.json +220 -0
- bb_harness-4.0.1/src/bb_harness/schemas/feature_spec.schema.json +97 -0
- bb_harness-4.0.1/src/bb_harness/schemas/gate_decision.schema.json +150 -0
- bb_harness-4.0.1/src/bb_harness/schemas/local_run_manifest.schema.json +339 -0
- bb_harness-4.0.1/src/bb_harness/schemas/manual_case_set.schema.json +503 -0
- bb_harness-4.0.1/src/bb_harness/schemas/observation_set.schema.json +166 -0
- bb_harness-4.0.1/src/bb_harness/schemas/phase_contract.schema.json +350 -0
- bb_harness-4.0.1/src/bb_harness/schemas/release_brief.schema.json +150 -0
- bb_harness-4.0.1/src/bb_harness/schemas/requirements_confidence.schema.json +500 -0
- bb_harness-4.0.1/src/bb_harness/schemas/requirements_review.schema.json +177 -0
- bb_harness-4.0.1/src/bb_harness/schemas/risk_register.schema.json +107 -0
- bb_harness-4.0.1/src/bb_harness/schemas/shared_defs.schema.json +1943 -0
- bb_harness-4.0.1/src/bb_harness/schemas/spec-source.schema.json +62 -0
- bb_harness-4.0.1/src/bb_harness/schemas/technique_plan.schema.json +133 -0
- bb_harness-4.0.1/src/bb_harness/schemas/test_model.schema.json +187 -0
- bb_harness-4.0.1/src/bb_harness/schemas/testrail-export.schema.json +39 -0
- bb_harness-4.0.1/src/bb_harness/schemas/waiver_set.schema.json +78 -0
- bb_harness-4.0.1/src/bb_harness/schemas/xray-export.schema.json +54 -0
- bb_harness-4.0.1/src/bb_harness/techniques/__init__.py +1 -0
- bb_harness-4.0.1/src/bb_harness/techniques/common.py +200 -0
- bb_harness-4.0.1/src/bb_harness/techniques/domain.py +120 -0
- bb_harness-4.0.1/src/bb_harness/techniques/extended.py +100 -0
- bb_harness-4.0.1/src/bb_harness/techniques/finite.py +242 -0
- bb_harness-4.0.1/src/bb_harness/token_budget.py +109 -0
- bb_harness-4.0.1/src/bb_harness/tools/__init__.py +1 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/__init__.py +1 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/import_common.py +104 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/io_common.py +28 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/spec_ingest_confluence.py +221 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/spec_ingest_jira.py +149 -0
- bb_harness-4.0.1/src/bb_harness/tools/_shared/spec_ingest_markdown.py +154 -0
- bb_harness-4.0.1/src/bb_harness/tools/check_utf8.py +77 -0
- bb_harness-4.0.1/src/bb_harness/tools/export_notion.py +457 -0
- bb_harness-4.0.1/src/bb_harness/tools/export_testrail.py +171 -0
- bb_harness-4.0.1/src/bb_harness/tools/export_xray.py +160 -0
- bb_harness-4.0.1/src/bb_harness/tools/import_testrail.py +349 -0
- bb_harness-4.0.1/src/bb_harness/tools/import_xray.py +285 -0
- bb_harness-4.0.1/src/bb_harness/tools/quick_validate_skill.py +305 -0
- bb_harness-4.0.1/src/bb_harness/tools/regression_graph.py +416 -0
- bb_harness-4.0.1/src/bb_harness/tools/risk_heatmap.py +324 -0
- bb_harness-4.0.1/src/bb_harness/tools/spec_ingest.py +119 -0
- bb_harness-4.0.1/src/bb_harness/tools/state_diagram.py +148 -0
- bb_harness-4.0.1/src/bb_harness/tools/validate_artifact.py +326 -0
- bb_harness-4.0.1/src/bb_harness/tools/validate_release_bundle.py +433 -0
- bb_harness-4.0.1/src/bb_harness/tools/validate_spec.py +367 -0
- bb_harness-4.0.1/src/bb_harness/tools/verify_local_benchmark.py +169 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/PKG-INFO +308 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/SOURCES.txt +132 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/dependency_links.txt +1 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/entry_points.txt +2 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/requires.txt +18 -0
- bb_harness-4.0.1/src/bb_harness.egg-info/top_level.txt +1 -0
- bb_harness-4.0.1/tests/test_batched_generation.py +459 -0
- bb_harness-4.0.1/tests/test_check_utf8.py +69 -0
- bb_harness-4.0.1/tests/test_ci_quality_evidence.py +240 -0
- bb_harness-4.0.1/tests/test_cli_coverage.py +493 -0
- bb_harness-4.0.1/tests/test_cli_dryrun.py +394 -0
- bb_harness-4.0.1/tests/test_cli_unit.py +322 -0
- bb_harness-4.0.1/tests/test_coverage_90.py +290 -0
- bb_harness-4.0.1/tests/test_coverage_engine.py +632 -0
- bb_harness-4.0.1/tests/test_efficiency_benchmark.py +73 -0
- bb_harness-4.0.1/tests/test_error_branches.py +528 -0
- bb_harness-4.0.1/tests/test_evaluate_gate.py +995 -0
- bb_harness-4.0.1/tests/test_evidence_revisions.py +199 -0
- bb_harness-4.0.1/tests/test_export.py +321 -0
- bb_harness-4.0.1/tests/test_gate_v2.py +520 -0
- bb_harness-4.0.1/tests/test_generation_efficiency.py +304 -0
- bb_harness-4.0.1/tests/test_hate_bridge_consumer_contract.py +19 -0
- bb_harness-4.0.1/tests/test_import_status.py +516 -0
- bb_harness-4.0.1/tests/test_import_testrail.py +880 -0
- bb_harness-4.0.1/tests/test_import_xray.py +812 -0
- bb_harness-4.0.1/tests/test_integration_workflow_cookbook.py +734 -0
- bb_harness-4.0.1/tests/test_local_pipeline.py +526 -0
- bb_harness-4.0.1/tests/test_local_runtime.py +208 -0
- bb_harness-4.0.1/tests/test_main_module.py +478 -0
- bb_harness-4.0.1/tests/test_pypi_release.py +76 -0
- bb_harness-4.0.1/tests/test_quick_validate_skill.py +312 -0
- bb_harness-4.0.1/tests/test_regression_graph.py +287 -0
- bb_harness-4.0.1/tests/test_requirements_confidence.py +555 -0
- bb_harness-4.0.1/tests/test_risk_heatmap.py +453 -0
- bb_harness-4.0.1/tests/test_scripts_coverage.py +416 -0
- bb_harness-4.0.1/tests/test_spec_ingest.py +661 -0
- bb_harness-4.0.1/tests/test_state_diagram.py +205 -0
- bb_harness-4.0.1/tests/test_technique_extended.py +429 -0
- bb_harness-4.0.1/tests/test_validate_artifact.py +69 -0
- bb_harness-4.0.1/tests/test_validate_release_bundle.py +255 -0
- bb_harness-4.0.1/tests/test_validate_skill_ps1.py +144 -0
- bb_harness-4.0.1/tests/test_validate_spec.py +699 -0
- bb_harness-4.0.1/tests/test_validate_spec_v2.py +74 -0
- bb_harness-4.0.1/tests/test_verify_local_benchmark.py +149 -0
- bb_harness-4.0.1/tests/test_workflow_cookbook_freshness.py +504 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Attribution-Free Commercial Licensing
|
|
2
|
+
|
|
3
|
+
The standard RNA Third-Party Service Attribution License 1.0 requires a
|
|
4
|
+
Customer-facing Attribution Notice for Paid Third-Party Service Use.
|
|
5
|
+
|
|
6
|
+
Attribution-free white-label use requires a separate written agreement.
|
|
7
|
+
That agreement may waive the attribution requirement only; it does not permit
|
|
8
|
+
anyone to claim or imply that they or another party are the original developer.
|
|
9
|
+
|
|
10
|
+
Support, SLA, implementation assistance, customization, and quality assurance
|
|
11
|
+
are not included automatically. Contract terms and fees are provided
|
|
12
|
+
individually.
|
|
13
|
+
|
|
14
|
+
Application and contact portal: https://licensing.rna4219.com/
|
bb_harness-4.0.1/LICENSE
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
RNA Third-Party Service Attribution License 1.0
|
|
2
|
+
Short name: RNA-TPSAL-1.0
|
|
3
|
+
SPDX custom identifier: LicenseRef-RNA-TPSAL-1.0
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 R_N_A
|
|
6
|
+
Original developer: RNA4219
|
|
7
|
+
|
|
8
|
+
1. License Name and Version
|
|
9
|
+
|
|
10
|
+
This license is the RNA Third-Party Service Attribution License 1.0
|
|
11
|
+
("License"). It is a source-available license that requires attribution for
|
|
12
|
+
paid third-party service use.
|
|
13
|
+
|
|
14
|
+
2. Copyright Holder
|
|
15
|
+
|
|
16
|
+
The copyright holder and Licensor is R_N_A, publicly identified through the
|
|
17
|
+
GitHub account RNA4219. "RNA4219" is the Licensor's public developer and
|
|
18
|
+
repository identifier.
|
|
19
|
+
|
|
20
|
+
3. Definitions
|
|
21
|
+
|
|
22
|
+
"Covered Materials" means the materials distributed under this License,
|
|
23
|
+
including source code, command-line interfaces, executable components, skill
|
|
24
|
+
definitions, prompts and operational instructions, reference documents,
|
|
25
|
+
templates, schemas, golden examples, evaluation rubrics, workflow definitions,
|
|
26
|
+
associated documentation, and substantial modified copies of any of the
|
|
27
|
+
foregoing. Covered Materials do not include abstract concepts, general ideas,
|
|
28
|
+
or general quality-assurance techniques as such, and this License does not
|
|
29
|
+
claim exclusive rights in them.
|
|
30
|
+
|
|
31
|
+
"Affiliate" means an entity that directly or indirectly controls, is
|
|
32
|
+
controlled by, or is under common control with an organization. "Control"
|
|
33
|
+
means the power to direct the management or policies of an entity, whether
|
|
34
|
+
through ownership, agreement, or otherwise.
|
|
35
|
+
|
|
36
|
+
"Internal Use" means use by an individual, an organization, or an Affiliate
|
|
37
|
+
controlled by that organization for products or systems that the individual,
|
|
38
|
+
organization, or Affiliate owns, operates, or provides on its own behalf. A
|
|
39
|
+
paid product or software-as-a-service offering remains Internal Use when the
|
|
40
|
+
Covered Materials are used internally and are not themselves provided as a
|
|
41
|
+
quality-assurance, testing, development-support, consulting, managed, or
|
|
42
|
+
similar service for a third party.
|
|
43
|
+
|
|
44
|
+
"Paid Third-Party Service Use" means using all or part of the Covered
|
|
45
|
+
Materials, directly or indirectly for compensation, for a third party's
|
|
46
|
+
product, system, code, release, quality decision, or deliverable. It includes
|
|
47
|
+
paid quality assurance, software testing, acceptance verification, release
|
|
48
|
+
assessment, development support, consulting, managed services, outsourcing,
|
|
49
|
+
delegated or quasi-mandate services, staff augmentation, subcontracting, and
|
|
50
|
+
similar services. Compensation includes a separate fee, monthly fee,
|
|
51
|
+
person-month or staffing fee, delegated-service fee, consulting fee,
|
|
52
|
+
subscription, a fee bundled into another service, subcontracting fee, or other
|
|
53
|
+
commercial consideration.
|
|
54
|
+
|
|
55
|
+
"Customer" means both a direct contractual customer and an organization that
|
|
56
|
+
actually owns or operates the relevant product or system and is the ultimate
|
|
57
|
+
beneficiary of the service. In a subcontracting chain, notice need not be sent
|
|
58
|
+
by direct contact outside normal contractual channels, but it must reach the
|
|
59
|
+
ultimate beneficiary's technical team through the ordinary contractual chain
|
|
60
|
+
or a customer-facing deliverable.
|
|
61
|
+
|
|
62
|
+
"Attribution Notice" means a notice containing: (a) the tool name; (b)
|
|
63
|
+
"Original developer: RNA4219"; (c) the official repository URL; (d) the
|
|
64
|
+
version or commit SHA used; and (e) "Modified: yes" or "Modified: no".
|
|
65
|
+
|
|
66
|
+
"Modified Version" means Covered Materials that have been changed. A
|
|
67
|
+
configuration file, Customer data, input data, or execution result alone does
|
|
68
|
+
not make the Covered Materials a Modified Version.
|
|
69
|
+
|
|
70
|
+
"Commercial License" means a separate written agreement with the Licensor
|
|
71
|
+
that expressly permits use without the Customer-facing Attribution Notice.
|
|
72
|
+
|
|
73
|
+
This License does not claim ownership of a user's or Customer's input data,
|
|
74
|
+
Customer data, code under test, specification under test, independently
|
|
75
|
+
created deliverable, or a general report merely generated through use of the
|
|
76
|
+
Covered Materials. A template, document, schema, rubric, skill definition, or
|
|
77
|
+
other material substantially copied from the Covered Materials remains Covered
|
|
78
|
+
Materials.
|
|
79
|
+
|
|
80
|
+
4. General License Grant
|
|
81
|
+
|
|
82
|
+
Subject to compliance with this License, the Licensor grants you a worldwide,
|
|
83
|
+
non-exclusive, royalty-free right to use, execute, copy, internally modify,
|
|
84
|
+
create derivative works from, redistribute, and make commercial use of the
|
|
85
|
+
Covered Materials. Commercial use is not prohibited. Paid Third-Party Service
|
|
86
|
+
Use is subject to Sections 6 and 7.
|
|
87
|
+
|
|
88
|
+
5. Internal and Community Use
|
|
89
|
+
|
|
90
|
+
Personal use, research, education, open-source activities, and Internal Use
|
|
91
|
+
are permitted without charge and do not require a Customer Attribution Notice.
|
|
92
|
+
This includes internal quality assurance and continuous integration for an
|
|
93
|
+
organization's own paid product or software-as-a-service offering, provided
|
|
94
|
+
the Covered Materials are not used to provide a paid service for a third party.
|
|
95
|
+
|
|
96
|
+
For the avoidance of doubt, if an activity constitutes Paid Third-Party
|
|
97
|
+
Service Use, Sections 6 and 7 apply even if the same activity may also be
|
|
98
|
+
described as personal use, research, education, or an open-source activity.
|
|
99
|
+
|
|
100
|
+
6. Paid Third-Party Service Use
|
|
101
|
+
|
|
102
|
+
Paid Third-Party Service Use is permitted without an additional license fee if
|
|
103
|
+
an Attribution Notice is provided for the engagement. The notice must be
|
|
104
|
+
provided by the earlier of: (a) delivery of the first Customer-facing
|
|
105
|
+
deliverable; or (b) 30 days after use of the Covered Materials begins for that
|
|
106
|
+
engagement. If the Covered Materials are introduced into an existing
|
|
107
|
+
engagement, the 30-day period begins on introduction.
|
|
108
|
+
|
|
109
|
+
One notice per engagement is sufficient. This License does not require a
|
|
110
|
+
notice on every screen, a permanent banner, or a notice in every test case.
|
|
111
|
+
For subcontracted work, the notice must reach the ultimate beneficiary's
|
|
112
|
+
technical team through the ordinary contractual chain or a deliverable.
|
|
113
|
+
|
|
114
|
+
7. Customer Attribution Notice
|
|
115
|
+
|
|
116
|
+
The Attribution Notice must be placed where it is reasonably accessible to at
|
|
117
|
+
least one of the Customer's technical contact, development team, quality
|
|
118
|
+
assurance team, product team, or designated project lead. Suitable locations
|
|
119
|
+
include a project README, test plan, first test report, Go/No-Go brief,
|
|
120
|
+
third-party software list, tools-used list, contract schedule, or other
|
|
121
|
+
Customer-accessible project document.
|
|
122
|
+
|
|
123
|
+
An entry only in the service provider's internal register, package metadata
|
|
124
|
+
not delivered to the Customer, an unrelated general website, or a location
|
|
125
|
+
not reasonably accessible to the Customer's technical team is insufficient.
|
|
126
|
+
The Customer name and engagement name need not be made public. A private
|
|
127
|
+
Customer-facing document is sufficient. No Customer confidential information
|
|
128
|
+
must be sent to the Licensor.
|
|
129
|
+
|
|
130
|
+
8. Attribution-Free Commercial License
|
|
131
|
+
|
|
132
|
+
White-label Paid Third-Party Service Use that omits the Customer-facing
|
|
133
|
+
Attribution Notice requires a separate written Commercial License. Such an
|
|
134
|
+
agreement waives only the attribution duties that it expressly identifies. It
|
|
135
|
+
does not grant a right to claim false authorship, and it does not automatically
|
|
136
|
+
include support, a service-level agreement, implementation assistance,
|
|
137
|
+
customization, or a quality warranty.
|
|
138
|
+
|
|
139
|
+
9. Redistribution and Modified Versions
|
|
140
|
+
|
|
141
|
+
Redistribution of the Covered Materials or a Modified Version is permitted
|
|
142
|
+
only if the distribution: (a) includes this LICENSE; (b) includes the NOTICE;
|
|
143
|
+
(c) preserves the original copyright and authorship notices; (d) clearly
|
|
144
|
+
states when the distributed materials are modified; (e) does not represent
|
|
145
|
+
the distributor or another person as the original developer; and (f) preserves
|
|
146
|
+
the original licenses and notices for Third-Party Materials.
|
|
147
|
+
|
|
148
|
+
10. Embedded Notices and Provenance
|
|
149
|
+
|
|
150
|
+
License information, copyright notices, authorship notices, and provenance
|
|
151
|
+
information already embedded in the Covered Materials or a distribution must
|
|
152
|
+
not be removed, falsified, or materially obscured on redistribution. This
|
|
153
|
+
condition does not require adding machine-readable fields to an existing
|
|
154
|
+
artifact or runtime-output schema.
|
|
155
|
+
|
|
156
|
+
11. No False Authorship
|
|
157
|
+
|
|
158
|
+
Neither this License nor a Commercial License permits you to state or imply
|
|
159
|
+
that you are the original developer, replace the original developer's name
|
|
160
|
+
with another name, cause a third party to be mistaken for the original
|
|
161
|
+
developer, falsify a copyright notice, or present a Modified Version as the
|
|
162
|
+
unmodified original.
|
|
163
|
+
|
|
164
|
+
12. No Trademark or Endorsement Rights
|
|
165
|
+
|
|
166
|
+
This License grants no right to use a project name, logo, trademark, or trade
|
|
167
|
+
name in a way that states or implies official partnership, sponsorship,
|
|
168
|
+
certification, or endorsement. Truthful identification in an Attribution
|
|
169
|
+
Notice is permitted.
|
|
170
|
+
|
|
171
|
+
13. Third-Party Materials
|
|
172
|
+
|
|
173
|
+
Materials identified as third-party, vendored, copied, or separately licensed
|
|
174
|
+
are governed by their original license terms and notices, not by this License.
|
|
175
|
+
You must retain those terms and notices. Dependency lockfiles and package
|
|
176
|
+
metadata remain the authoritative records for ordinary external dependencies.
|
|
177
|
+
|
|
178
|
+
14. Termination and Cure
|
|
179
|
+
|
|
180
|
+
Your rights under this License terminate when you fail to comply with it. For
|
|
181
|
+
a first or unintentional violation, if you receive written notice describing
|
|
182
|
+
the violation and cure it within 30 days after receipt, your rights continue
|
|
183
|
+
or, if already terminated, are automatically reinstated upon cure. Cure may
|
|
184
|
+
include providing the Customer Attribution Notice, restoring NOTICE, correcting
|
|
185
|
+
an inaccurate original-developer statement, identifying a Modified Version, or
|
|
186
|
+
adding LICENSE to a distribution. The treatment of continuing, repeated, or
|
|
187
|
+
intentional violations is not expanded by this draft beyond rights and
|
|
188
|
+
remedies available under applicable law.
|
|
189
|
+
|
|
190
|
+
15. No Warranty
|
|
191
|
+
|
|
192
|
+
THE COVERED MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
193
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,
|
|
194
|
+
FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. YOU BEAR THE
|
|
195
|
+
RISK OF USING THE COVERED MATERIALS AND OF ANY QUALITY OR RELEASE DECISION.
|
|
196
|
+
|
|
197
|
+
16. Limitation of Liability
|
|
198
|
+
|
|
199
|
+
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSOR SHALL NOT BE
|
|
200
|
+
LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT,
|
|
201
|
+
OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE COVERED
|
|
202
|
+
MATERIALS OR THEIR USE OR OTHER DEALINGS.
|
|
203
|
+
|
|
204
|
+
17. No Support or SLA
|
|
205
|
+
|
|
206
|
+
This License does not require the Licensor to provide maintenance, support,
|
|
207
|
+
updates, security fixes, implementation assistance, service levels, or any
|
|
208
|
+
quality assurance.
|
|
209
|
+
|
|
210
|
+
18. Entire License and Severability
|
|
211
|
+
|
|
212
|
+
This License states the complete public license terms for the Covered
|
|
213
|
+
Materials, except for a separate written agreement signed by the Licensor. If
|
|
214
|
+
any provision is held unenforceable, it shall be limited or severed to the
|
|
215
|
+
minimum extent necessary, and the remaining provisions shall continue in
|
|
216
|
+
effect. No governing-law, exclusive-jurisdiction, arbitration, audit-right,
|
|
217
|
+
penalty, or minimum-fee term is created by this License.
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# RNA Third-Party Service Attribution License 1.0(参考訳)
|
|
2
|
+
|
|
3
|
+
> **注意:** この日本語版は参考訳です。英語版の `LICENSE` が正文であり、
|
|
4
|
+
> 内容に食い違いがある場合は英語版が優先されます。
|
|
5
|
+
|
|
6
|
+
短縮名: RNA-TPSAL-1.0
|
|
7
|
+
SPDXカスタム識別子: LicenseRef-RNA-TPSAL-1.0
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2026 R_N_A
|
|
10
|
+
原開発者: RNA4219
|
|
11
|
+
|
|
12
|
+
## 1. ライセンス名およびバージョン
|
|
13
|
+
|
|
14
|
+
本ライセンスは「RNA Third-Party Service Attribution License 1.0」
|
|
15
|
+
(以下「本ライセンス」)です。第三者向け有償サービス利用時に帰属表示を
|
|
16
|
+
求めるsource-availableライセンスです。
|
|
17
|
+
|
|
18
|
+
## 2. 著作権者
|
|
19
|
+
|
|
20
|
+
著作権者およびライセンサーはR_N_Aであり、GitHubアカウントRNA4219を通じて
|
|
21
|
+
公開上識別されます。「RNA4219」は、ライセンサーの公開上の原開発者名および
|
|
22
|
+
リポジトリ識別子です。
|
|
23
|
+
|
|
24
|
+
## 3. 定義
|
|
25
|
+
|
|
26
|
+
「対象マテリアル(Covered Materials)」とは、本ライセンスにより配布される
|
|
27
|
+
ソースコード、CLI、実行可能コンポーネント、Skill定義、プロンプトおよび運用指示、
|
|
28
|
+
参考文書、テンプレート、schema、golden example、評価rubric、workflow定義、
|
|
29
|
+
関連文書、ならびにこれらを実質的に含む改変物をいいます。抽象的な思想、一般的な
|
|
30
|
+
アイデア、一般的なQA技法そのものは含まず、本ライセンスはそれらについて独占権を
|
|
31
|
+
主張しません。
|
|
32
|
+
|
|
33
|
+
「関連会社(Affiliate)」とは、組織を直接もしくは間接に支配し、組織に
|
|
34
|
+
支配され、または組織と共通の支配下にある主体をいいます。「支配(Control)」
|
|
35
|
+
とは、所有、契約その他の方法により、主体の経営または方針を指図する権限を
|
|
36
|
+
いいます。
|
|
37
|
+
|
|
38
|
+
「内部利用(Internal Use)」とは、個人、組織、またはその組織の支配下にある
|
|
39
|
+
関連会社が、自ら所有、運営または提供する製品もしくはシステムのために利用する
|
|
40
|
+
ことをいいます。自社の有償製品またはSaaSであっても、対象マテリアル自体を
|
|
41
|
+
第三者向けのQA、テスト、開発支援、コンサルティング、マネージドサービスその他
|
|
42
|
+
これらに類するサービスとして提供しない限り、内部利用に含まれます。
|
|
43
|
+
|
|
44
|
+
「第三者向け有償サービス利用(Paid Third-Party Service Use)」とは、対象
|
|
45
|
+
マテリアルの全部または一部を、第三者の製品、システム、コード、リリース、
|
|
46
|
+
品質判断または成果物のために、直接または間接の対価を得て使用することをいいます。
|
|
47
|
+
有償QA、ソフトウェアテスト、受入検証、リリース判定、開発支援、
|
|
48
|
+
コンサルティング、マネージドサービス、業務委託、準委任、スタッフ増強、再委託、
|
|
49
|
+
その他これらに類するサービスを含みます。対価には、個別料金、月額料金、人月料金、
|
|
50
|
+
準委任料金、コンサルティング料金、サブスクリプション、他サービスへ組み込まれた
|
|
51
|
+
料金、再委託料金、その他の商業的対価を含みます。
|
|
52
|
+
|
|
53
|
+
「顧客(Customer)」とは、直接の契約上の顧客だけでなく、対象となる製品または
|
|
54
|
+
システムを実際に所有もしくは運営し、サービスの最終的な受益者となる組織を
|
|
55
|
+
含みます。再委託の場合、通常の契約経路外で直接連絡する必要はありませんが、
|
|
56
|
+
通常の契約経路または顧客向け成果物を通じて、最終受益者側の技術チームへ通知が
|
|
57
|
+
届かなければなりません。
|
|
58
|
+
|
|
59
|
+
「帰属表示(Attribution Notice)」とは、(a) ツール名、(b)「原開発者:
|
|
60
|
+
RNA4219」、(c) 公式リポジトリURL、(d) 使用versionまたはcommit SHA、
|
|
61
|
+
(e)「改変: あり」または「改変: なし」を含む通知をいいます。
|
|
62
|
+
|
|
63
|
+
「改変版(Modified Version)」とは、対象マテリアルを変更したものをいいます。
|
|
64
|
+
設定ファイル、顧客データ、入力データまたは実行結果だけでは、対象マテリアルの
|
|
65
|
+
改変版とはなりません。
|
|
66
|
+
|
|
67
|
+
「商用ライセンス(Commercial License)」とは、顧客向け帰属表示なしの利用を
|
|
68
|
+
明示的に許可する、ライセンサーとの別途の書面契約をいいます。
|
|
69
|
+
|
|
70
|
+
本ライセンスは、利用者または顧客の入力データ、顧客データ、テスト対象コード、
|
|
71
|
+
テスト対象仕様、独自に作成された成果物、または対象マテリアルを利用しただけで
|
|
72
|
+
生成された一般的なレポートについて所有権を主張しません。対象マテリアルから
|
|
73
|
+
実質的に複製されたテンプレート、文書、schema、rubric、Skill定義その他の
|
|
74
|
+
マテリアルは、引き続き対象マテリアルです。
|
|
75
|
+
|
|
76
|
+
## 4. 一般許諾
|
|
77
|
+
|
|
78
|
+
本ライセンスを遵守することを条件として、ライセンサーは、対象マテリアルを使用、
|
|
79
|
+
実行、複製、内部変更、派生物作成、再配布および商用利用するための、全世界的、
|
|
80
|
+
非独占的かつ追加ロイヤルティ不要の権利を許諾します。商用利用は禁止されません。
|
|
81
|
+
第三者向け有償サービス利用には第6条および第7条が適用されます。
|
|
82
|
+
|
|
83
|
+
## 5. 内部利用およびコミュニティ利用
|
|
84
|
+
|
|
85
|
+
個人利用、研究、教育、オープンソース活動および内部利用は無償で許可され、
|
|
86
|
+
顧客向け帰属表示を必要としません。対象マテリアルを第三者向け有償サービスへ
|
|
87
|
+
用いない限り、自社の有償製品またはSaaSの内部QAやCIも含まれます。
|
|
88
|
+
|
|
89
|
+
疑義を避けるため付言すると、ある活動が第三者向け有償サービス利用に
|
|
90
|
+
該当する場合、その活動が個人利用、研究、教育またはオープンソース活動とも
|
|
91
|
+
表現できる場合であっても、第6条および第7条が適用されます。
|
|
92
|
+
|
|
93
|
+
## 6. 第三者向け有償サービス利用
|
|
94
|
+
|
|
95
|
+
第三者向け有償サービス利用は、案件について帰属表示を行うことを条件として、
|
|
96
|
+
追加のライセンス料金なしで許可されます。通知期限は、(a) 最初の顧客向け成果物を
|
|
97
|
+
交付する時点、または (b) その案件で対象マテリアルの使用を開始してから30日以内
|
|
98
|
+
のいずれか早い時点です。既存案件へ途中導入した場合、30日間は導入時から起算します。
|
|
99
|
+
|
|
100
|
+
通知は案件単位で1回で十分です。毎回の画面表示、常時バナー、すべてのテスト
|
|
101
|
+
ケースへの表示は求めません。再委託では、通常の契約経路または成果物を通じて
|
|
102
|
+
最終受益者側の技術チームへ通知を届けなければなりません。
|
|
103
|
+
|
|
104
|
+
## 7. 顧客向け帰属表示
|
|
105
|
+
|
|
106
|
+
帰属表示は、顧客の技術担当者、開発チーム、QAチーム、プロダクトチームまたは
|
|
107
|
+
指定されたプロジェクト責任者の少なくとも一者が合理的に確認できる場所へ
|
|
108
|
+
掲載しなければなりません。プロジェクトREADME、テスト計画書、初回テスト報告書、
|
|
109
|
+
Go/No-Go brief、第三者ソフトウェア一覧、使用ツール一覧、契約別紙または顧客が
|
|
110
|
+
閲覧できるその他のプロジェクト文書を利用できます。
|
|
111
|
+
|
|
112
|
+
サービス提供者の社内台帳だけへの記載、顧客へ渡されないpackage metadata、
|
|
113
|
+
案件から辿れない一般Webページ、または顧客の技術担当者が合理的に閲覧できない
|
|
114
|
+
場所への記載は不十分です。顧客名や案件名を一般公開する必要はありません。
|
|
115
|
+
顧客向けの非公開文書で足ります。顧客の秘密情報をライセンサーへ送る義務も
|
|
116
|
+
ありません。
|
|
117
|
+
|
|
118
|
+
## 8. 帰属表示なしの商用ライセンス
|
|
119
|
+
|
|
120
|
+
顧客向け帰属表示を省略するホワイトラベルでの第三者向け有償サービス利用には、
|
|
121
|
+
別途書面による商用ライセンスが必要です。個別契約が免除するのは、明示された
|
|
122
|
+
帰属表示義務だけです。虚偽の原開発者表示を行う権利は付与されません。また、
|
|
123
|
+
サポート、SLA、導入支援、カスタマイズまたは品質保証は自動的に含まれません。
|
|
124
|
+
|
|
125
|
+
## 9. 再配布および改変版
|
|
126
|
+
|
|
127
|
+
対象マテリアルまたは改変版を再配布する場合は、(a) 本LICENSE、(b) NOTICEを
|
|
128
|
+
同梱し、(c) 原著作権表示および原開発者表示を維持し、(d) 改変版である場合は
|
|
129
|
+
その旨を明示し、(e) 配布者または別の者を原開発者と誤認させず、(f) 第三者
|
|
130
|
+
マテリアルの元ライセンスおよびnoticeを維持しなければなりません。
|
|
131
|
+
|
|
132
|
+
## 10. 埋込みnoticeおよびprovenance
|
|
133
|
+
|
|
134
|
+
対象マテリアルまたは配布物へ既に埋め込まれたライセンス情報、著作権表示、
|
|
135
|
+
原開発者表示およびprovenance情報は、再配布時に削除、偽造または実質的に
|
|
136
|
+
隠蔽してはなりません。本条件は、既存artifact schemaまたはruntime output
|
|
137
|
+
schemaへのmachine-readable field追加を要求するものではありません。
|
|
138
|
+
|
|
139
|
+
## 11. 虚偽の原開発者表示の禁止
|
|
140
|
+
|
|
141
|
+
本ライセンスおよび商用ライセンスは、自らを原開発者と表示もしくは示唆すること、
|
|
142
|
+
原開発者名を別名へ置き換えること、第三者を原開発者と誤認させること、著作権表示を
|
|
143
|
+
偽造すること、または改変版を未改変の原版として表示することを許可しません。
|
|
144
|
+
|
|
145
|
+
## 12. 商標および推奨に関する権利の不許諾
|
|
146
|
+
|
|
147
|
+
本ライセンスは、公式提携、スポンサー、認定または推奨を示し、もしくは誤認させる
|
|
148
|
+
方法でプロジェクト名、ロゴ、商標または商号を使用する権利を付与しません。
|
|
149
|
+
帰属表示における事実に即した識別は許可されます。
|
|
150
|
+
|
|
151
|
+
## 13. 第三者マテリアル
|
|
152
|
+
|
|
153
|
+
第三者由来、vendored、copiedまたは別ライセンスと明示されたマテリアルには、
|
|
154
|
+
本ライセンスではなく元のライセンス条件およびnoticeが適用されます。それらの
|
|
155
|
+
条件およびnoticeを維持しなければなりません。通常の外部依存関係については、
|
|
156
|
+
dependency lockfileおよびpackage metadataを正本とします。
|
|
157
|
+
|
|
158
|
+
## 14. 終了および是正
|
|
159
|
+
|
|
160
|
+
本ライセンスに違反した場合、本ライセンスに基づく権利は終了します。初回または
|
|
161
|
+
非故意の違反について、違反内容を記載した書面通知を受領してから30日以内に
|
|
162
|
+
是正したときは、権利は継続し、既に終了していた場合は是正時に自動復活します。
|
|
163
|
+
是正には、顧客への帰属表示追加、NOTICEの復元、誤った原開発者表示の修正、
|
|
164
|
+
改変表示の追加、配布物へのLICENSE追加を含み得ます。継続的、反復的または
|
|
165
|
+
故意の違反の扱いについて、本ドラフトは適用法上の権利および救済を超える条件を
|
|
166
|
+
追加しません。
|
|
167
|
+
|
|
168
|
+
## 15. 無保証
|
|
169
|
+
|
|
170
|
+
対象マテリアルは「現状有姿」で提供され、商品性、特定目的適合性、権原および
|
|
171
|
+
非侵害を含む、明示または黙示のいかなる保証もありません。対象マテリアルの利用、
|
|
172
|
+
品質判断およびリリース判断のリスクは利用者が負います。
|
|
173
|
+
|
|
174
|
+
## 16. 責任制限
|
|
175
|
+
|
|
176
|
+
適用法が許す最大限の範囲で、ライセンサーは、契約、不法行為その他の法理を問わず、
|
|
177
|
+
対象マテリアルまたはその利用その他の取扱いから生じ、または関連する請求、損害
|
|
178
|
+
その他の責任を負いません。
|
|
179
|
+
|
|
180
|
+
## 17. サポートおよびSLAの不存在
|
|
181
|
+
|
|
182
|
+
本ライセンスは、ライセンサーに保守、サポート、更新、security fix、導入支援、
|
|
183
|
+
サービスレベルまたは品質保証を提供する義務を課しません。
|
|
184
|
+
|
|
185
|
+
## 18. 完全合意および可分性
|
|
186
|
+
|
|
187
|
+
本ライセンスは、ライセンサーが署名した別途書面契約を除き、対象マテリアルの
|
|
188
|
+
公開ライセンス条件の全部を構成します。いずれかの規定が執行不能と判断された場合、
|
|
189
|
+
必要最小限の範囲で制限または分離され、残りの規定は引き続き有効です。本ライセンス
|
|
190
|
+
は、準拠法、専属管轄、仲裁、監査権、違約金または最低料金を設定しません。
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Licensing
|
|
2
|
+
|
|
3
|
+
## Current license
|
|
4
|
+
|
|
5
|
+
- License: RNA Third-Party Service Attribution License 1.0
|
|
6
|
+
- Short name: RNA-TPSAL-1.0
|
|
7
|
+
- SPDX custom identifier: LicenseRef-RNA-TPSAL-1.0
|
|
8
|
+
- Model: source-available; attribution-required for paid third-party service use
|
|
9
|
+
- Public source: https://github.com/RNA4219/manual-bb-test-harness
|
|
10
|
+
- First version under this license: 3.0.0
|
|
11
|
+
- First repository snapshot offered under this license: `7aac444b477860eb46050ff2b2ebedff2a55da30`
|
|
12
|
+
|
|
13
|
+
Personal use, research, education, open-source activities, and internal
|
|
14
|
+
business use are permitted without charge. Paid third-party service use is
|
|
15
|
+
permitted without an additional fee when the one-time Customer Attribution
|
|
16
|
+
Notice required by `LICENSE` is provided. Attribution-free white-label use
|
|
17
|
+
requires a separate written commercial license.
|
|
18
|
+
|
|
19
|
+
Covered Materials in this repository expressly include the Skill,
|
|
20
|
+
references, goldens, schemas, templates, evaluation rubric, prompts,
|
|
21
|
+
operational instructions, workflow definitions, CLI, source code, and
|
|
22
|
+
associated documentation.
|
|
23
|
+
|
|
24
|
+
## Legacy MIT boundary
|
|
25
|
+
|
|
26
|
+
- Last MIT-tagged release version: 2.0.0
|
|
27
|
+
- Last MIT-tagged release tag: v2.0.0
|
|
28
|
+
- Last MIT-tagged release commit: `2ee85a0e8a62fc423feed1a23e0fdc8f4fa69631`
|
|
29
|
+
- Last public commit offered under MIT: `1d8619b2067421938d2474485dd36abcf86af634`
|
|
30
|
+
- First repository snapshot offered under RNA-TPSAL-1.0: `7aac444b477860eb46050ff2b2ebedff2a55da30`
|
|
31
|
+
|
|
32
|
+
The repository snapshot at and after
|
|
33
|
+
`7aac444b477860eb46050ff2b2ebedff2a55da30` is offered under
|
|
34
|
+
RNA-TPSAL-1.0. Repository snapshots before that commit remain available under
|
|
35
|
+
the MIT License. No permission previously granted under the MIT License is
|
|
36
|
+
revoked.
|
|
37
|
+
|
|
38
|
+
## Customer attribution template / 顧客向け帰属表示テンプレート
|
|
39
|
+
|
|
40
|
+
This engagement uses manual-bb-test-harness, originally developed by RNA4219.
|
|
41
|
+
Official source: https://github.com/RNA4219/manual-bb-test-harness
|
|
42
|
+
Version or commit: <VERSION_OR_COMMIT>
|
|
43
|
+
Modified: <YES_OR_NO>
|
|
44
|
+
|
|
45
|
+
本案件では、RNA4219が原開発者であるmanual-bb-test-harnessを使用しています。
|
|
46
|
+
公式リポジトリ:
|
|
47
|
+
https://github.com/RNA4219/manual-bb-test-harness
|
|
48
|
+
使用バージョンまたはcommit:
|
|
49
|
+
<VERSION_OR_COMMIT>
|
|
50
|
+
改変:
|
|
51
|
+
<あり・なし>
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
Both tools may be listed together once in a single customer-facing tools-used
|
|
55
|
+
document when both are used on the same engagement.
|
bb_harness-4.0.1/NOTICE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# NOTICE
|
|
2
|
+
|
|
3
|
+
manual-bb-test-harness
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 R_N_A
|
|
6
|
+
Original developer: RNA4219
|
|
7
|
+
Official repository: https://github.com/RNA4219/manual-bb-test-harness
|
|
8
|
+
|
|
9
|
+
Licensed under the RNA Third-Party Service Attribution License 1.0
|
|
10
|
+
(RNA-TPSAL-1.0). This is source-available software; attribution is required
|
|
11
|
+
for paid third-party service use.
|
|
12
|
+
|
|
13
|
+
## Customer attribution template / 顧客向け帰属表示テンプレート
|
|
14
|
+
|
|
15
|
+
This engagement uses manual-bb-test-harness, originally developed by RNA4219.
|
|
16
|
+
Official source: https://github.com/RNA4219/manual-bb-test-harness
|
|
17
|
+
Version or commit: <VERSION_OR_COMMIT>
|
|
18
|
+
Modified: <YES_OR_NO>
|
|
19
|
+
|
|
20
|
+
本案件では、RNA4219が原開発者であるmanual-bb-test-harnessを使用しています。
|
|
21
|
+
公式リポジトリ:
|
|
22
|
+
https://github.com/RNA4219/manual-bb-test-harness
|
|
23
|
+
使用バージョンまたはcommit:
|
|
24
|
+
<VERSION_OR_COMMIT>
|
|
25
|
+
改変:
|
|
26
|
+
<あり・なし>
|
|
27
|
+
|
|
28
|
+
When both domain-lakda-runner and manual-bb-test-harness are used, their two
|
|
29
|
+
entries may be included together in one customer-facing tools-used list.
|