@grubbylee/aiba 0.1.1
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/GENERATED_OUTPUT_EXCEPTION.md +30 -0
- package/LICENSE +661 -0
- package/README.md +20 -0
- package/capabilities/audit/README.md +7 -0
- package/capabilities/audit/capability.yaml +54 -0
- package/capabilities/audit/recipes/typescript-reference.yaml +64 -0
- package/capabilities/authorization/README.md +7 -0
- package/capabilities/authorization/capability.yaml +66 -0
- package/capabilities/authorization/recipes/typescript-reference.yaml +73 -0
- package/capabilities/identity/README.md +8 -0
- package/capabilities/identity/capability.yaml +63 -0
- package/capabilities/identity/recipes/typescript-reference.yaml +75 -0
- package/capabilities/notification/README.md +7 -0
- package/capabilities/notification/capability.yaml +71 -0
- package/capabilities/notification/recipes/typescript-reference.yaml +73 -0
- package/capabilities/review-access/README.md +14 -0
- package/capabilities/review-access/capability.yaml +65 -0
- package/capabilities/review-access/recipes/typescript-reference.yaml +78 -0
- package/capabilities/review-access/recipes/wechat-native.yaml +73 -0
- package/capabilities/users/README.md +8 -0
- package/capabilities/users/capability.yaml +76 -0
- package/capabilities/users/recipes/typescript-reference.yaml +75 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +609 -0
- package/dist/render.d.ts +4 -0
- package/dist/render.js +54 -0
- package/package.json +41 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# AIBA Generated Output Exception
|
|
2
|
+
|
|
3
|
+
Version 1.0, 26 July 2026
|
|
4
|
+
|
|
5
|
+
This exception is an additional permission under section 7 of the GNU Affero
|
|
6
|
+
General Public License version 3.
|
|
7
|
+
|
|
8
|
+
To the extent that output produced through AIBA would otherwise be covered by
|
|
9
|
+
the GNU Affero General Public License solely because it reproduces or adapts
|
|
10
|
+
AIBA material expressly identified as generated-output material, the AIBA
|
|
11
|
+
copyright holders grant recipients permission to use, reproduce, modify,
|
|
12
|
+
sublicense, and distribute that output under terms of their choice, including
|
|
13
|
+
proprietary terms.
|
|
14
|
+
|
|
15
|
+
For this exception, "generated-output material" means application source,
|
|
16
|
+
configuration, tests, or documentation emitted into a user's project by AIBA or
|
|
17
|
+
an Agent following an AIBA capability recipe, where that material is identified
|
|
18
|
+
in an AIBA operation plan or ancestry record as `generated`, `shared`, or
|
|
19
|
+
`project` output.
|
|
20
|
+
|
|
21
|
+
This exception does not change the license of AIBA itself. It does not apply to
|
|
22
|
+
the AIBA CLI, Core, Registry Server, capability contracts, recipes, migrations,
|
|
23
|
+
verification logic, or other AIBA files distributed outside a user's generated
|
|
24
|
+
project. It grants no rights in third-party material, trademarks, user prompts,
|
|
25
|
+
or user-owned business code.
|
|
26
|
+
|
|
27
|
+
You may remove this exception from a modified version of AIBA. If you do, you
|
|
28
|
+
must also remove any representation that the modified version grants this
|
|
29
|
+
exception. This exception is not legal advice; adopters should obtain advice
|
|
30
|
+
appropriate to their jurisdiction and use case.
|