invairiant 0.2.3__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.
Files changed (51) hide show
  1. invairiant-0.2.3.dist-info/METADATA +56 -0
  2. invairiant-0.2.3.dist-info/RECORD +51 -0
  3. invairiant-0.2.3.dist-info/WHEEL +4 -0
  4. invairiant-0.2.3.dist-info/entry_points.txt +2 -0
  5. invairiant-0.2.3.dist-info/licenses/LICENSE +201 -0
  6. invairiant-0.2.3.dist-info/licenses/NOTICE +12 -0
  7. invairiant.py +1390 -0
  8. invairiant_framework/examples/README.md +21 -0
  9. invairiant_framework/examples/ai-agent-system/invairiant.config.yml +70 -0
  10. invairiant_framework/examples/infra-service/example-audit.md +216 -0
  11. invairiant_framework/examples/infra-service/example-findings.json +71 -0
  12. invairiant_framework/examples/infra-service/example-report.json +129 -0
  13. invairiant_framework/examples/infra-service/invairiant.config.yml +59 -0
  14. invairiant_framework/examples/minimal-webapp/invairiant.config.yml +50 -0
  15. invairiant_framework/lenses/README.md +39 -0
  16. invairiant_framework/lenses/ai-generated-code/generated-surface-area.md +189 -0
  17. invairiant_framework/lenses/ai-generated-code/oracle-boundary.md +193 -0
  18. invairiant_framework/lenses/ai-generated-code/prompt-code-drift.md +190 -0
  19. invairiant_framework/lenses/ai-generated-code/review-bottleneck.md +188 -0
  20. invairiant_framework/lenses/core/brooks.md +200 -0
  21. invairiant_framework/lenses/core/cormen.md +200 -0
  22. invairiant_framework/lenses/core/dijkstra.md +200 -0
  23. invairiant_framework/lenses/core/mcconnell.md +200 -0
  24. invairiant_framework/lenses/core/parnas.md +189 -0
  25. invairiant_framework/lenses/core/turing.md +191 -0
  26. invairiant_framework/lenses/correctness/cormen.md +17 -0
  27. invairiant_framework/lenses/correctness/harel.md +17 -0
  28. invairiant_framework/lenses/correctness/hoare.md +199 -0
  29. invairiant_framework/lenses/correctness/turing.md +17 -0
  30. invairiant_framework/lenses/domain/distributed-systems.md +196 -0
  31. invairiant_framework/lenses/domain/network-persistence.md +198 -0
  32. invairiant_framework/lenses/domain/product-operability.md +196 -0
  33. invairiant_framework/lenses/implementation/kernighan.md +199 -0
  34. invairiant_framework/lenses/implementation/liskov.md +199 -0
  35. invairiant_framework/lenses/implementation/ousterhout.md +200 -0
  36. invairiant_framework/lenses/implementation/ritchie.md +199 -0
  37. invairiant_framework/lenses/security-safety/leveson.md +198 -0
  38. invairiant_framework/lenses/security-safety/operational-resilience.md +214 -0
  39. invairiant_framework/lenses/security-safety/privacy-knowledge-minimization.md +208 -0
  40. invairiant_framework/lenses/security-safety/saltzer-schroeder.md +208 -0
  41. invairiant_framework/lenses/security-safety/security-threat.md +218 -0
  42. invairiant_framework/lenses/systems/harel.md +199 -0
  43. invairiant_framework/lenses/systems/kleppmann.md +199 -0
  44. invairiant_framework/lenses/systems/lamport.md +199 -0
  45. invairiant_framework/lenses/systems/tanenbaum.md +199 -0
  46. invairiant_framework/lenses/systems/von-neumann.md +199 -0
  47. invairiant_framework/schemas/audit-report.schema.json +118 -0
  48. invairiant_framework/schemas/evidence-bundle.schema.json +92 -0
  49. invairiant_framework/schemas/finding.schema.json +160 -0
  50. invairiant_framework/schemas/invairiant.config.schema.json +127 -0
  51. invairiant_framework/schemas/lens.schema.json +70 -0
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: invairiant
3
+ Version: 0.2.3
4
+ Summary: Helper CLI for the invAIriant agentic audit protocol — it serves the audit, it does not audit.
5
+ Project-URL: Homepage, https://github.com/mindicator/invairiant
6
+ Project-URL: Documentation, https://github.com/mindicator/invairiant/blob/main/docs/cli.md
7
+ Author: mindicator & silicon bags quartet
8
+ License: Apache-2.0
9
+ License-File: LICENSE
10
+ License-File: NOTICE
11
+ Keywords: architecture,audit,code-review,evidence,llm
12
+ Requires-Python: >=3.9
13
+ Requires-Dist: jsonschema>=4.18
14
+ Requires-Dist: pyyaml>=6
15
+ Provides-Extra: dev
16
+ Requires-Dist: pytest>=7; extra == 'dev'
17
+ Description-Content-Type: text/markdown
18
+
19
+ # `invairiant` CLI
20
+
21
+ Infrastructure around the agentic audit — **not an architecture auditor.** No
22
+ lenses, no findings, no scores. All judgment lives in the
23
+ [`/invairiant` skill](../skill/SKILL.md); this CLI scaffolds, validates,
24
+ collects evidence, renders, and gates.
25
+
26
+ Full spec and rationale: [`docs/cli.md`](../docs/cli.md).
27
+
28
+ ## Install
29
+
30
+ ```bash
31
+ pip install -e . # or: pipx install -e . → gives the `invairiant` command
32
+ ```
33
+
34
+ (No install? Run `python3 cli/invairiant.py <command>` directly.) Python 3.9+;
35
+ `jsonschema` + `pyyaml` are pulled in as dependencies.
36
+
37
+ ## Commands
38
+
39
+ | Command | Purpose |
40
+ |---|---|
41
+ | `init [--type T]` | scaffold `invairiant.config.yml` |
42
+ | `collect [--range A..B] [--out F]` | build a deterministic evidence bundle (candidate pointers only) |
43
+ | `validate-config [paths…]` | schema-check configs + cross-check lens ids |
44
+ | `validate-report <paths…> [--schema-only] [--md]` | schema **+ semantic** checks on a report |
45
+ | `render-report <report.json> [--out F]` | report JSON → Markdown |
46
+ | `render-comment <report.json> [--out F]` | report JSON → paste-ready PR comment |
47
+ | `ci-gate <report.json> [--max-severity S0\|S1]` | exit non-zero on open S0/S1 |
48
+ | `record <report.json> [--force]` | append distilled, **sanitized** memory to `.invairiant/history/` |
49
+ | `history [--lens L]` | lens-score trends + recurring findings |
50
+
51
+ `collect-evidence` is a thin alias for the adapter-only subset of `collect`.
52
+
53
+ Full spec: [`docs/cli.md`](../docs/cli.md). Worked flow:
54
+ [`docs/demo.md`](../docs/demo.md). Resolves the framework via
55
+ `$INVAIRIANT_HOME`, the repo layout, or by searching upward from the current
56
+ directory.
@@ -0,0 +1,51 @@
1
+ invairiant.py,sha256=aXkvJ8eL91ISY9KwtXKFp9fkrGz2_MrKKXMSgytXmXQ,59424
2
+ invairiant_framework/examples/README.md,sha256=bOvPvpa6zDDp1tUII-n-RZw-vortOlDaalPbbL4NUUw,1182
3
+ invairiant_framework/examples/ai-agent-system/invairiant.config.yml,sha256=KEb9T5YFLMCrsPsaIIxgtH1cEi2A3dopV8-yafTU7F0,1767
4
+ invairiant_framework/examples/infra-service/example-audit.md,sha256=KF9rkVWGWqe-n6f_-lgQ1egMB34ZhgiyUsN6AFcePJQ,11748
5
+ invairiant_framework/examples/infra-service/example-findings.json,sha256=OlQtXtZ9vGyaFzBoyLcC1As8YDLTUI-BFSWMSj1fDYg,3437
6
+ invairiant_framework/examples/infra-service/example-report.json,sha256=XXrSY5EjGzLT8zBkqSWRdpX3y-kVk_iUAopcE0PSRGQ,9173
7
+ invairiant_framework/examples/infra-service/invairiant.config.yml,sha256=ZiqaNZkhBltsXELh9ZloKHvqqkGwWoxL07P1WzkBWu4,1272
8
+ invairiant_framework/examples/minimal-webapp/invairiant.config.yml,sha256=ZR3cCZP-e_ITcar9fPpqSdu06lx_iUJdiiqr4HQ2j2A,1084
9
+ invairiant_framework/lenses/README.md,sha256=4X_h3U7-ekp2cECbXA_PgulAMdOb1DFFsh0XosSXmfg,2294
10
+ invairiant_framework/lenses/ai-generated-code/generated-surface-area.md,sha256=vzMwbFuQ8GDVaPrT_9FBY1eRRqpMo1hr7Rg0o56SjHA,7378
11
+ invairiant_framework/lenses/ai-generated-code/oracle-boundary.md,sha256=E_5TDoHczEQdEUlcxfJKVRBtiGKqzOf0zlHh-15SB3A,8052
12
+ invairiant_framework/lenses/ai-generated-code/prompt-code-drift.md,sha256=n0WwzB0xQVdJBOKijk1DWYao5c-y3MRE3gynC6SiV9s,7653
13
+ invairiant_framework/lenses/ai-generated-code/review-bottleneck.md,sha256=TYQQlrjDRMt9eiaWkVm13ObqCncHR9-P94Iwz2_pA64,7334
14
+ invairiant_framework/lenses/core/brooks.md,sha256=uU9U8BzvNnZqCDQUl7V5bUDl0zOEbHoWMs0lBScUQic,8325
15
+ invairiant_framework/lenses/core/cormen.md,sha256=223DKxniZUiKz5qwXGOguHGPCROlyykw1Mw4sdNcEjc,8525
16
+ invairiant_framework/lenses/core/dijkstra.md,sha256=E_Ug0uUeU0r4XcGXvObp2uj6KXE-pOXGanGoTnv6_KE,8109
17
+ invairiant_framework/lenses/core/mcconnell.md,sha256=JNyBCALMRqM0vz3b5onvGfAZrePSUFzv7MM6SkEYlAE,8020
18
+ invairiant_framework/lenses/core/parnas.md,sha256=QySSHxXMDmuZ2uNOFl--VywJUbQhejljtbZ8a5XChhM,7534
19
+ invairiant_framework/lenses/core/turing.md,sha256=EWlOBGXweM9oGjZJrEO0Fw1xg6YpFfQq2tAyElmtrYI,7877
20
+ invairiant_framework/lenses/correctness/cormen.md,sha256=2gOcld4Lvr2Ybu4emLeL3Ni_6xEbtAiDFaYUQgI0hOU,883
21
+ invairiant_framework/lenses/correctness/harel.md,sha256=qbVNjB2LE6fmSzeY9OH-lQnw5A9vV3BUJidkiLo73RM,869
22
+ invairiant_framework/lenses/correctness/hoare.md,sha256=EkPfLevjXZhGVNM9UtYz7FGtUkm2G4rivRYFioZFjsg,8303
23
+ invairiant_framework/lenses/correctness/turing.md,sha256=vLo036ETJMOQVcHtQiNzWh98HNRSCvbZAZZdzShXmV4,883
24
+ invairiant_framework/lenses/domain/distributed-systems.md,sha256=TYP2tEGH0XYtLJZLrvP072fVb20CyQ80gO4VkiMxnDc,7884
25
+ invairiant_framework/lenses/domain/network-persistence.md,sha256=uWfWLC28dIHkh6rAdMURY8h-57vlYpJnMWKT0bvCQEw,8349
26
+ invairiant_framework/lenses/domain/product-operability.md,sha256=o44FpQSADEGnzeatKK548RHHaqSmnI7dN_EdaCG8Ebc,7680
27
+ invairiant_framework/lenses/implementation/kernighan.md,sha256=VynqY-xXhkJfvYQo8VKc5ZEIKc8pnuFU0zNaWaK53bE,8180
28
+ invairiant_framework/lenses/implementation/liskov.md,sha256=vyS2jeizEIlw1m_uU6tFI6jB6Y4795oMhTUI1rC8E1U,8248
29
+ invairiant_framework/lenses/implementation/ousterhout.md,sha256=QXADCPqKR_W_3Oldo2RtGZ17zSzd6-MGV80z7adyO5g,8240
30
+ invairiant_framework/lenses/implementation/ritchie.md,sha256=HS_hbYwRHYTpH7raNNbhS09uVqLEv41106NhOAx5D-c,8426
31
+ invairiant_framework/lenses/security-safety/leveson.md,sha256=48C5uMSx5au2GqZ8r6_6EoGWuhGXu0ck6jLAgzx3_wY,8612
32
+ invairiant_framework/lenses/security-safety/operational-resilience.md,sha256=-3LrK-VcHzJCo4poE9_mWIJwb2FNqgpWsTCPqiEJYZ4,9352
33
+ invairiant_framework/lenses/security-safety/privacy-knowledge-minimization.md,sha256=NeBgi1PEzJNWqqEgzWcbMnsgmi3cDyWr97JYmeAKwus,8788
34
+ invairiant_framework/lenses/security-safety/saltzer-schroeder.md,sha256=t1EhgjXbBKzO6xX-0DvS6A5ZbFOjjs3Gk8tjyCNX8d4,8804
35
+ invairiant_framework/lenses/security-safety/security-threat.md,sha256=5adIhyHgfeykXJAvYFV1sjsqUxxOpuJ8Sj3jFBH3stM,9234
36
+ invairiant_framework/lenses/systems/harel.md,sha256=zBprqZGwxMrvzRpHSc5koUHutRtEwtO4kTSqv9bBWGs,8309
37
+ invairiant_framework/lenses/systems/kleppmann.md,sha256=ez0XMRAMr5oo3aLvpGGojnvfgumK4X10rEPO0GYjJC4,8337
38
+ invairiant_framework/lenses/systems/lamport.md,sha256=DVWKf7RTZIQY5aMob2sbIPlmwb74ZXyI5IWc5izwnMo,7936
39
+ invairiant_framework/lenses/systems/tanenbaum.md,sha256=yrv6L5vWYzdvXD6tCf2WKYDQa_43-SjK0ESO4xux7ak,8421
40
+ invairiant_framework/lenses/systems/von-neumann.md,sha256=1TD0e1M0xYzO98FFfr6jsEmU-R5j-KtelnZf9fEjutg,8159
41
+ invairiant_framework/schemas/audit-report.schema.json,sha256=49_6YOBxEoYMIFSGFlbtrpcrNDFS56PXxZy8fhuc0fU,4882
42
+ invairiant_framework/schemas/evidence-bundle.schema.json,sha256=j6gvBUxcgxJgkYsb6GwSPX21a7rk_CFhUW9Dn7vbL_M,4860
43
+ invairiant_framework/schemas/finding.schema.json,sha256=eOU9N4K6-vNSHGPDkmjtZGm7-LhMD0Gse9nO_9uv1Ak,7267
44
+ invairiant_framework/schemas/invairiant.config.schema.json,sha256=skiRbqYUy_k8btyz3S33akaxDJk0XgQbKxCvbpIsFbI,5466
45
+ invairiant_framework/schemas/lens.schema.json,sha256=JHFJherVU4RbJjtcIv9eiTd0P2y2IAjBkcfIK8c7gkg,2961
46
+ invairiant-0.2.3.dist-info/METADATA,sha256=b0x6fJ0Fa5R9BqYu-NGT2IpIOO6er_f585HZqrQb91w,2307
47
+ invairiant-0.2.3.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
48
+ invairiant-0.2.3.dist-info/entry_points.txt,sha256=QZeA81iyyFKC_p_kIvd1RzU02bzaCS6ZKWeHoT3JdTE,47
49
+ invairiant-0.2.3.dist-info/licenses/LICENSE,sha256=5G_kkHAtgti7_XlyVm8j2cXBXZnsIPFpTUbcKNINRWk,11359
50
+ invairiant-0.2.3.dist-info/licenses/NOTICE,sha256=BP65tmZ7rDMcMdDhxHypEu17TsAp2oM4BkSK0oYiESA,656
51
+ invairiant-0.2.3.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ invairiant = invairiant:main
@@ -0,0 +1,201 @@
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 not
32
+ limited to compiled object code, generated documentation, and
33
+ 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 (an
38
+ 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
43
+ modifications represent, as a whole, an original work of authorship.
44
+ For the purposes of this License, Derivative Works shall not include
45
+ works that remain separable from, or merely link (or bind by name)
46
+ to the interfaces of, the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including the
49
+ original version of the Work and any modifications or additions to
50
+ that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright
52
+ owner or by an individual or Legal Entity authorized to submit on
53
+ behalf of the copyright owner. For the purposes of this definition,
54
+ "submitted" means any form of electronic, verbal, or written
55
+ communication sent to the Licensor or its representatives, including
56
+ but not limited to communication on electronic mailing lists, source
57
+ code control systems, and issue tracking systems that are managed by,
58
+ or on behalf of, the Licensor for the purpose of discussing and
59
+ improving the Work, but excluding communication that is conspicuously
60
+ marked or otherwise designated in writing by the copyright owner as
61
+ "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have
78
+ made, use, offer to sell, sell, import, and otherwise transfer the
79
+ Work, where such license applies only to those patent claims
80
+ licensable by such Contributor that are necessarily infringed by
81
+ their Contribution(s) alone or by combination of their
82
+ Contribution(s) with the Work to which such Contribution(s) was
83
+ submitted. If You institute patent litigation against any entity
84
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
85
+ the Work or a Contribution incorporated within the Work constitutes
86
+ direct or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate as of
88
+ the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the Work
91
+ or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You meet
93
+ the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or Derivative
96
+ Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works that
102
+ You distribute, all copyright, patent, trademark, and attribution
103
+ notices from the Source form of the Work, excluding those notices
104
+ that do not pertain to any part of 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 of
111
+ the following places: within a NOTICE text file distributed as
112
+ 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 do not
117
+ modify the License. You may add Your own attribution notices
118
+ within Derivative Works that You distribute, alongside or as an
119
+ addendum to the NOTICE text from the Work, provided that such
120
+ additional attribution notices cannot be construed as modifying
121
+ 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 for
125
+ use, reproduction, or distribution of Your modifications, or for any
126
+ such Derivative Works as a whole, provided Your use, reproduction,
127
+ and distribution of the Work otherwise complies with the conditions
128
+ 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 agreed
144
+ to in writing, Licensor provides the Work (and each Contributor
145
+ provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES
146
+ OR CONDITIONS OF ANY KIND, either express or implied, including,
147
+ without limitation, any warranties or conditions of TITLE,
148
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR
149
+ 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 other
162
+ commercial damages or losses), even if such Contributor has been
163
+ advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing the
166
+ Work or Derivative Works thereof, You may choose to offer, and charge
167
+ a fee for, acceptance of support, warranty, indemnity, or other
168
+ liability obligations and/or rights consistent with this License.
169
+ However, in accepting such obligations, You may act only on Your own
170
+ behalf and on Your sole responsibility, not on behalf of any other
171
+ Contributor, and only if You agree to indemnify, defend, and hold
172
+ each Contributor harmless for any liability incurred by, or claims
173
+ asserted against, such Contributor by reason of your accepting any
174
+ such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 mindicator & silicon bags quartet
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,12 @@
1
+ invAIriant — evidence-based multi-lens architecture audits for AI-era codebases
2
+ Copyright 2026 mindicator & silicon bags quartet
3
+
4
+ Licensed under the Apache License, Version 2.0 (see LICENSE).
5
+
6
+ This work distills a body of architecture-audit practice (the audit types, the
7
+ 0–10 lens scale, the score-to-severity mapping, the anti-averaging rules, and
8
+ the network-persistence domain lens) developed while auditing AI-assisted
9
+ development of complex, high-load systems.
10
+ Lens names (Cormen, Parnas, Turing, Lamport, Leveson, and others) are used as
11
+ mnemonic devices for schools of engineering questioning and imply no
12
+ endorsement by the individuals named.