bookwright-cli 0.2.0__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.
Files changed (149) hide show
  1. bookwright_cli-0.2.0/.gitignore +30 -0
  2. bookwright_cli-0.2.0/LICENSE +202 -0
  3. bookwright_cli-0.2.0/NOTICE +14 -0
  4. bookwright_cli-0.2.0/PKG-INFO +218 -0
  5. bookwright_cli-0.2.0/README.md +185 -0
  6. bookwright_cli-0.2.0/pyproject.toml +122 -0
  7. bookwright_cli-0.2.0/src/bookwright/__init__.py +3 -0
  8. bookwright_cli-0.2.0/src/bookwright/__main__.py +6 -0
  9. bookwright_cli-0.2.0/src/bookwright/cli.py +19 -0
  10. bookwright_cli-0.2.0/src/bookwright/commands/__init__.py +0 -0
  11. bookwright_cli-0.2.0/src/bookwright/commands/_envelope.py +36 -0
  12. bookwright_cli-0.2.0/src/bookwright/commands/check.py +75 -0
  13. bookwright_cli-0.2.0/src/bookwright/commands/graph/__init__.py +23 -0
  14. bookwright_cli-0.2.0/src/bookwright/commands/graph/build.py +157 -0
  15. bookwright_cli-0.2.0/src/bookwright/commands/graph/envelope.py +26 -0
  16. bookwright_cli-0.2.0/src/bookwright/commands/graph/query.py +98 -0
  17. bookwright_cli-0.2.0/src/bookwright/commands/init/__init__.py +5 -0
  18. bookwright_cli-0.2.0/src/bookwright/commands/init/conflict.py +107 -0
  19. bookwright_cli-0.2.0/src/bookwright/commands/init/envelope.py +322 -0
  20. bookwright_cli-0.2.0/src/bookwright/commands/init/git.py +96 -0
  21. bookwright_cli-0.2.0/src/bookwright/commands/init/main.py +263 -0
  22. bookwright_cli-0.2.0/src/bookwright/commands/init/resolve.py +193 -0
  23. bookwright_cli-0.2.0/src/bookwright/commands/init/scaffold.py +242 -0
  24. bookwright_cli-0.2.0/src/bookwright/commands/init/validate.py +172 -0
  25. bookwright_cli-0.2.0/src/bookwright/commands/integration/__init__.py +22 -0
  26. bookwright_cli-0.2.0/src/bookwright/commands/integration/use.py +120 -0
  27. bookwright_cli-0.2.0/src/bookwright/commands/validate.py +160 -0
  28. bookwright_cli-0.2.0/src/bookwright/commands/version.py +35 -0
  29. bookwright_cli-0.2.0/src/bookwright/core/__init__.py +35 -0
  30. bookwright_cli-0.2.0/src/bookwright/core/_blocks.py +239 -0
  31. bookwright_cli-0.2.0/src/bookwright/core/_build.py +154 -0
  32. bookwright_cli-0.2.0/src/bookwright/core/_research_block.py +56 -0
  33. bookwright_cli-0.2.0/src/bookwright/core/_translate.py +90 -0
  34. bookwright_cli-0.2.0/src/bookwright/core/errors.py +127 -0
  35. bookwright_cli-0.2.0/src/bookwright/core/iso639_1.py +200 -0
  36. bookwright_cli-0.2.0/src/bookwright/core/manifest.py +343 -0
  37. bookwright_cli-0.2.0/src/bookwright/errors.py +47 -0
  38. bookwright_cli-0.2.0/src/bookwright/golem/__init__.py +71 -0
  39. bookwright_cli-0.2.0/src/bookwright/golem/base.py +200 -0
  40. bookwright_cli-0.2.0/src/bookwright/golem/errors.py +29 -0
  41. bookwright_cli-0.2.0/src/bookwright/golem/modules/__init__.py +1 -0
  42. bookwright_cli-0.2.0/src/bookwright/golem/modules/character.py +109 -0
  43. bookwright_cli-0.2.0/src/bookwright/golem/modules/event.py +91 -0
  44. bookwright_cli-0.2.0/src/bookwright/golem/modules/feature.py +161 -0
  45. bookwright_cli-0.2.0/src/bookwright/golem/modules/inference.py +41 -0
  46. bookwright_cli-0.2.0/src/bookwright/golem/modules/narrative.py +55 -0
  47. bookwright_cli-0.2.0/src/bookwright/golem/modules/provenance.py +197 -0
  48. bookwright_cli-0.2.0/src/bookwright/golem/modules/relationship.py +38 -0
  49. bookwright_cli-0.2.0/src/bookwright/golem/modules/setting.py +30 -0
  50. bookwright_cli-0.2.0/src/bookwright/golem/namespaces.py +332 -0
  51. bookwright_cli-0.2.0/src/bookwright/golem/serialize.py +25 -0
  52. bookwright_cli-0.2.0/src/bookwright/golem/slug.py +22 -0
  53. bookwright_cli-0.2.0/src/bookwright/indexers/__init__.py +47 -0
  54. bookwright_cli-0.2.0/src/bookwright/indexers/base.py +55 -0
  55. bookwright_cli-0.2.0/src/bookwright/indexers/errors.py +80 -0
  56. bookwright_cli-0.2.0/src/bookwright/indexers/rdflib_indexer.py +89 -0
  57. bookwright_cli-0.2.0/src/bookwright/integrations/__init__.py +155 -0
  58. bookwright_cli-0.2.0/src/bookwright/integrations/base.py +117 -0
  59. bookwright_cli-0.2.0/src/bookwright/integrations/claude/__init__.py +29 -0
  60. bookwright_cli-0.2.0/src/bookwright/integrations/constants.py +38 -0
  61. bookwright_cli-0.2.0/src/bookwright/integrations/descriptions.py +48 -0
  62. bookwright_cli-0.2.0/src/bookwright/integrations/errors.py +170 -0
  63. bookwright_cli-0.2.0/src/bookwright/integrations/generic/__init__.py +56 -0
  64. bookwright_cli-0.2.0/src/bookwright/integrations/lint.py +160 -0
  65. bookwright_cli-0.2.0/src/bookwright/integrations/materialize.py +202 -0
  66. bookwright_cli-0.2.0/src/bookwright/integrations/options.py +203 -0
  67. bookwright_cli-0.2.0/src/bookwright/io/__init__.py +1 -0
  68. bookwright_cli-0.2.0/src/bookwright/io/bible.py +500 -0
  69. bookwright_cli-0.2.0/src/bookwright/io/errors.py +98 -0
  70. bookwright_cli-0.2.0/src/bookwright/io/frontmatter.py +61 -0
  71. bookwright_cli-0.2.0/src/bookwright/io/fs.py +226 -0
  72. bookwright_cli-0.2.0/src/bookwright/io/manuscript.py +15 -0
  73. bookwright_cli-0.2.0/src/bookwright/io/project.py +21 -0
  74. bookwright_cli-0.2.0/src/bookwright/io/report.py +107 -0
  75. bookwright_cli-0.2.0/src/bookwright/io/research.py +427 -0
  76. bookwright_cli-0.2.0/src/bookwright/resources/__init__.py +1 -0
  77. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-analyze.md +66 -0
  78. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-bible.md +96 -0
  79. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-checklist.md +67 -0
  80. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-clarify.md +65 -0
  81. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-constitution.md +79 -0
  82. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-continuity.md +70 -0
  83. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-draft.md +74 -0
  84. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-outline.md +71 -0
  85. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-research.md +107 -0
  86. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-scenes.md +66 -0
  87. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-synopsis.md +67 -0
  88. bookwright_cli-0.2.0/src/bookwright/resources/commands/bookwright-verify.md +136 -0
  89. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/golem-character.md +65 -0
  90. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/golem-events-timeline.md +56 -0
  91. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/golem-relationships.md +53 -0
  92. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/greimas-actants.md +57 -0
  93. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/pending-protocol.md +72 -0
  94. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/propp-functions.md +54 -0
  95. bookwright_cli-0.2.0/src/bookwright/resources/commands/references/research-format.md +136 -0
  96. bookwright_cli-0.2.0/src/bookwright/resources/project/.bookwright/cache/.gitkeep +0 -0
  97. bookwright_cli-0.2.0/src/bookwright/resources/project/.bookwright/schema/.gitkeep +0 -0
  98. bookwright_cli-0.2.0/src/bookwright/resources/project/.bookwright/templates/.gitkeep +0 -0
  99. bookwright_cli-0.2.0/src/bookwright/resources/project/.gitignore +23 -0
  100. bookwright_cli-0.2.0/src/bookwright/resources/project/README.md.j2 +40 -0
  101. bookwright_cli-0.2.0/src/bookwright/resources/project/__init__.py +6 -0
  102. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/characters/.gitkeep +0 -0
  103. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/constitution.md.j2 +74 -0
  104. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/glossary.md +36 -0
  105. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/locations/.gitkeep +0 -0
  106. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/pov-structure.md +43 -0
  107. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/relationships.md +36 -0
  108. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/research/_index.md +28 -0
  109. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/research/sources.md +23 -0
  110. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/settings/.gitkeep +0 -0
  111. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/subplots.md +35 -0
  112. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/themes.md +36 -0
  113. bookwright_cli-0.2.0/src/bookwright/resources/project/bible/timeline.md +38 -0
  114. bookwright_cli-0.2.0/src/bookwright/resources/project/manuscript/.gitkeep +0 -0
  115. bookwright_cli-0.2.0/src/bookwright/resources/project/outline/arcs.md +34 -0
  116. bookwright_cli-0.2.0/src/bookwright/resources/project/outline/scenes.md +31 -0
  117. bookwright_cli-0.2.0/src/bookwright/resources/project/outline/structure.md +35 -0
  118. bookwright_cli-0.2.0/src/bookwright/resources/project/outline/synopsis.md +25 -0
  119. bookwright_cli-0.2.0/src/bookwright/resources/schemas/__init__.py +19 -0
  120. bookwright_cli-0.2.0/src/bookwright/resources/schemas/golem-1.1/VERSION +1 -0
  121. bookwright_cli-0.2.0/src/bookwright/resources/schemas/golem-1.1/golem.ttl +1947 -0
  122. bookwright_cli-0.2.0/src/bookwright/resources/schemas/golem-1.1/version.json +8 -0
  123. bookwright_cli-0.2.0/src/bookwright/resources/templates/__init__.py +1 -0
  124. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/character.md.tmpl +63 -0
  125. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/location.md.tmpl +37 -0
  126. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/research/_index.md.tmpl +25 -0
  127. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/research/sources.md.tmpl +21 -0
  128. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/research/tema.md.tmpl +37 -0
  129. bookwright_cli-0.2.0/src/bookwright/resources/templates/bible/setting.md.tmpl +38 -0
  130. bookwright_cli-0.2.0/src/bookwright/resources/templates/manifest.template.toml +79 -0
  131. bookwright_cli-0.2.0/src/bookwright/resources/templates/manuscript/chapter.md.tmpl +36 -0
  132. bookwright_cli-0.2.0/src/bookwright/resources/templates/scenes/scene.md.tmpl +37 -0
  133. bookwright_cli-0.2.0/src/bookwright/resources/vocabularies/__init__.py +6 -0
  134. bookwright_cli-0.2.0/src/bookwright/resources/vocabularies/greimas.ttl +4 -0
  135. bookwright_cli-0.2.0/src/bookwright/resources/vocabularies/propp.ttl +4 -0
  136. bookwright_cli-0.2.0/src/bookwright/resources/vocabularies/sources.ttl +82 -0
  137. bookwright_cli-0.2.0/src/bookwright/validation/__init__.py +33 -0
  138. bookwright_cli-0.2.0/src/bookwright/validation/anchor_queries.py +223 -0
  139. bookwright_cli-0.2.0/src/bookwright/validation/base.py +233 -0
  140. bookwright_cli-0.2.0/src/bookwright/validation/queries.py +197 -0
  141. bookwright_cli-0.2.0/src/bookwright/validation/registry.py +185 -0
  142. bookwright_cli-0.2.0/src/bookwright/validation/report.py +106 -0
  143. bookwright_cli-0.2.0/src/bookwright/validation/runner.py +65 -0
  144. bookwright_cli-0.2.0/src/bookwright/validation/validators/__init__.py +9 -0
  145. bookwright_cli-0.2.0/src/bookwright/validation/validators/character_presence.py +202 -0
  146. bookwright_cli-0.2.0/src/bookwright/validation/validators/factual_anchor.py +291 -0
  147. bookwright_cli-0.2.0/src/bookwright/validation/validators/focalization.py +152 -0
  148. bookwright_cli-0.2.0/src/bookwright/validation/validators/setting_continuity.py +100 -0
  149. bookwright_cli-0.2.0/src/bookwright/validation/validators/temporal.py +277 -0
