apothem 0.1.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 (289) hide show
  1. apothem-0.1.0/LICENSE +21 -0
  2. apothem-0.1.0/LICENSES/MIT.txt +18 -0
  3. apothem-0.1.0/PKG-INFO +845 -0
  4. apothem-0.1.0/README.md +778 -0
  5. apothem-0.1.0/pyproject.toml +284 -0
  6. apothem-0.1.0/setup.cfg +4 -0
  7. apothem-0.1.0/src/apothem/__init__.py +12 -0
  8. apothem-0.1.0/src/apothem/__main__.py +21 -0
  9. apothem-0.1.0/src/apothem/agents/README.md +52 -0
  10. apothem-0.1.0/src/apothem/agents/codebase-explorer.md +86 -0
  11. apothem-0.1.0/src/apothem/agents/convention-auditor.md +87 -0
  12. apothem-0.1.0/src/apothem/agents/memory-auditor.md +87 -0
  13. apothem-0.1.0/src/apothem/agents/quality-gate.md +93 -0
  14. apothem-0.1.0/src/apothem/audit/_scan_lib.py +175 -0
  15. apothem-0.1.0/src/apothem/audit/analyze_graph.py +239 -0
  16. apothem-0.1.0/src/apothem/audit/build_capability_graph.py +471 -0
  17. apothem-0.1.0/src/apothem/audit/build_inventory.py +674 -0
  18. apothem-0.1.0/src/apothem/audit/build_plans_provenance.py +1003 -0
  19. apothem-0.1.0/src/apothem/audit/check_links.py +386 -0
  20. apothem-0.1.0/src/apothem/audit/classify_artifacts.py +389 -0
  21. apothem-0.1.0/src/apothem/audit/execute_plans_migration.py +497 -0
  22. apothem-0.1.0/src/apothem/audit/render_capability_index.py +477 -0
  23. apothem-0.1.0/src/apothem/audit/render_inventory.py +402 -0
  24. apothem-0.1.0/src/apothem/audit/scan_ai_surfaces.py +1123 -0
  25. apothem-0.1.0/src/apothem/audit/scan_ai_surfaces_coarse.py +241 -0
  26. apothem-0.1.0/src/apothem/audit/scan_drift_features.py +146 -0
  27. apothem-0.1.0/src/apothem/audit/scan_frontmatter.py +297 -0
  28. apothem-0.1.0/src/apothem/audit/scan_header_coverage.py +1232 -0
  29. apothem-0.1.0/src/apothem/audit/scan_plan_leakage.py +534 -0
  30. apothem-0.1.0/src/apothem/audit/scan_plans_discipline.py +186 -0
  31. apothem-0.1.0/src/apothem/audit/scan_secrets_pii.py +249 -0
  32. apothem-0.1.0/src/apothem/audit/scan_stale_tokens.py +300 -0
  33. apothem-0.1.0/src/apothem/audit/synthesize_drift.py +210 -0
  34. apothem-0.1.0/src/apothem/benchmarks/__init__.py +8 -0
  35. apothem-0.1.0/src/apothem/benchmarks/bench_agents.py +68 -0
  36. apothem-0.1.0/src/apothem/benchmarks/bench_hooks.py +80 -0
  37. apothem-0.1.0/src/apothem/benchmarks/bench_tests.py +65 -0
  38. apothem-0.1.0/src/apothem/benchmarks/bench_validate_ecosystem.py +65 -0
  39. apothem-0.1.0/src/apothem/cli/__init__.py +1023 -0
  40. apothem-0.1.0/src/apothem/cli/_common_flags.py +84 -0
  41. apothem-0.1.0/src/apothem/cli/_json_formatter.py +25 -0
  42. apothem-0.1.0/src/apothem/cli/_propagation.py +128 -0
  43. apothem-0.1.0/src/apothem/cli/propagation-manifest.yaml +138 -0
  44. apothem-0.1.0/src/apothem/commands/README.md +61 -0
  45. apothem-0.1.0/src/apothem/commands/a11y-audit.md +242 -0
  46. apothem-0.1.0/src/apothem/commands/architecture-review.md +229 -0
  47. apothem-0.1.0/src/apothem/commands/code-audit.md +253 -0
  48. apothem-0.1.0/src/apothem/commands/code-review.md +229 -0
  49. apothem-0.1.0/src/apothem/commands/dependency-audit.md +239 -0
  50. apothem-0.1.0/src/apothem/commands/docs-review.md +226 -0
  51. apothem-0.1.0/src/apothem/commands/perf-audit.md +235 -0
  52. apothem-0.1.0/src/apothem/commands/plan-design.md +244 -0
  53. apothem-0.1.0/src/apothem/commands/plan-execute.md +484 -0
  54. apothem-0.1.0/src/apothem/commands/plan-generate.md +337 -0
  55. apothem-0.1.0/src/apothem/commands/plan-review.md +477 -0
  56. apothem-0.1.0/src/apothem/commands/plan-spec.md +357 -0
  57. apothem-0.1.0/src/apothem/commands/plan-status.md +230 -0
  58. apothem-0.1.0/src/apothem/commands/security-audit.md +217 -0
  59. apothem-0.1.0/src/apothem/commands/supply-chain-audit.md +231 -0
  60. apothem-0.1.0/src/apothem/commands/threat-model-audit.md +243 -0
  61. apothem-0.1.0/src/apothem/commands/ux-review.md +230 -0
  62. apothem-0.1.0/src/apothem/conformity/__init__.py +0 -0
  63. apothem-0.1.0/src/apothem/conformity/always_on_budget_grep.py +327 -0
  64. apothem-0.1.0/src/apothem/conformity/bare_except_grep.py +132 -0
  65. apothem-0.1.0/src/apothem/conformity/binding_reciprocity_grep.py +166 -0
  66. apothem-0.1.0/src/apothem/conformity/brand_mark_grep.py +317 -0
  67. apothem-0.1.0/src/apothem/conformity/commented_out_code_grep.py +211 -0
  68. apothem-0.1.0/src/apothem/conformity/copilot_instructions_presence_grep.py +307 -0
  69. apothem-0.1.0/src/apothem/conformity/diagram_staleness_grep.py +189 -0
  70. apothem-0.1.0/src/apothem/conformity/file_header_grep.py +487 -0
  71. apothem-0.1.0/src/apothem/conformity/frontmatter_grep.py +271 -0
  72. apothem-0.1.0/src/apothem/conformity/gate.py +592 -0
  73. apothem-0.1.0/src/apothem/conformity/hedging_grep.py +151 -0
  74. apothem-0.1.0/src/apothem/conformity/license_author_consistency_grep.py +319 -0
  75. apothem-0.1.0/src/apothem/conformity/link_check.py +179 -0
  76. apothem-0.1.0/src/apothem/conformity/magic_number_grep.py +215 -0
  77. apothem-0.1.0/src/apothem/conformity/multi_surface_coherence_grep.py +636 -0
  78. apothem-0.1.0/src/apothem/conformity/naming_grep.py +227 -0
  79. apothem-0.1.0/src/apothem/conformity/no_global_plans_grep.py +161 -0
  80. apothem-0.1.0/src/apothem/conformity/option_annotation_grep.py +169 -0
  81. apothem-0.1.0/src/apothem/conformity/orphan_output_grep.py +224 -0
  82. apothem-0.1.0/src/apothem/conformity/plans_discipline_language_grep.py +235 -0
  83. apothem-0.1.0/src/apothem/conformity/production_ready_pr_grep.py +204 -0
  84. apothem-0.1.0/src/apothem/conformity/secret_leak_grep.py +198 -0
  85. apothem-0.1.0/src/apothem/conformity/secret_scan_grep.py +147 -0
  86. apothem-0.1.0/src/apothem/conformity/smoke_install_grep.py +199 -0
  87. apothem-0.1.0/src/apothem/conformity/unpinned_action_grep.py +150 -0
  88. apothem-0.1.0/src/apothem/conformity/user_confirm_grep.py +114 -0
  89. apothem-0.1.0/src/apothem/docgen/render_llms_full.py +100 -0
  90. apothem-0.1.0/src/apothem/docgen/render_reference.py +203 -0
  91. apothem-0.1.0/src/apothem/harnesses/__init__.py +59 -0
  92. apothem-0.1.0/src/apothem/harnesses/antigravity/__init__.py +68 -0
  93. apothem-0.1.0/src/apothem/harnesses/antigravity/install.py +26 -0
  94. apothem-0.1.0/src/apothem/harnesses/antigravity/materializer.py +39 -0
  95. apothem-0.1.0/src/apothem/harnesses/antigravity/uninstall.py +20 -0
  96. apothem-0.1.0/src/apothem/harnesses/antigravity/update.py +24 -0
  97. apothem-0.1.0/src/apothem/harnesses/antigravity/verify.py +18 -0
  98. apothem-0.1.0/src/apothem/harnesses/claude_code/__init__.py +76 -0
  99. apothem-0.1.0/src/apothem/harnesses/claude_code/install.py +204 -0
  100. apothem-0.1.0/src/apothem/harnesses/claude_code/templates/settings-unix.json +192 -0
  101. apothem-0.1.0/src/apothem/harnesses/claude_code/templates/settings.json +192 -0
  102. apothem-0.1.0/src/apothem/harnesses/claude_code/uninstall.py +20 -0
  103. apothem-0.1.0/src/apothem/harnesses/claude_code/update.py +24 -0
  104. apothem-0.1.0/src/apothem/harnesses/claude_code/verify.py +18 -0
  105. apothem-0.1.0/src/apothem/harnesses/codex/__init__.py +57 -0
  106. apothem-0.1.0/src/apothem/harnesses/codex/install.py +26 -0
  107. apothem-0.1.0/src/apothem/harnesses/codex/materializer.py +31 -0
  108. apothem-0.1.0/src/apothem/harnesses/codex/uninstall.py +20 -0
  109. apothem-0.1.0/src/apothem/harnesses/codex/update.py +24 -0
  110. apothem-0.1.0/src/apothem/harnesses/codex/verify.py +18 -0
  111. apothem-0.1.0/src/apothem/harnesses/cursor/__init__.py +70 -0
  112. apothem-0.1.0/src/apothem/harnesses/cursor/install.py +26 -0
  113. apothem-0.1.0/src/apothem/harnesses/cursor/materializer.py +31 -0
  114. apothem-0.1.0/src/apothem/harnesses/cursor/uninstall.py +20 -0
  115. apothem-0.1.0/src/apothem/harnesses/cursor/update.py +24 -0
  116. apothem-0.1.0/src/apothem/harnesses/cursor/verify.py +18 -0
  117. apothem-0.1.0/src/apothem/harnesses/gemini_cli/__init__.py +57 -0
  118. apothem-0.1.0/src/apothem/harnesses/gemini_cli/install.py +26 -0
  119. apothem-0.1.0/src/apothem/harnesses/gemini_cli/materializer.py +32 -0
  120. apothem-0.1.0/src/apothem/harnesses/gemini_cli/uninstall.py +20 -0
  121. apothem-0.1.0/src/apothem/harnesses/gemini_cli/update.py +24 -0
  122. apothem-0.1.0/src/apothem/harnesses/gemini_cli/verify.py +18 -0
  123. apothem-0.1.0/src/apothem/harnesses/github_copilot/__init__.py +60 -0
  124. apothem-0.1.0/src/apothem/harnesses/github_copilot/install.py +26 -0
  125. apothem-0.1.0/src/apothem/harnesses/github_copilot/materializer.py +31 -0
  126. apothem-0.1.0/src/apothem/harnesses/github_copilot/uninstall.py +20 -0
  127. apothem-0.1.0/src/apothem/harnesses/github_copilot/update.py +24 -0
  128. apothem-0.1.0/src/apothem/harnesses/github_copilot/verify.py +18 -0
  129. apothem-0.1.0/src/apothem/harnesses/hermes/__init__.py +59 -0
  130. apothem-0.1.0/src/apothem/harnesses/hermes/install.py +26 -0
  131. apothem-0.1.0/src/apothem/harnesses/hermes/materializer.py +22 -0
  132. apothem-0.1.0/src/apothem/harnesses/hermes/uninstall.py +20 -0
  133. apothem-0.1.0/src/apothem/harnesses/hermes/update.py +24 -0
  134. apothem-0.1.0/src/apothem/harnesses/hermes/verify.py +18 -0
  135. apothem-0.1.0/src/apothem/harnesses/open_claw/__init__.py +60 -0
  136. apothem-0.1.0/src/apothem/harnesses/open_claw/install.py +26 -0
  137. apothem-0.1.0/src/apothem/harnesses/open_claw/materializer.py +46 -0
  138. apothem-0.1.0/src/apothem/harnesses/open_claw/uninstall.py +20 -0
  139. apothem-0.1.0/src/apothem/harnesses/open_claw/update.py +24 -0
  140. apothem-0.1.0/src/apothem/harnesses/open_claw/verify.py +18 -0
  141. apothem-0.1.0/src/apothem/harnesses/opencode/__init__.py +57 -0
  142. apothem-0.1.0/src/apothem/harnesses/opencode/install.py +26 -0
  143. apothem-0.1.0/src/apothem/harnesses/opencode/materializer.py +38 -0
  144. apothem-0.1.0/src/apothem/harnesses/opencode/uninstall.py +20 -0
  145. apothem-0.1.0/src/apothem/harnesses/opencode/update.py +24 -0
  146. apothem-0.1.0/src/apothem/harnesses/opencode/verify.py +18 -0
  147. apothem-0.1.0/src/apothem/harnesses/qwen_code/__init__.py +57 -0
  148. apothem-0.1.0/src/apothem/harnesses/qwen_code/install.py +26 -0
  149. apothem-0.1.0/src/apothem/harnesses/qwen_code/materializer.py +31 -0
  150. apothem-0.1.0/src/apothem/harnesses/qwen_code/uninstall.py +20 -0
  151. apothem-0.1.0/src/apothem/harnesses/qwen_code/update.py +24 -0
  152. apothem-0.1.0/src/apothem/harnesses/qwen_code/verify.py +18 -0
  153. apothem-0.1.0/src/apothem/harnesses/windsurf/__init__.py +59 -0
  154. apothem-0.1.0/src/apothem/harnesses/windsurf/install.py +26 -0
  155. apothem-0.1.0/src/apothem/harnesses/windsurf/materializer.py +31 -0
  156. apothem-0.1.0/src/apothem/harnesses/windsurf/uninstall.py +20 -0
  157. apothem-0.1.0/src/apothem/harnesses/windsurf/update.py +24 -0
  158. apothem-0.1.0/src/apothem/harnesses/windsurf/verify.py +18 -0
  159. apothem-0.1.0/src/apothem/hooks/__init__.py +26 -0
  160. apothem-0.1.0/src/apothem/hooks/dispatch.py +174 -0
  161. apothem-0.1.0/src/apothem/hooks/emit_hook_context.py +298 -0
  162. apothem-0.1.0/src/apothem/hooks/lib/__init__.py +23 -0
  163. apothem-0.1.0/src/apothem/hooks/lib/bootstrap.ps1 +120 -0
  164. apothem-0.1.0/src/apothem/hooks/lib/bootstrap.sh +105 -0
  165. apothem-0.1.0/src/apothem/hooks/lib/events.py +56 -0
  166. apothem-0.1.0/src/apothem/hooks/lib/find-pwsh.ps1 +83 -0
  167. apothem-0.1.0/src/apothem/hooks/lib/find-pwsh.sh +81 -0
  168. apothem-0.1.0/src/apothem/hooks/lib/find-python.ps1 +58 -0
  169. apothem-0.1.0/src/apothem/hooks/lib/find-python.sh +50 -0
  170. apothem-0.1.0/src/apothem/hooks/lib/log.py +48 -0
  171. apothem-0.1.0/src/apothem/hooks/lib/resolve_root.py +206 -0
  172. apothem-0.1.0/src/apothem/hooks/messages/postcompact.md +12 -0
  173. apothem-0.1.0/src/apothem/hooks/messages/precompact.md +12 -0
  174. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-bash-plan-guard.md +121 -0
  175. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-bash.md +37 -0
  176. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-conformity.md +41 -0
  177. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-edit-header-guard.md +93 -0
  178. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-edit.md +21 -0
  179. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-notebookedit.md +9 -0
  180. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write-header-guard.md +76 -0
  181. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write-plan-guard.md +116 -0
  182. apothem-0.1.0/src/apothem/hooks/messages/pretooluse-write.md +21 -0
  183. apothem-0.1.0/src/apothem/hooks/messages/sessionstart.md +13 -0
  184. apothem-0.1.0/src/apothem/hooks/messages/stop.md +23 -0
  185. apothem-0.1.0/src/apothem/hooks/session_start_bootstrap.py +425 -0
  186. apothem-0.1.0/src/apothem/lib/__init__.py +13 -0
  187. apothem-0.1.0/src/apothem/lib/frontmatter.py +100 -0
  188. apothem-0.1.0/src/apothem/lib/harness_materializer.py +98 -0
  189. apothem-0.1.0/src/apothem/lib/parallel_sweep.py +228 -0
  190. apothem-0.1.0/src/apothem/lib/reporter.py +59 -0
  191. apothem-0.1.0/src/apothem/output-styles/README.md +42 -0
  192. apothem-0.1.0/src/apothem/output-styles/concise-engineer.md +56 -0
  193. apothem-0.1.0/src/apothem/output-styles/default-architect.md +59 -0
  194. apothem-0.1.0/src/apothem/output-styles/default.md +120 -0
  195. apothem-0.1.0/src/apothem/output-styles/forensic-auditor.md +70 -0
  196. apothem-0.1.0/src/apothem/rules/README.md +96 -0
  197. apothem-0.1.0/src/apothem/rules/agent-orchestration-patterns.md +181 -0
  198. apothem-0.1.0/src/apothem/rules/agent-orchestration.md +70 -0
  199. apothem-0.1.0/src/apothem/rules/agile-sprints-elements.md +142 -0
  200. apothem-0.1.0/src/apothem/rules/agile-sprints.md +71 -0
  201. apothem-0.1.0/src/apothem/rules/authority-inquiry-categories.md +65 -0
  202. apothem-0.1.0/src/apothem/rules/authority-inquiry.md +61 -0
  203. apothem-0.1.0/src/apothem/rules/auto-memory-topic-files.md +93 -0
  204. apothem-0.1.0/src/apothem/rules/auto-memory.md +72 -0
  205. apothem-0.1.0/src/apothem/rules/bidirectional-binding.md +130 -0
  206. apothem-0.1.0/src/apothem/rules/canonical-layout-reporting-tiers.md +182 -0
  207. apothem-0.1.0/src/apothem/rules/canonical-layout.md +61 -0
  208. apothem-0.1.0/src/apothem/rules/clean-architecture-layers.md +193 -0
  209. apothem-0.1.0/src/apothem/rules/clean-room-generation-protocols.md +131 -0
  210. apothem-0.1.0/src/apothem/rules/clean-room-generation.md +61 -0
  211. apothem-0.1.0/src/apothem/rules/code-craft-conventions.md +108 -0
  212. apothem-0.1.0/src/apothem/rules/code-craft-markdown.md +141 -0
  213. apothem-0.1.0/src/apothem/rules/code-craft-python.md +161 -0
  214. apothem-0.1.0/src/apothem/rules/code-craft-shell.md +199 -0
  215. apothem-0.1.0/src/apothem/rules/cognitive-identity-techniques.md +187 -0
  216. apothem-0.1.0/src/apothem/rules/cognitive-identity.md +88 -0
  217. apothem-0.1.0/src/apothem/rules/context-management-protocol.md +142 -0
  218. apothem-0.1.0/src/apothem/rules/context-management-scratch.md +109 -0
  219. apothem-0.1.0/src/apothem/rules/context-management.md +89 -0
  220. apothem-0.1.0/src/apothem/rules/definitiveness-virtues.md +74 -0
  221. apothem-0.1.0/src/apothem/rules/definitiveness.md +65 -0
  222. apothem-0.1.0/src/apothem/rules/disclosure-ledger-markers.md +59 -0
  223. apothem-0.1.0/src/apothem/rules/disclosure-ledger.md +59 -0
  224. apothem-0.1.0/src/apothem/rules/expertise-posture-elements.md +75 -0
  225. apothem-0.1.0/src/apothem/rules/expertise-posture.md +55 -0
  226. apothem-0.1.0/src/apothem/rules/host-discovery-manifests.md +57 -0
  227. apothem-0.1.0/src/apothem/rules/host-discovery.md +63 -0
  228. apothem-0.1.0/src/apothem/rules/interactive-questions-canonical-shapes.md +449 -0
  229. apothem-0.1.0/src/apothem/rules/interactive-questions-sweep-matchers.md +190 -0
  230. apothem-0.1.0/src/apothem/rules/interactive-questions.md +101 -0
  231. apothem-0.1.0/src/apothem/rules/large-file-generation.md +147 -0
  232. apothem-0.1.0/src/apothem/rules/operational-mandates-expanded.md +105 -0
  233. apothem-0.1.0/src/apothem/rules/operational-mandates.md +95 -0
  234. apothem-0.1.0/src/apothem/rules/option-annotation-form.md +67 -0
  235. apothem-0.1.0/src/apothem/rules/option-annotation.md +52 -0
  236. apothem-0.1.0/src/apothem/rules/performance-discipline.md +135 -0
  237. apothem-0.1.0/src/apothem/rules/persistent-conventions-vigilance-checklist.md +61 -0
  238. apothem-0.1.0/src/apothem/rules/persistent-conventions-vigilance.md +68 -0
  239. apothem-0.1.0/src/apothem/rules/planning-techniques.md +128 -0
  240. apothem-0.1.0/src/apothem/rules/pre-emission-gate-bars.md +93 -0
  241. apothem-0.1.0/src/apothem/rules/pre-emission-gate.md +61 -0
  242. apothem-0.1.0/src/apothem/rules/production-ready-prs-surfaces.md +143 -0
  243. apothem-0.1.0/src/apothem/rules/production-ready-prs.md +90 -0
  244. apothem-0.1.0/src/apothem/rules/systemic-participation-relations.md +115 -0
  245. apothem-0.1.0/src/apothem/rules/systemic-participation.md +77 -0
  246. apothem-0.1.0/src/apothem/rules/ten-dimension-check-dimensions.md +59 -0
  247. apothem-0.1.0/src/apothem/rules/ten-dimension-check.md +66 -0
  248. apothem-0.1.0/src/apothem/rules/token-budget-discipline.md +88 -0
  249. apothem-0.1.0/src/apothem/rules/visual-leverage.md +109 -0
  250. apothem-0.1.0/src/apothem/schemas/NOTICE.md +24 -0
  251. apothem-0.1.0/src/apothem/schemas/README.md +54 -0
  252. apothem-0.1.0/src/apothem/schemas/__init__.py +146 -0
  253. apothem-0.1.0/src/apothem/schemas/agent.schema.json +106 -0
  254. apothem-0.1.0/src/apothem/schemas/authorship-header.txt +6 -0
  255. apothem-0.1.0/src/apothem/schemas/command.schema.json +51 -0
  256. apothem-0.1.0/src/apothem/schemas/compatibility-matrix.yaml +271 -0
  257. apothem-0.1.0/src/apothem/schemas/handoff-manifest.yaml +276 -0
  258. apothem-0.1.0/src/apothem/schemas/header-exceptions.txt +132 -0
  259. apothem-0.1.0/src/apothem/schemas/header-visibility.yaml +44 -0
  260. apothem-0.1.0/src/apothem/schemas/output-style.schema.json +41 -0
  261. apothem-0.1.0/src/apothem/schemas/plan.schema.json +51 -0
  262. apothem-0.1.0/src/apothem/schemas/profile.example.yaml +37 -0
  263. apothem-0.1.0/src/apothem/schemas/profile.schema.json +101 -0
  264. apothem-0.1.0/src/apothem/schemas/skill.schema.json +52 -0
  265. apothem-0.1.0/src/apothem/skills/README.md +43 -0
  266. apothem-0.1.0/src/apothem/skills/ecosystem-audit/SKILL.md +185 -0
  267. apothem-0.1.0/src/apothem/skills/plan-suite/SKILL.md +99 -0
  268. apothem-0.1.0/src/apothem/skills/plan-suite/master_template.md +1331 -0
  269. apothem-0.1.0/src/apothem/statuslines/README.md +26 -0
  270. apothem-0.1.0/src/apothem/statuslines/__init__.py +26 -0
  271. apothem-0.1.0/src/apothem/statuslines/conformity.json +5 -0
  272. apothem-0.1.0/src/apothem/statuslines/render.py +261 -0
  273. apothem-0.1.0/src/apothem/statuslines/statusline.md +53 -0
  274. apothem-0.1.0/src/apothem/statuslines/statusline.ps1 +137 -0
  275. apothem-0.1.0/src/apothem/statuslines/statusline.sh +143 -0
  276. apothem-0.1.0/src/apothem/templates/README.md +37 -0
  277. apothem-0.1.0/src/apothem/templates/consideration-log.md +46 -0
  278. apothem-0.1.0/src/apothem/templates/expertise-gap-log.md +63 -0
  279. apothem-0.1.0/src/apothem/templates/master-index-template.md +100 -0
  280. apothem-0.1.0/src/apothem/templates/potency-map.md +60 -0
  281. apothem-0.1.0/src/apothem/templates/preservation-audit.md +67 -0
  282. apothem-0.1.0/src/apothem/templates/question-resolution-audit.md +59 -0
  283. apothem-0.1.0/src/apothem/templates/trace-matrix-template.md +84 -0
  284. apothem-0.1.0/src/apothem.egg-info/PKG-INFO +845 -0
  285. apothem-0.1.0/src/apothem.egg-info/SOURCES.txt +287 -0
  286. apothem-0.1.0/src/apothem.egg-info/dependency_links.txt +1 -0
  287. apothem-0.1.0/src/apothem.egg-info/entry_points.txt +17 -0
  288. apothem-0.1.0/src/apothem.egg-info/requires.txt +37 -0
  289. apothem-0.1.0/src/apothem.egg-info/top_level.txt +1 -0
apothem-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ahmed G. Gad
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,18 @@
1
+ MIT License
2
+
3
+ Copyright (c) <year> <copyright holders>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial
12
+ portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
+ USE OR OTHER DEALINGS IN THE SOFTWARE.