@@ -0,0 +1,30 @@
1
+ # macOS
2
+ .DS_Store
3
+
4
+ # Python
5
+ __pycache__/
6
+ *.pyc
7
+ *.pyo
8
+ *.egg-info/
9
+
10
+ # Virtual envs / secrets
11
+ .venv/
12
+ .env
13
+
14
+ # Build artifacts
15
+ dist/
16
+ build/
17
+
18
+ # MkDocs site output
19
+ site/
20
+
21
+ # Tooling caches
22
+ .pytest_cache/
23
+ .ruff_cache/
24
+ .mypy_cache/
25
+ .coverage
26
+ coverage.xml
27
+ htmlcov/
28
+
29
+ # Quickstart scratch directory (see specs/001-repo-bootstrap/quickstart.md)
30
+ .scratch/
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "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 made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative 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
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,14 @@
1
+ bookwright
2
+ Copyright 2026 Jorge MB
3
+
4
+ This product includes software developed by Jorge MB and contributors.
5
+
6
+ Licensed under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License.
8
+ You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ This license covers the bookwright software only. It does not cover the
13
+ content authored with the tool: story bibles, outlines, manuscripts, and
14
+ the derived knowledge graphs remain the sole property of their authors.
@@ -0,0 +1,218 @@
1
+ Metadata-Version: 2.4
2
+ Name: bookwright-cli
3
+ Version: 0.2.0
4
+ Summary: Spec-driven authoring toolkit for novels, essays, and memoirs.
5
+ Project-URL: Homepage, https://github.com/jmorenobl/bookwright
6
+ Project-URL: Repository, https://github.com/jmorenobl/bookwright
7
+ Project-URL: Issues, https://github.com/jmorenobl/bookwright/issues
8
+ Project-URL: Changelog, https://github.com/jmorenobl/bookwright/blob/main/CHANGELOG.md
9
+ Author-email: Jorge MB <jmorenobl@gmail.com>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ License-File: NOTICE
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Operating System :: POSIX
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: jinja2>=3.1
22
+ Requires-Dist: packaging>=23.0
23
+ Requires-Dist: platformdirs>=4.2
24
+ Requires-Dist: pydantic>=2.5
25
+ Requires-Dist: python-slugify>=8.0
26
+ Requires-Dist: pyyaml>=6.0
27
+ Requires-Dist: rdflib>=7.0
28
+ Requires-Dist: rich>=13.7
29
+ Requires-Dist: tomlkit>=0.12
30
+ Requires-Dist: typer>=0.12
31
+ Requires-Dist: uuid-utils>=0.16
32
+ Description-Content-Type: text/markdown
33
+
34
+ <p align="center">
35
+ <picture>
36
+ <source srcset="https://raw.githubusercontent.com/jmorenobl/bookwright/main/assets/banner.svg" type="image/svg+xml">
37
+ <img src="https://raw.githubusercontent.com/jmorenobl/bookwright/main/assets/banner.png" alt="Bookwright — toolkit de autoría spec-driven para novelas, ensayos y memorias" width="100%">
38
+ </picture>
39
+ </p>
40
+
41
+ <p align="center">
42
+ <a href="https://github.com/jmorenobl/bookwright/actions/workflows/tests.yml"><img src="https://github.com/jmorenobl/bookwright/actions/workflows/tests.yml/badge.svg" alt="CI"></a>
43
+ <a href="https://github.com/jmorenobl/bookwright/blob/main/CHANGELOG.md"><img src="https://img.shields.io/badge/version-0.2.0-6f42c1" alt="Versión 0.2.0"></a>
44
+ <a href="https://github.com/jmorenobl/bookwright/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-blue" alt="Licencia: Apache-2.0"></a>
45
+ <img src="https://img.shields.io/badge/python-3.11%2B-3776ab?logo=python&logoColor=white" alt="Python 3.11+">
46
+ <img src="https://img.shields.io/badge/coverage-%E2%89%A580%25-2ea44f" alt="Cobertura ≥80%">
47
+ <a href="https://github.com/astral-sh/ruff"><img src="https://img.shields.io/badge/lint-ruff-261230?logo=ruff&logoColor=white" alt="Lint con Ruff"></a>
48
+ <img src="https://img.shields.io/badge/types-mypy%20strict-2a6db2" alt="Tipado con mypy --strict">
49
+ <a href="https://github.com/github/spec-kit"><img src="https://img.shields.io/badge/built%20with-Spec%20Kit-0b7285" alt="Hecho con Spec Kit"></a>
50
+ </p>
51
+
52
+ <p align="center">
53
+ <b>Toolkit de autoría spec-driven para novelas, ensayos y memorias.</b><br>
54
+ <i><a href="https://github.com/jmorenobl/bookwright/blob/main/README.en.md">Read in English</a></i>
55
+ </p>
56
+
57
+ Bookwright aplica el patrón Spec-Driven Development a la escritura de
58
+ formato largo: destilas tus ideas en un conjunto reducido de documentos
59
+ canónicos (constitución, biblia, outline, escenas) y dejas que un agente
60
+ IA escriba a partir de *ellos*, no de un chat libre. Tu libro vive en
61
+ texto plano, versionado en git, completamente auditable, y sobrevive al
62
+ toolkit.
63
+
64
+ > ### Estado: v0.2.0
65
+ >
66
+ > Dos hitos están en `main`. **v0.1.0** (el toolkit base, iteraciones
67
+ > 1–11): scaffolding del proyecto (`bookwright init`), el modelo de
68
+ > dominio GOLEM, el indexer y los comandos `bookwright graph`, las skills
69
+ > de autoría materializadas como Agent Skills, y el sistema de validación
70
+ > de continuidad. **v0.2.0 / M4** (investigación y verificación,
71
+ > iteraciones 12–18): el modelo de procedencia `Source` / `Finding` /
72
+ > `Anchor`, las skills `/bookwright-research` y `/bookwright-verify`, el
73
+ > validador `factual_anchor` y la envoltura `--json` unificada. La
74
+ > documentación de usuario completa vive en el
75
+ > [sitio de documentación](https://github.com/jmorenobl/bookwright/blob/main/docs/index.md).
76
+
77
+ ## El loop del escritor
78
+
79
+ 1. **Idea libremente** — conversa con tu agente o tu libreta y vuelca un
80
+ brief a Markdown.
81
+ 2. **Scaffolding del proyecto** —
82
+ `bookwright init mi-novela --integration claude` genera la estructura
83
+ de directorios, los templates de los documentos canónicos e instala
84
+ los *Agent Skills* de Bookwright en `.claude/skills/`.
85
+ 3. **Destila, en orden** — abre el proyecto con Claude Code (o cualquier
86
+ agente compatible con [agentskills.io](https://agentskills.io)) y
87
+ ejecuta:
88
+
89
+ ```
90
+ /bookwright-constitution ← reglas no negociables de la obra
91
+ /bookwright-bible ← personajes, settings, lore
92
+ /bookwright-outline ← estructura de actos/capítulos
93
+ /bookwright-scenes ← desglose beat por beat
94
+ /bookwright-draft ← generación de prosa por escena
95
+ ```
96
+
97
+ Cada comando toma input no estructurado y produce un artefacto
98
+ Markdown / Turtle versionable. Iteras los *documentos*, no el
99
+ borrador.
100
+
101
+ 4. **Construye y valida** — `bookwright graph build` deriva el grafo
102
+ narrativo GOLEM y `bookwright validate` corre los chequeos de
103
+ continuidad (continuidad temporal, presencia de personajes,
104
+ focalización, continuidad de settings).
105
+
106
+ 5. **Edita en tu editor favorito** — Bookwright no es un editor de
107
+ texto. Abre los `.md` en Obsidian, Scrivener, VS Code o vim.
108
+
109
+ ## Instalación
110
+
111
+ ```bash
112
+ uv build
113
+ pipx install ./dist/bookwright_cli-*.whl # o: uv tool install ./dist/*.whl
114
+ bookwright version
115
+ ```
116
+
117
+ Para desarrollar sobre el toolkit, sincroniza el entorno del proyecto:
118
+
119
+ ```bash
120
+ uv sync
121
+ uv run bookwright --help
122
+ ```
123
+
124
+ ## Quickstart en 5 minutos
125
+
126
+ ```bash
127
+ bookwright init mi-novela --integration claude # scaffolding + Agent Skills
128
+ cd mi-novela
129
+ ```
130
+
131
+ Abre el proyecto en tu agente y destila tu idea con las skills (no editas los
132
+ documentos a mano; las skills leen tu brief y te preguntan lo que falte):
133
+
134
+ ```
135
+ /bookwright-constitution lee idea.md y destila la constitución
136
+ /bookwright-bible ← personajes, settings, cronología
137
+ /bookwright-outline ← arcos y estructura
138
+ /bookwright-scenes ← desglose en escenas
139
+ /bookwright-draft ← redacta la prosa de una escena
140
+ ```
141
+
142
+ Para obra basada en hechos (p. ej. novela histórica), el loop opcional de
143
+ investigación documenta fuentes, hallazgos y anclas, y contrasta la prosa
144
+ contra ellas:
145
+
146
+ ```
147
+ /bookwright-research <tema> ← documenta hallazgos con procedencia completa
148
+ /bookwright-verify ← contrasta la prosa redactada con las anclas
149
+ ```
150
+
151
+ Y construye/valida desde el CLI:
152
+
153
+ ```bash
154
+ bookwright graph build # → bible/graph.ttl
155
+ bookwright graph query "SELECT ?c WHERE { ?c a golem:G1_Character }" --json
156
+ bookwright validate # exit 0 si no hay errores
157
+ ```
158
+
159
+ ¿Quieres cambiar de integración (p. ej. de `claude` a `generic`)?
160
+
161
+ ```bash
162
+ bookwright integration use generic # re-materializa en .agents/skills/
163
+ ```
164
+
165
+ El recorrido completo está en
166
+ [docs/getting-started.md](https://github.com/jmorenobl/bookwright/blob/main/docs/getting-started.md).
167
+
168
+ ## Principios de diseño
169
+
170
+ - **El texto plano es la fuente de verdad.** Manuscrito, biblia,
171
+ constitución y grafo narrativo son Markdown, TOML o Turtle (RDF).
172
+ Auditables por humanos, diffables en git, portables.
173
+ - **Agnóstico de agente.** La capa de comandos se materializa como
174
+ [Agent Skills](https://agentskills.io) portables. Bookwright entrega dos
175
+ integraciones (`claude`, `generic`); agentes como Codex, Cursor o Copilot
176
+ consumen la salida `generic` directamente, sin integración nativa dedicada.
177
+ - **Batch, no conversacional.** Tú consolidas el input; el comando lo
178
+ destila. El agente no es un co-escritor frase a frase.
179
+ - **GOLEM por debajo.** El grafo narrativo usa la
180
+ [ontología GOLEM](https://github.com/GOLEM-lab/golem-ontology)
181
+ publicada (personajes, eventos, settings, relaciones, estructura
182
+ narrativa, procedencia de inferencias) serializada en Turtle.
183
+
184
+ ## Roadmap y fuera de scope
185
+
186
+ Hecho: **v0.2 / M4** — investigación y verificación (modelo de procedencia,
187
+ skills `research`/`verify`, validador `factual_anchor`). Planificado:
188
+ **v0.3** — búsqueda vectorial (ChromaDB sobre rdflib, desacoplada); **v1.0** —
189
+ export a EPUB / PDF / impresión vía pandoc.
190
+
191
+ **Cancelado (decisión del owner), no lo pidas:** presets de género / paquetes
192
+ de plantilla (la resolución es de 2 capas, overrides → core); el motor
193
+ `Grafeo` / `GrafeoIndexer`; integraciones más allá de `claude` y `generic`;
194
+ el sistema de extensiones. Agentes como Codex, Cursor o Copilot ya se soportan
195
+ hoy vía la integración `generic` con `--integration-options="--skills-dir …"`,
196
+ sin integración nativa dedicada.
197
+
198
+ ## Documentos del proyecto
199
+
200
+ - **[Sitio de documentación](https://github.com/jmorenobl/bookwright/blob/main/docs/index.md)** — guía de usuario completa
201
+ (primeros pasos, comandos, validación, extender, FAQ).
202
+ - **[bookwright-design.md](https://github.com/jmorenobl/bookwright/blob/main/bookwright-design.md)** — la especificación
203
+ de diseño completa. La numeración de secciones es load-bearing.
204
+ - **[bookwright-implementation-plan.md](https://github.com/jmorenobl/bookwright/blob/main/bookwright-implementation-plan.md)**
205
+ — el plan de iteraciones ordenado.
206
+ - **[.specify/memory/constitution.md](https://github.com/jmorenobl/bookwright/blob/main/.specify/memory/constitution.md)** —
207
+ los principios ratificados y vinculantes para cada PR.
208
+ - **[CONTRIBUTING.md](https://github.com/jmorenobl/bookwright/blob/main/CONTRIBUTING.md)** — instalación, quality gates y
209
+ cómo extender el toolkit (nueva integración, validador, vocabulario).
210
+ - **[CHANGELOG.md](https://github.com/jmorenobl/bookwright/blob/main/CHANGELOG.md)** — historial de cambios.
211
+
212
+ ## Licencia
213
+
214
+ [Apache-2.0](https://github.com/jmorenobl/bookwright/blob/main/LICENSE). Consulta [NOTICE](https://github.com/jmorenobl/bookwright/blob/main/NOTICE) para la atribución.
215
+
216
+ Esta licencia cubre **solo el software bookwright**. El contenido que crees
217
+ con la herramienta —*bibles*, escaletas, manuscritos y los grafos de
218
+ conocimiento derivados— sigue siendo enteramente tuyo.
@@ -0,0 +1,185 @@
1
+ <p align="center">
2
+ <picture>
3
+ <source srcset="https://raw.githubusercontent.com/jmorenobl/bookwright/main/assets/banner.svg" type="image/svg+xml">
4
+ <img src="https://raw.githubusercontent.com/jmorenobl/bookwright/main/assets/banner.png" alt="Bookwright — toolkit de autoría spec-driven para novelas, ensayos y memorias" width="100%">
5
+ </picture>
6
+ </p>
7
+
8
+ <p align="center">
9
+ <a href="https://github.com/jmorenobl/bookwright/actions/workflows/tests.yml"><img src="https://github.com/jmorenobl/bookwright/actions/workflows/tests.yml/badge.svg" alt="CI"></a>
10
+ <a href="https://github.com/jmorenobl/bookwright/blob/main/CHANGELOG.md"><img src="https://img.shields.io/badge/version-0.2.0-6f42c1" alt="Versión 0.2.0"></a>
11
+ <a href="https://github.com/jmorenobl/bookwright/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-blue" alt="Licencia: Apache-2.0"></a>
12
+ <img src="https://img.shields.io/badge/python-3.11%2B-3776ab?logo=python&logoColor=white" alt="Python 3.11+">
13
+ <img src="https://img.shields.io/badge/coverage-%E2%89%A580%25-2ea44f" alt="Cobertura ≥80%">
14
+ <a href="https://github.com/astral-sh/ruff"><img src="https://img.shields.io/badge/lint-ruff-261230?logo=ruff&logoColor=white" alt="Lint con Ruff"></a>
15
+ <img src="https://img.shields.io/badge/types-mypy%20strict-2a6db2" alt="Tipado con mypy --strict">
16
+ <a href="https://github.com/github/spec-kit"><img src="https://img.shields.io/badge/built%20with-Spec%20Kit-0b7285" alt="Hecho con Spec Kit"></a>
17
+ </p>
18
+
19
+ <p align="center">
20
+ <b>Toolkit de autoría spec-driven para novelas, ensayos y memorias.</b><br>
21
+ <i><a href="https://github.com/jmorenobl/bookwright/blob/main/README.en.md">Read in English</a></i>
22
+ </p>
23
+
24
+ Bookwright aplica el patrón Spec-Driven Development a la escritura de
25
+ formato largo: destilas tus ideas en un conjunto reducido de documentos
26
+ canónicos (constitución, biblia, outline, escenas) y dejas que un agente
27
+ IA escriba a partir de *ellos*, no de un chat libre. Tu libro vive en
28
+ texto plano, versionado en git, completamente auditable, y sobrevive al
29
+ toolkit.
30
+
31
+ > ### Estado: v0.2.0
32
+ >
33
+ > Dos hitos están en `main`. **v0.1.0** (el toolkit base, iteraciones
34
+ > 1–11): scaffolding del proyecto (`bookwright init`), el modelo de
35
+ > dominio GOLEM, el indexer y los comandos `bookwright graph`, las skills
36
+ > de autoría materializadas como Agent Skills, y el sistema de validación
37
+ > de continuidad. **v0.2.0 / M4** (investigación y verificación,
38
+ > iteraciones 12–18): el modelo de procedencia `Source` / `Finding` /
39
+ > `Anchor`, las skills `/bookwright-research` y `/bookwright-verify`, el
40
+ > validador `factual_anchor` y la envoltura `--json` unificada. La
41
+ > documentación de usuario completa vive en el
42
+ > [sitio de documentación](https://github.com/jmorenobl/bookwright/blob/main/docs/index.md).
43
+
44
+ ## El loop del escritor
45
+
46
+ 1. **Idea libremente** — conversa con tu agente o tu libreta y vuelca un
47
+ brief a Markdown.
48
+ 2. **Scaffolding del proyecto** —
49
+ `bookwright init mi-novela --integration claude` genera la estructura
50
+ de directorios, los templates de los documentos canónicos e instala
51
+ los *Agent Skills* de Bookwright en `.claude/skills/`.
52
+ 3. **Destila, en orden** — abre el proyecto con Claude Code (o cualquier
53
+ agente compatible con [agentskills.io](https://agentskills.io)) y
54
+ ejecuta:
55
+
56
+ ```
57
+ /bookwright-constitution ← reglas no negociables de la obra
58
+ /bookwright-bible ← personajes, settings, lore
59
+ /bookwright-outline ← estructura de actos/capítulos
60
+ /bookwright-scenes ← desglose beat por beat
61
+ /bookwright-draft ← generación de prosa por escena
62
+ ```
63
+
64
+ Cada comando toma input no estructurado y produce un artefacto
65
+ Markdown / Turtle versionable. Iteras los *documentos*, no el
66
+ borrador.
67
+
68
+ 4. **Construye y valida** — `bookwright graph build` deriva el grafo
69
+ narrativo GOLEM y `bookwright validate` corre los chequeos de
70
+ continuidad (continuidad temporal, presencia de personajes,
71
+ focalización, continuidad de settings).
72
+
73
+ 5. **Edita en tu editor favorito** — Bookwright no es un editor de
74
+ texto. Abre los `.md` en Obsidian, Scrivener, VS Code o vim.
75
+
76
+ ## Instalación
77
+
78
+ ```bash
79
+ uv build
80
+ pipx install ./dist/bookwright_cli-*.whl # o: uv tool install ./dist/*.whl
81
+ bookwright version
82
+ ```
83
+
84
+ Para desarrollar sobre el toolkit, sincroniza el entorno del proyecto:
85
+
86
+ ```bash
87
+ uv sync
88
+ uv run bookwright --help
89
+ ```
90
+
91
+ ## Quickstart en 5 minutos
92
+
93
+ ```bash
94
+ bookwright init mi-novela --integration claude # scaffolding + Agent Skills
95
+ cd mi-novela
96
+ ```
97
+
98
+ Abre el proyecto en tu agente y destila tu idea con las skills (no editas los
99
+ documentos a mano; las skills leen tu brief y te preguntan lo que falte):
100
+
101
+ ```
102
+ /bookwright-constitution lee idea.md y destila la constitución
103
+ /bookwright-bible ← personajes, settings, cronología
104
+ /bookwright-outline ← arcos y estructura
105
+ /bookwright-scenes ← desglose en escenas
106
+ /bookwright-draft ← redacta la prosa de una escena
107
+ ```
108
+
109
+ Para obra basada en hechos (p. ej. novela histórica), el loop opcional de
110
+ investigación documenta fuentes, hallazgos y anclas, y contrasta la prosa
111
+ contra ellas:
112
+
113
+ ```
114
+ /bookwright-research <tema> ← documenta hallazgos con procedencia completa
115
+ /bookwright-verify ← contrasta la prosa redactada con las anclas
116
+ ```
117
+
118
+ Y construye/valida desde el CLI:
119
+
120
+ ```bash
121
+ bookwright graph build # → bible/graph.ttl
122
+ bookwright graph query "SELECT ?c WHERE { ?c a golem:G1_Character }" --json
123
+ bookwright validate # exit 0 si no hay errores
124
+ ```
125
+
126
+ ¿Quieres cambiar de integración (p. ej. de `claude` a `generic`)?
127
+
128
+ ```bash
129
+ bookwright integration use generic # re-materializa en .agents/skills/
130
+ ```
131
+
132
+ El recorrido completo está en
133
+ [docs/getting-started.md](https://github.com/jmorenobl/bookwright/blob/main/docs/getting-started.md).
134
+
135
+ ## Principios de diseño
136
+
137
+ - **El texto plano es la fuente de verdad.** Manuscrito, biblia,
138
+ constitución y grafo narrativo son Markdown, TOML o Turtle (RDF).
139
+ Auditables por humanos, diffables en git, portables.
140
+ - **Agnóstico de agente.** La capa de comandos se materializa como
141
+ [Agent Skills](https://agentskills.io) portables. Bookwright entrega dos
142
+ integraciones (`claude`, `generic`); agentes como Codex, Cursor o Copilot
143
+ consumen la salida `generic` directamente, sin integración nativa dedicada.
144
+ - **Batch, no conversacional.** Tú consolidas el input; el comando lo
145
+ destila. El agente no es un co-escritor frase a frase.
146
+ - **GOLEM por debajo.** El grafo narrativo usa la
147
+ [ontología GOLEM](https://github.com/GOLEM-lab/golem-ontology)
148
+ publicada (personajes, eventos, settings, relaciones, estructura
149
+ narrativa, procedencia de inferencias) serializada en Turtle.
150
+
151
+ ## Roadmap y fuera de scope
152
+
153
+ Hecho: **v0.2 / M4** — investigación y verificación (modelo de procedencia,
154
+ skills `research`/`verify`, validador `factual_anchor`). Planificado:
155
+ **v0.3** — búsqueda vectorial (ChromaDB sobre rdflib, desacoplada); **v1.0** —
156
+ export a EPUB / PDF / impresión vía pandoc.
157
+
158
+ **Cancelado (decisión del owner), no lo pidas:** presets de género / paquetes
159
+ de plantilla (la resolución es de 2 capas, overrides → core); el motor
160
+ `Grafeo` / `GrafeoIndexer`; integraciones más allá de `claude` y `generic`;
161
+ el sistema de extensiones. Agentes como Codex, Cursor o Copilot ya se soportan
162
+ hoy vía la integración `generic` con `--integration-options="--skills-dir …"`,
163
+ sin integración nativa dedicada.
164
+
165
+ ## Documentos del proyecto
166
+
167
+ - **[Sitio de documentación](https://github.com/jmorenobl/bookwright/blob/main/docs/index.md)** — guía de usuario completa
168
+ (primeros pasos, comandos, validación, extender, FAQ).
169
+ - **[bookwright-design.md](https://github.com/jmorenobl/bookwright/blob/main/bookwright-design.md)** — la especificación
170
+ de diseño completa. La numeración de secciones es load-bearing.
171
+ - **[bookwright-implementation-plan.md](https://github.com/jmorenobl/bookwright/blob/main/bookwright-implementation-plan.md)**
172
+ — el plan de iteraciones ordenado.
173
+ - **[.specify/memory/constitution.md](https://github.com/jmorenobl/bookwright/blob/main/.specify/memory/constitution.md)** —
174
+ los principios ratificados y vinculantes para cada PR.
175
+ - **[CONTRIBUTING.md](https://github.com/jmorenobl/bookwright/blob/main/CONTRIBUTING.md)** — instalación, quality gates y
176
+ cómo extender el toolkit (nueva integración, validador, vocabulario).
177
+ - **[CHANGELOG.md](https://github.com/jmorenobl/bookwright/blob/main/CHANGELOG.md)** — historial de cambios.
178
+
179
+ ## Licencia
180
+
181
+ [Apache-2.0](https://github.com/jmorenobl/bookwright/blob/main/LICENSE). Consulta [NOTICE](https://github.com/jmorenobl/bookwright/blob/main/NOTICE) para la atribución.
182
+
183
+ Esta licencia cubre **solo el software bookwright**. El contenido que crees
184
+ con la herramienta —*bibles*, escaletas, manuscritos y los grafos de
185
+ conocimiento derivados— sigue siendo enteramente tuyo.