attune-help 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 (651) hide show
  1. attune_help-0.1.0/LICENSE +19 -0
  2. attune_help-0.1.0/PKG-INFO +167 -0
  3. attune_help-0.1.0/README.md +121 -0
  4. attune_help-0.1.0/pyproject.toml +43 -0
  5. attune_help-0.1.0/setup.cfg +4 -0
  6. attune_help-0.1.0/src/attune_help/__init__.py +32 -0
  7. attune_help-0.1.0/src/attune_help/engine.py +385 -0
  8. attune_help-0.1.0/src/attune_help/progression.py +180 -0
  9. attune_help-0.1.0/src/attune_help/storage.py +178 -0
  10. attune_help-0.1.0/src/attune_help/templates/comparisons/auth-strategies.md +27 -0
  11. attune_help-0.1.0/src/attune_help/templates/comparisons/cli-vs-claude-code.md +29 -0
  12. attune_help-0.1.0/src/attune_help/templates/comparisons/lite-vs-full.md +31 -0
  13. attune_help-0.1.0/src/attune_help/templates/comparisons/workflow-vs-wizard.md +29 -0
  14. attune_help-0.1.0/src/attune_help/templates/concepts/audience-adaptation.md +24 -0
  15. attune_help-0.1.0/src/attune_help/templates/concepts/cross-linking.md +28 -0
  16. attune_help-0.1.0/src/attune_help/templates/concepts/feedback-loop.md +24 -0
  17. attune_help-0.1.0/src/attune_help/templates/concepts/meta-orchestration.md +28 -0
  18. attune_help-0.1.0/src/attune_help/templates/concepts/progressive-depth.md +28 -0
  19. attune_help-0.1.0/src/attune_help/templates/concepts/socratic-discovery.md +24 -0
  20. attune_help-0.1.0/src/attune_help/templates/concepts/sync-paradigm.md +28 -0
  21. attune_help-0.1.0/src/attune_help/templates/concepts/task-api-endpoint-design.md +142 -0
  22. attune_help-0.1.0/src/attune_help/templates/concepts/task-authentication-patterns.md +104 -0
  23. attune_help-0.1.0/src/attune_help/templates/concepts/task-ci-cd-pipeline.md +126 -0
  24. attune_help-0.1.0/src/attune_help/templates/concepts/task-code-migration.md +124 -0
  25. attune_help-0.1.0/src/attune_help/templates/concepts/task-configuration-setup.md +80 -0
  26. attune_help-0.1.0/src/attune_help/templates/concepts/task-cross-linking-strategy.md +123 -0
  27. attune_help-0.1.0/src/attune_help/templates/concepts/task-database-migrations.md +108 -0
  28. attune_help-0.1.0/src/attune_help/templates/concepts/task-debugging-sessions.md +82 -0
  29. attune_help-0.1.0/src/attune_help/templates/concepts/task-dependency-management.md +57 -0
  30. attune_help-0.1.0/src/attune_help/templates/concepts/task-error-handling-design.md +88 -0
  31. attune_help-0.1.0/src/attune_help/templates/concepts/task-git-workflow.md +112 -0
  32. attune_help-0.1.0/src/attune_help/templates/concepts/task-help-system-testing.md +77 -0
  33. attune_help-0.1.0/src/attune_help/templates/concepts/task-logging-observability.md +122 -0
  34. attune_help-0.1.0/src/attune_help/templates/concepts/task-package-publishing.md +88 -0
  35. attune_help-0.1.0/src/attune_help/templates/concepts/task-precursor-warning-design.md +125 -0
  36. attune_help-0.1.0/src/attune_help/templates/concepts/task-progressive-depth-design.md +73 -0
  37. attune_help-0.1.0/src/attune_help/templates/concepts/task-socratic-discovery-patterns.md +109 -0
  38. attune_help-0.1.0/src/attune_help/templates/concepts/task-template-design-patterns.md +135 -0
  39. attune_help-0.1.0/src/attune_help/templates/concepts/task-template-migration.md +121 -0
  40. attune_help-0.1.0/src/attune_help/templates/concepts/template-composition.md +24 -0
  41. attune_help-0.1.0/src/attune_help/templates/concepts/tier-routing.md +28 -0
  42. attune_help-0.1.0/src/attune_help/templates/concepts/tool-attune-hub.md +78 -0
  43. attune_help-0.1.0/src/attune_help/templates/concepts/tool-bug-predict.md +67 -0
  44. attune_help-0.1.0/src/attune_help/templates/concepts/tool-coach.md +79 -0
  45. attune_help-0.1.0/src/attune_help/templates/concepts/tool-code-quality.md +57 -0
  46. attune_help-0.1.0/src/attune_help/templates/concepts/tool-doc-gen.md +75 -0
  47. attune_help-0.1.0/src/attune_help/templates/concepts/tool-fix-test.md +62 -0
  48. attune_help-0.1.0/src/attune_help/templates/concepts/tool-memory-and-context.md +82 -0
  49. attune_help-0.1.0/src/attune_help/templates/concepts/tool-planning.md +62 -0
  50. attune_help-0.1.0/src/attune_help/templates/concepts/tool-refactor-plan.md +57 -0
  51. attune_help-0.1.0/src/attune_help/templates/concepts/tool-release-prep.md +56 -0
  52. attune_help-0.1.0/src/attune_help/templates/concepts/tool-security-audit.md +49 -0
  53. attune_help-0.1.0/src/attune_help/templates/concepts/tool-smart-test.md +63 -0
  54. attune_help-0.1.0/src/attune_help/templates/concepts/tool-spec.md +82 -0
  55. attune_help-0.1.0/src/attune_help/templates/concepts/tool-workflow-orchestration.md +67 -0
  56. attune_help-0.1.0/src/attune_help/templates/concepts/workflow-chain-prediction.md +24 -0
  57. attune_help-0.1.0/src/attune_help/templates/cross_links.json +6431 -0
  58. attune_help-0.1.0/src/attune_help/templates/errors/adding-dns-resolution-to-validate-webhook-url-breaks-tests-that.md +30 -0
  59. attune_help-0.1.0/src/attune_help/templates/errors/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +31 -0
  60. attune_help-0.1.0/src/attune_help/templates/errors/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +30 -0
  61. attune_help-0.1.0/src/attune_help/templates/errors/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +32 -0
  62. attune_help-0.1.0/src/attune_help/templates/errors/attune-skill-names-must-not-collide-with-claude-code-built-in.md +33 -0
  63. attune_help-0.1.0/src/attune_help/templates/errors/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +28 -0
  64. attune_help-0.1.0/src/attune_help/templates/errors/background-processes-from-previous-sessions-persist-across.md +30 -0
  65. attune_help-0.1.0/src/attune_help/templates/errors/bandit-b108-blocks-hardcoded-tmp-paths.md +28 -0
  66. attune_help-0.1.0/src/attune_help/templates/errors/baseworkflow-now-provides-self-logger.md +28 -0
  67. attune_help-0.1.0/src/attune_help/templates/errors/baseworkflow-uses-class-attributes-not-constructor-params.md +29 -0
  68. attune_help-0.1.0/src/attune_help/templates/errors/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +27 -0
  69. attune_help-0.1.0/src/attune_help/templates/errors/broad-gitignore-patterns-match-nested-directories.md +29 -0
  70. attune_help-0.1.0/src/attune_help/templates/errors/bug-predict-dangerous-eval-flags-subprocess-exec.md +28 -0
  71. attune_help-0.1.0/src/attune_help/templates/errors/bugpredictionworkflow-not-bugpredictworkflow.md +28 -0
  72. attune_help-0.1.0/src/attune_help/templates/errors/changing-error-messages-breaks-tests-across-the-codebase.md +28 -0
  73. attune_help-0.1.0/src/attune_help/templates/errors/changing-user-facing-output-strings-cascades-through-test.md +32 -0
  74. attune_help-0.1.0/src/attune_help/templates/errors/ci-timeout-tests-enforce-the-range-you-set.md +28 -0
  75. attune_help-0.1.0/src/attune_help/templates/errors/claude-agent-sdk-is-now-a-core-dependency-of-attune-ai.md +29 -0
  76. attune_help-0.1.0/src/attune_help/templates/errors/claude-code-plugin-is-platform-specific.md +28 -0
  77. attune_help-0.1.0/src/attune_help/templates/errors/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +29 -0
  78. attune_help-0.1.0/src/attune_help/templates/errors/claude-plugin-install-is-marketplace-only.md +29 -0
  79. attune_help-0.1.0/src/attune_help/templates/errors/clusterfuzzlite-no-deps-misses-transitive-imports.md +29 -0
  80. attune_help-0.1.0/src/attune_help/templates/errors/codeql-alerts-dismissible-in-bulk-via-gh-api.md +29 -0
  81. attune_help-0.1.0/src/attune_help/templates/errors/codeql-js-stored-xss-flags-jsx-even-though-react-auto-escapes.md +28 -0
  82. attune_help-0.1.0/src/attune_help/templates/errors/codeql-py-clear-text-logging-sensitive-data-traces-data-flow.md +31 -0
  83. attune_help-0.1.0/src/attune_help/templates/errors/commands-are-not-namespaced-in-plugins-skills-are.md +28 -0
  84. attune_help-0.1.0/src/attune_help/templates/errors/config-py-alongside-config-creates-a-mypy-duplicate-module.md +31 -0
  85. attune_help-0.1.0/src/attune_help/templates/errors/costreport-is-a-dataclass-not-a-dict.md +29 -0
  86. attune_help-0.1.0/src/attune_help/templates/errors/custom-mcp-stdio-loop-fails-claude-code-handshake.md +28 -0
  87. attune_help-0.1.0/src/attune_help/templates/errors/datetime-utcnow-datetime-nowtimezone-utc-cascades-through-the.md +31 -0
  88. attune_help-0.1.0/src/attune_help/templates/errors/dead-code-modules-with-full-test-suites-look-alive.md +28 -0
  89. attune_help-0.1.0/src/attune_help/templates/errors/deep-review-false-positives-verify-before-acting.md +29 -0
  90. attune_help-0.1.0/src/attune_help/templates/errors/dependency-lower-bounds-trigger-scorecard-vulnerability-alerts.md +28 -0
  91. attune_help-0.1.0/src/attune_help/templates/errors/dispatch-tables-hold-direct-function-references-mocks-must.md +32 -0
  92. attune_help-0.1.0/src/attune_help/templates/errors/dist-can-contain-stale-artifacts-after-version-bumps.md +28 -0
  93. attune_help-0.1.0/src/attune_help/templates/errors/dont-append-z-to-timezone-aware-isoformat.md +29 -0
  94. attune_help-0.1.0/src/attune_help/templates/errors/duplicate-plugins-cause-conflicting-skill-triggers.md +28 -0
  95. attune_help-0.1.0/src/attune_help/templates/errors/enforce-admins-false-defeats-code-review-scorecard-check.md +29 -0
  96. attune_help-0.1.0/src/attune_help/templates/errors/enforce-admins-required-reviews-blocks-solo-dev-merges.md +29 -0
  97. attune_help-0.1.0/src/attune_help/templates/errors/exploration-agents-fabricate-names-verify-against-source.md +32 -0
  98. attune_help-0.1.0/src/attune_help/templates/errors/full-coverage-runs-on-15k-test-suites-timeout-easily.md +29 -0
  99. attune_help-0.1.0/src/attune_help/templates/errors/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +31 -0
  100. attune_help-0.1.0/src/attune_help/templates/errors/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +30 -0
  101. attune_help-0.1.0/src/attune_help/templates/errors/ghost-command-references-survive-cli-renames.md +29 -0
  102. attune_help-0.1.0/src/attune_help/templates/errors/github-protected-tags-cannot-be-force-updated.md +29 -0
  103. attune_help-0.1.0/src/attune_help/templates/errors/github-repos-serve-as-claude-code-marketplaces.md +29 -0
  104. attune_help-0.1.0/src/attune_help/templates/errors/gitignore-exclusions-break-ci-tests-that-read-those-files.md +32 -0
  105. attune_help-0.1.0/src/attune_help/templates/errors/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +31 -0
  106. attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-root-paths-in-tests.md +30 -0
  107. attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-strings-in-method-bodies-survive-class-attribute.md +30 -0
  108. attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-user-id-defeats-ownership-checks.md +29 -0
  109. attune_help-0.1.0/src/attune_help/templates/errors/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +29 -0
  110. attune_help-0.1.0/src/attune_help/templates/errors/importlib-import-module-is-an-arbitrary-code-execution-vector.md +31 -0
  111. attune_help-0.1.0/src/attune_help/templates/errors/is-private-is-a-superset-in-python-ipaddress.md +28 -0
  112. attune_help-0.1.0/src/attune_help/templates/errors/jinja2-trim-blocks-lstrip-blocks-eats-newlines-between.md +31 -0
  113. attune_help-0.1.0/src/attune_help/templates/errors/kwargs-collides-with-explicit-params-of-the-same-name.md +29 -0
  114. attune_help-0.1.0/src/attune_help/templates/errors/lazy-imports-inside-function-bodies-cant-be-patched-with.md +33 -0
  115. attune_help-0.1.0/src/attune_help/templates/errors/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +27 -0
  116. attune_help-0.1.0/src/attune_help/templates/errors/list-wizards-is-a-function-not-a-class-method.md +29 -0
  117. attune_help-0.1.0/src/attune_help/templates/errors/list-workflows-deduplication-must-keep-base-names-visible.md +28 -0
  118. attune_help-0.1.0/src/attune_help/templates/errors/macos-var-private-var-symlink-breaks-path-assertions.md +28 -0
  119. attune_help-0.1.0/src/attune_help/templates/errors/mcp-call-tool-wrapper-pattern.md +28 -0
  120. attune_help-0.1.0/src/attune_help/templates/errors/mcp-handler-validate-paths-before-importing-workflows.md +29 -0
  121. attune_help-0.1.0/src/attune_help/templates/errors/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +31 -0
  122. attune_help-0.1.0/src/attune_help/templates/errors/mcp-tool-count-tests-are-hardcoded.md +28 -0
  123. attune_help-0.1.0/src/attune_help/templates/errors/mcp-tool-renames-propagate-to-skill-docs.md +28 -0
  124. attune_help-0.1.0/src/attune_help/templates/errors/mcp-workspace-root-defaults-to-os-getcwd-tests-with-tmp-path.md +32 -0
  125. attune_help-0.1.0/src/attune_help/templates/errors/mixin-classes-inherit-self-workspace-root-at-runtime-not-at.md +31 -0
  126. attune_help-0.1.0/src/attune_help/templates/errors/mkdocs-strict-treats-broken-links-as-fatal-errors.md +28 -0
  127. attune_help-0.1.0/src/attune_help/templates/errors/mock-a-lazy-import-x-with-types-moduletype-patch-dictsys-modules.md +31 -0
  128. attune_help-0.1.0/src/attune_help/templates/errors/modeltier-has-two-copies-imports-must-match.md +29 -0
  129. attune_help-0.1.0/src/attune_help/templates/errors/module-level-optional-imports-enable-clean-test-patching.md +29 -0
  130. attune_help-0.1.0/src/attune_help/templates/errors/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +32 -0
  131. attune_help-0.1.0/src/attune_help/templates/errors/mypy-437-errors-was-stale-actual-count-was-2.md +28 -0
  132. attune_help-0.1.0/src/attune_help/templates/errors/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +29 -0
  133. attune_help-0.1.0/src/attune_help/templates/errors/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +32 -0
  134. attune_help-0.1.0/src/attune_help/templates/errors/new-security-features-need-dedicated-tests-before-release.md +28 -0
  135. attune_help-0.1.0/src/attune_help/templates/errors/next-js-shared-data-libs-prevent-page-duplication.md +28 -0
  136. attune_help-0.1.0/src/attune_help/templates/errors/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +28 -0
  137. attune_help-0.1.0/src/attune_help/templates/errors/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +30 -0
  138. attune_help-0.1.0/src/attune_help/templates/errors/patch-requires-the-target-name-to-exist-at-module-scope-at.md +29 -0
  139. attune_help-0.1.0/src/attune_help/templates/errors/patch-the-source-module-for-from-x-import-y-in-function-bodies.md +30 -0
  140. attune_help-0.1.0/src/attune_help/templates/errors/pip-audit-fails-on-unpublished-versions.md +29 -0
  141. attune_help-0.1.0/src/attune_help/templates/errors/plugin-read-skill-references-break-outside-the-plugin.md +29 -0
  142. attune_help-0.1.0/src/attune_help/templates/errors/pr-test-workflows-may-not-auto-trigger-after-close-reopen-or.md +32 -0
  143. attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-auto-fix-requires-re-stage-before-retry.md +29 -0
  144. attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-black-unstaged-files-re-stage-after-failure.md +28 -0
  145. attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +31 -0
  146. attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflict-with-auto-fix-hooks.md +29 -0
  147. attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +30 -0
  148. attune_help-0.1.0/src/attune_help/templates/errors/pull-main-before-merging-develop-to-avoid-merge-commits.md +29 -0
  149. attune_help-0.1.0/src/attune_help/templates/errors/pureposixpath-match-doesnt-support-in-python-3-10.md +28 -0
  150. attune_help-0.1.0/src/attune_help/templates/errors/pureposixpath-strips-trailing-slashes.md +29 -0
  151. attune_help-0.1.0/src/attune_help/templates/errors/push-specific-tags-not-tags.md +28 -0
  152. attune_help-0.1.0/src/attune_help/templates/errors/pypi-renders-readme-links-relative-to-its-own-domain.md +29 -0
  153. attune_help-0.1.0/src/attune_help/templates/errors/pytest-importorskip-triggers-ruff-e402.md +29 -0
  154. attune_help-0.1.0/src/attune_help/templates/errors/re-enabling-required-reviews-kills-queued-auto-merge.md +28 -0
  155. attune_help-0.1.0/src/attune_help/templates/errors/read-source-before-writing-tests-for-tricky-logic.md +29 -0
  156. attune_help-0.1.0/src/attune_help/templates/errors/real-project-files-on-disk-override-test-mocks.md +29 -0
  157. attune_help-0.1.0/src/attune_help/templates/errors/rebuild-dist-after-readme-changes.md +28 -0
  158. attune_help-0.1.0/src/attune_help/templates/errors/redisshorttermmemory-mock-injection-path.md +28 -0
  159. attune_help-0.1.0/src/attune_help/templates/errors/registry-count-assertions-are-scattered-across-test-files.md +29 -0
  160. attune_help-0.1.0/src/attune_help/templates/errors/replacing-a-mixin-based-class-scatters-test-failures-across.md +30 -0
  161. attune_help-0.1.0/src/attune_help/templates/errors/repo-merge-policy-may-restrict-merge-strategies.md +28 -0
  162. attune_help-0.1.0/src/attune_help/templates/errors/required-status-check-names-must-match-githubs-exact-check-names.md +33 -0
  163. attune_help-0.1.0/src/attune_help/templates/errors/resultmessage-result-is-often-none-capture-assistantmessage.md +30 -0
  164. attune_help-0.1.0/src/attune_help/templates/errors/ruff-auto-fix-strips-imports-before-usage-code-exists.md +28 -0
  165. attune_help-0.1.0/src/attune_help/templates/errors/ruff-parses-pytest-ini-as-python.md +28 -0
  166. attune_help-0.1.0/src/attune_help/templates/errors/run-simplify-catches-per-file-errors-internally.md +28 -0
  167. attune_help-0.1.0/src/attune_help/templates/errors/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +29 -0
  168. attune_help-0.1.0/src/attune_help/templates/errors/scorecards-pip-parser-ignores-hash-flags-entirely.md +29 -0
  169. attune_help-0.1.0/src/attune_help/templates/errors/sdk-agent-model-config-uses-stale-model-names.md +28 -0
  170. attune_help-0.1.0/src/attune_help/templates/errors/sdk-native-workflows-validate-in-execute-not-input-schema.md +28 -0
  171. attune_help-0.1.0/src/attune_help/templates/errors/semantic-cache-70-hit-rate-claim-was-unmeasured.md +28 -0
  172. attune_help-0.1.0/src/attune_help/templates/errors/session-hooks-may-be-vestigial.md +29 -0
  173. attune_help-0.1.0/src/attune_help/templates/errors/shadow-directories-at-repo-root-break-imports.md +28 -0
  174. attune_help-0.1.0/src/attune_help/templates/errors/silent-pass-blocks-in-discovery-registry-code-hide-import.md +30 -0
  175. attune_help-0.1.0/src/attune_help/templates/errors/skill-descriptions-must-be-under-250-characters.md +28 -0
  176. attune_help-0.1.0/src/attune_help/templates/errors/skill-frontmatter-allowlist-march-2026.md +28 -0
  177. attune_help-0.1.0/src/attune_help/templates/errors/skill-frontmatter-has-a-strict-allowlist.md +28 -0
  178. attune_help-0.1.0/src/attune_help/templates/errors/splitting-text-on-breaks-backtick-quoted-code-references.md +29 -0
  179. attune_help-0.1.0/src/attune_help/templates/errors/ssrf-always-decode-urls-before-validating-hostnames.md +28 -0
  180. attune_help-0.1.0/src/attune_help/templates/errors/ssrf-in-webhook-handlers-is-easy-to-miss.md +29 -0
  181. attune_help-0.1.0/src/attune_help/templates/errors/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +28 -0
  182. attune_help-0.1.0/src/attune_help/templates/errors/stacked-patch-decorators-inject-args-bottom-up.md +29 -0
  183. attune_help-0.1.0/src/attune_help/templates/errors/stop-hook-ordering-matters.md +29 -0
  184. attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-inject-stderr-not-stdout.md +28 -0
  185. attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-loop-without-a-sentinel.md +28 -0
  186. attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +28 -0
  187. attune_help-0.1.0/src/attune_help/templates/errors/structlog-kwargs-vs-stdlib-logger.md +28 -0
  188. attune_help-0.1.0/src/attune_help/templates/errors/test-mocks-must-match-imports.md +28 -0
  189. attune_help-0.1.0/src/attune_help/templates/errors/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +31 -0
  190. attune_help-0.1.0/src/attune_help/templates/errors/twine-cannot-prompt-for-tokens-in-claude-codes-non-interactive.md +30 -0
  191. attune_help-0.1.0/src/attune_help/templates/errors/undeclared-dependencies-work-locally-but-fail-in-clean-installs.md +35 -0
  192. attune_help-0.1.0/src/attune_help/templates/errors/untracked-scripts-break-ci-when-tests-import-them.md +30 -0
  193. attune_help-0.1.0/src/attune_help/templates/errors/validate-file-path-needed-on-reads-too-not-just-writes.md +28 -0
  194. attune_help-0.1.0/src/attune_help/templates/errors/validate-infrastructure-against-user-value-before-extending.md +29 -0
  195. attune_help-0.1.0/src/attune_help/templates/errors/verify-mcp-tool-wiring-after-adding-new-tools.md +29 -0
  196. attune_help-0.1.0/src/attune_help/templates/errors/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +30 -0
  197. attune_help-0.1.0/src/attune_help/templates/errors/website-feature-lists-can-diverge-from-the-python-registry.md +27 -0
  198. attune_help-0.1.0/src/attune_help/templates/errors/windows-ci-encoding.md +28 -0
  199. attune_help-0.1.0/src/attune_help/templates/errors/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +29 -0
  200. attune_help-0.1.0/src/attune_help/templates/errors/windows-path-resolve-prepends-the-drive-letter-to-unix-paths.md +30 -0
  201. attune_help-0.1.0/src/attune_help/templates/errors/windows-time-time-can-return-0-0-duration-for-fast-operations.md +32 -0
  202. attune_help-0.1.0/src/attune_help/templates/errors/wizards-call-workflows-internally-they-are-not-duplicates.md +28 -0
  203. attune_help-0.1.0/src/attune_help/templates/errors/workflowresult-constructor-mismatches-surface-only-at-runtime.md +32 -0
  204. attune_help-0.1.0/src/attune_help/templates/errors/yaml-run-values-with-colons-cause-parse-errors.md +28 -0
  205. attune_help-0.1.0/src/attune_help/templates/faqs/adding-dns-resolution-to-validate-webhook-url-breaks-tests-that.md +20 -0
  206. attune_help-0.1.0/src/attune_help/templates/faqs/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +20 -0
  207. attune_help-0.1.0/src/attune_help/templates/faqs/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +19 -0
  208. attune_help-0.1.0/src/attune_help/templates/faqs/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +24 -0
  209. attune_help-0.1.0/src/attune_help/templates/faqs/attune-skill-names-must-not-collide-with-claude-code-built-in.md +20 -0
  210. attune_help-0.1.0/src/attune_help/templates/faqs/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +22 -0
  211. attune_help-0.1.0/src/attune_help/templates/faqs/background-processes-from-previous-sessions-persist-across.md +22 -0
  212. attune_help-0.1.0/src/attune_help/templates/faqs/bandit-b108-blocks-hardcoded-tmp-paths.md +22 -0
  213. attune_help-0.1.0/src/attune_help/templates/faqs/baseworkflow-now-provides-self-logger.md +19 -0
  214. attune_help-0.1.0/src/attune_help/templates/faqs/baseworkflow-uses-class-attributes-not-constructor-params.md +19 -0
  215. attune_help-0.1.0/src/attune_help/templates/faqs/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +21 -0
  216. attune_help-0.1.0/src/attune_help/templates/faqs/broad-gitignore-patterns-match-nested-directories.md +19 -0
  217. attune_help-0.1.0/src/attune_help/templates/faqs/bug-predict-dangerous-eval-flags-subprocess-exec.md +22 -0
  218. attune_help-0.1.0/src/attune_help/templates/faqs/bugpredictionworkflow-not-bugpredictworkflow.md +22 -0
  219. attune_help-0.1.0/src/attune_help/templates/faqs/changing-error-messages-breaks-tests-across-the-codebase.md +19 -0
  220. attune_help-0.1.0/src/attune_help/templates/faqs/changing-user-facing-output-strings-cascades-through-test.md +20 -0
  221. attune_help-0.1.0/src/attune_help/templates/faqs/ci-timeout-tests-enforce-the-range-you-set.md +19 -0
  222. attune_help-0.1.0/src/attune_help/templates/faqs/claude-agent-sdk-is-now-a-core-dependency-of-attune-ai.md +19 -0
  223. attune_help-0.1.0/src/attune_help/templates/faqs/claude-code-plugin-is-platform-specific.md +15 -0
  224. attune_help-0.1.0/src/attune_help/templates/faqs/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +22 -0
  225. attune_help-0.1.0/src/attune_help/templates/faqs/claude-plugin-install-is-marketplace-only.md +19 -0
  226. attune_help-0.1.0/src/attune_help/templates/faqs/clusterfuzzlite-no-deps-misses-transitive-imports.md +22 -0
  227. attune_help-0.1.0/src/attune_help/templates/faqs/codeql-alerts-dismissible-in-bulk-via-gh-api.md +22 -0
  228. attune_help-0.1.0/src/attune_help/templates/faqs/codeql-js-stored-xss-flags-jsx-even-though-react-auto-escapes.md +19 -0
  229. attune_help-0.1.0/src/attune_help/templates/faqs/codeql-py-clear-text-logging-sensitive-data-traces-data-flow.md +23 -0
  230. attune_help-0.1.0/src/attune_help/templates/faqs/commands-are-not-namespaced-in-plugins-skills-are.md +22 -0
  231. attune_help-0.1.0/src/attune_help/templates/faqs/config-py-alongside-config-creates-a-mypy-duplicate-module.md +20 -0
  232. attune_help-0.1.0/src/attune_help/templates/faqs/costreport-is-a-dataclass-not-a-dict.md +23 -0
  233. attune_help-0.1.0/src/attune_help/templates/faqs/custom-mcp-stdio-loop-fails-claude-code-handshake.md +22 -0
  234. attune_help-0.1.0/src/attune_help/templates/faqs/datetime-utcnow-datetime-nowtimezone-utc-cascades-through-the.md +20 -0
  235. attune_help-0.1.0/src/attune_help/templates/faqs/dead-code-modules-with-full-test-suites-look-alive.md +19 -0
  236. attune_help-0.1.0/src/attune_help/templates/faqs/deep-review-false-positives-verify-before-acting.md +22 -0
  237. attune_help-0.1.0/src/attune_help/templates/faqs/dependency-lower-bounds-trigger-scorecard-vulnerability-alerts.md +22 -0
  238. attune_help-0.1.0/src/attune_help/templates/faqs/dispatch-tables-hold-direct-function-references-mocks-must.md +23 -0
  239. attune_help-0.1.0/src/attune_help/templates/faqs/dist-can-contain-stale-artifacts-after-version-bumps.md +22 -0
  240. attune_help-0.1.0/src/attune_help/templates/faqs/dont-append-z-to-timezone-aware-isoformat.md +19 -0
  241. attune_help-0.1.0/src/attune_help/templates/faqs/duplicate-plugins-cause-conflicting-skill-triggers.md +19 -0
  242. attune_help-0.1.0/src/attune_help/templates/faqs/enforce-admins-false-defeats-code-review-scorecard-check.md +19 -0
  243. attune_help-0.1.0/src/attune_help/templates/faqs/enforce-admins-required-reviews-blocks-solo-dev-merges.md +19 -0
  244. attune_help-0.1.0/src/attune_help/templates/faqs/exploration-agents-fabricate-names-verify-against-source.md +19 -0
  245. attune_help-0.1.0/src/attune_help/templates/faqs/full-coverage-runs-on-15k-test-suites-timeout-easily.md +19 -0
  246. attune_help-0.1.0/src/attune_help/templates/faqs/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +23 -0
  247. attune_help-0.1.0/src/attune_help/templates/faqs/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +20 -0
  248. attune_help-0.1.0/src/attune_help/templates/faqs/ghost-command-references-survive-cli-renames.md +15 -0
  249. attune_help-0.1.0/src/attune_help/templates/faqs/github-protected-tags-cannot-be-force-updated.md +19 -0
  250. attune_help-0.1.0/src/attune_help/templates/faqs/github-repos-serve-as-claude-code-marketplaces.md +22 -0
  251. attune_help-0.1.0/src/attune_help/templates/faqs/gitignore-exclusions-break-ci-tests-that-read-those-files.md +20 -0
  252. attune_help-0.1.0/src/attune_help/templates/faqs/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +23 -0
  253. attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-root-paths-in-tests.md +19 -0
  254. attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-strings-in-method-bodies-survive-class-attribute.md +19 -0
  255. attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-user-id-defeats-ownership-checks.md +22 -0
  256. attune_help-0.1.0/src/attune_help/templates/faqs/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +22 -0
  257. attune_help-0.1.0/src/attune_help/templates/faqs/importlib-import-module-is-an-arbitrary-code-execution-vector.md +23 -0
  258. attune_help-0.1.0/src/attune_help/templates/faqs/is-private-is-a-superset-in-python-ipaddress.md +19 -0
  259. attune_help-0.1.0/src/attune_help/templates/faqs/kwargs-collides-with-explicit-params-of-the-same-name.md +22 -0
  260. attune_help-0.1.0/src/attune_help/templates/faqs/lazy-imports-inside-function-bodies-cant-be-patched-with.md +23 -0
  261. attune_help-0.1.0/src/attune_help/templates/faqs/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +21 -0
  262. attune_help-0.1.0/src/attune_help/templates/faqs/list-wizards-is-a-function-not-a-class-method.md +19 -0
  263. attune_help-0.1.0/src/attune_help/templates/faqs/list-workflows-deduplication-must-keep-base-names-visible.md +18 -0
  264. attune_help-0.1.0/src/attune_help/templates/faqs/macos-var-private-var-symlink-breaks-path-assertions.md +22 -0
  265. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-call-tool-wrapper-pattern.md +19 -0
  266. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-handler-validate-paths-before-importing-workflows.md +22 -0
  267. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +23 -0
  268. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-tool-count-tests-are-hardcoded.md +19 -0
  269. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-tool-renames-propagate-to-skill-docs.md +22 -0
  270. attune_help-0.1.0/src/attune_help/templates/faqs/mcp-workspace-root-defaults-to-os-getcwd-tests-with-tmp-path.md +23 -0
  271. attune_help-0.1.0/src/attune_help/templates/faqs/mixin-classes-inherit-self-workspace-root-at-runtime-not-at.md +20 -0
  272. attune_help-0.1.0/src/attune_help/templates/faqs/mkdocs-strict-treats-broken-links-as-fatal-errors.md +19 -0
  273. attune_help-0.1.0/src/attune_help/templates/faqs/mock-a-lazy-import-x-with-types-moduletype-patch-dictsys-modules.md +23 -0
  274. attune_help-0.1.0/src/attune_help/templates/faqs/modeltier-has-two-copies-imports-must-match.md +22 -0
  275. attune_help-0.1.0/src/attune_help/templates/faqs/module-level-optional-imports-enable-clean-test-patching.md +19 -0
  276. attune_help-0.1.0/src/attune_help/templates/faqs/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +22 -0
  277. attune_help-0.1.0/src/attune_help/templates/faqs/mypy-437-errors-was-stale-actual-count-was-2.md +22 -0
  278. attune_help-0.1.0/src/attune_help/templates/faqs/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +22 -0
  279. attune_help-0.1.0/src/attune_help/templates/faqs/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +20 -0
  280. attune_help-0.1.0/src/attune_help/templates/faqs/new-security-features-need-dedicated-tests-before-release.md +22 -0
  281. attune_help-0.1.0/src/attune_help/templates/faqs/next-js-shared-data-libs-prevent-page-duplication.md +19 -0
  282. attune_help-0.1.0/src/attune_help/templates/faqs/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +19 -0
  283. attune_help-0.1.0/src/attune_help/templates/faqs/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +18 -0
  284. attune_help-0.1.0/src/attune_help/templates/faqs/patch-requires-the-target-name-to-exist-at-module-scope-at.md +20 -0
  285. attune_help-0.1.0/src/attune_help/templates/faqs/patch-the-source-module-for-from-x-import-y-in-function-bodies.md +20 -0
  286. attune_help-0.1.0/src/attune_help/templates/faqs/pip-audit-fails-on-unpublished-versions.md +19 -0
  287. attune_help-0.1.0/src/attune_help/templates/faqs/plugin-read-skill-references-break-outside-the-plugin.md +19 -0
  288. attune_help-0.1.0/src/attune_help/templates/faqs/pr-test-workflows-may-not-auto-trigger-after-close-reopen-or.md +20 -0
  289. attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-auto-fix-requires-re-stage-before-retry.md +19 -0
  290. attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-black-unstaged-files-re-stage-after-failure.md +22 -0
  291. attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +23 -0
  292. attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflict-with-auto-fix-hooks.md +22 -0
  293. attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +23 -0
  294. attune_help-0.1.0/src/attune_help/templates/faqs/pull-main-before-merging-develop-to-avoid-merge-commits.md +22 -0
  295. attune_help-0.1.0/src/attune_help/templates/faqs/pureposixpath-match-doesnt-support-in-python-3-10.md +19 -0
  296. attune_help-0.1.0/src/attune_help/templates/faqs/pureposixpath-strips-trailing-slashes.md +22 -0
  297. attune_help-0.1.0/src/attune_help/templates/faqs/push-specific-tags-not-tags.md +22 -0
  298. attune_help-0.1.0/src/attune_help/templates/faqs/pypi-renders-readme-links-relative-to-its-own-domain.md +19 -0
  299. attune_help-0.1.0/src/attune_help/templates/faqs/pytest-importorskip-triggers-ruff-e402.md +22 -0
  300. attune_help-0.1.0/src/attune_help/templates/faqs/re-enabling-required-reviews-kills-queued-auto-merge.md +22 -0
  301. attune_help-0.1.0/src/attune_help/templates/faqs/read-source-before-writing-tests-for-tricky-logic.md +22 -0
  302. attune_help-0.1.0/src/attune_help/templates/faqs/real-project-files-on-disk-override-test-mocks.md +22 -0
  303. attune_help-0.1.0/src/attune_help/templates/faqs/rebuild-dist-after-readme-changes.md +19 -0
  304. attune_help-0.1.0/src/attune_help/templates/faqs/redisshorttermmemory-mock-injection-path.md +19 -0
  305. attune_help-0.1.0/src/attune_help/templates/faqs/registry-count-assertions-are-scattered-across-test-files.md +22 -0
  306. attune_help-0.1.0/src/attune_help/templates/faqs/replacing-a-mixin-based-class-scatters-test-failures-across.md +20 -0
  307. attune_help-0.1.0/src/attune_help/templates/faqs/repo-merge-policy-may-restrict-merge-strategies.md +22 -0
  308. attune_help-0.1.0/src/attune_help/templates/faqs/required-status-check-names-must-match-githubs-exact-check-names.md +23 -0
  309. attune_help-0.1.0/src/attune_help/templates/faqs/resultmessage-result-is-often-none-capture-assistantmessage.md +22 -0
  310. attune_help-0.1.0/src/attune_help/templates/faqs/ruff-auto-fix-strips-imports-before-usage-code-exists.md +22 -0
  311. attune_help-0.1.0/src/attune_help/templates/faqs/ruff-parses-pytest-ini-as-python.md +19 -0
  312. attune_help-0.1.0/src/attune_help/templates/faqs/run-simplify-catches-per-file-errors-internally.md +19 -0
  313. attune_help-0.1.0/src/attune_help/templates/faqs/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +22 -0
  314. attune_help-0.1.0/src/attune_help/templates/faqs/scorecards-pip-parser-ignores-hash-flags-entirely.md +19 -0
  315. attune_help-0.1.0/src/attune_help/templates/faqs/sdk-agent-model-config-uses-stale-model-names.md +22 -0
  316. attune_help-0.1.0/src/attune_help/templates/faqs/sdk-native-workflows-validate-in-execute-not-input-schema.md +19 -0
  317. attune_help-0.1.0/src/attune_help/templates/faqs/semantic-cache-70-hit-rate-claim-was-unmeasured.md +21 -0
  318. attune_help-0.1.0/src/attune_help/templates/faqs/session-hooks-may-be-vestigial.md +19 -0
  319. attune_help-0.1.0/src/attune_help/templates/faqs/shadow-directories-at-repo-root-break-imports.md +22 -0
  320. attune_help-0.1.0/src/attune_help/templates/faqs/silent-pass-blocks-in-discovery-registry-code-hide-import.md +23 -0
  321. attune_help-0.1.0/src/attune_help/templates/faqs/skill-descriptions-must-be-under-250-characters.md +22 -0
  322. attune_help-0.1.0/src/attune_help/templates/faqs/skill-frontmatter-allowlist-march-2026.md +19 -0
  323. attune_help-0.1.0/src/attune_help/templates/faqs/skill-frontmatter-has-a-strict-allowlist.md +19 -0
  324. attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-always-decode-urls-before-validating-hostnames.md +22 -0
  325. attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-in-webhook-handlers-is-easy-to-miss.md +19 -0
  326. attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +19 -0
  327. attune_help-0.1.0/src/attune_help/templates/faqs/stacked-patch-decorators-inject-args-bottom-up.md +22 -0
  328. attune_help-0.1.0/src/attune_help/templates/faqs/stop-hook-ordering-matters.md +15 -0
  329. attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-inject-stderr-not-stdout.md +22 -0
  330. attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-loop-without-a-sentinel.md +22 -0
  331. attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +22 -0
  332. attune_help-0.1.0/src/attune_help/templates/faqs/structlog-kwargs-vs-stdlib-logger.md +22 -0
  333. attune_help-0.1.0/src/attune_help/templates/faqs/test-mocks-must-match-imports.md +15 -0
  334. attune_help-0.1.0/src/attune_help/templates/faqs/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +20 -0
  335. attune_help-0.1.0/src/attune_help/templates/faqs/twine-cannot-prompt-for-tokens-in-claude-codes-non-interactive.md +20 -0
  336. attune_help-0.1.0/src/attune_help/templates/faqs/untracked-scripts-break-ci-when-tests-import-them.md +22 -0
  337. attune_help-0.1.0/src/attune_help/templates/faqs/validate-file-path-needed-on-reads-too-not-just-writes.md +19 -0
  338. attune_help-0.1.0/src/attune_help/templates/faqs/validate-infrastructure-against-user-value-before-extending.md +18 -0
  339. attune_help-0.1.0/src/attune_help/templates/faqs/verify-mcp-tool-wiring-after-adding-new-tools.md +15 -0
  340. attune_help-0.1.0/src/attune_help/templates/faqs/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +23 -0
  341. attune_help-0.1.0/src/attune_help/templates/faqs/website-feature-lists-can-diverge-from-the-python-registry.md +21 -0
  342. attune_help-0.1.0/src/attune_help/templates/faqs/windows-ci-encoding.md +22 -0
  343. attune_help-0.1.0/src/attune_help/templates/faqs/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +22 -0
  344. attune_help-0.1.0/src/attune_help/templates/faqs/windows-path-resolve-prepends-the-drive-letter-to-unix-paths.md +23 -0
  345. attune_help-0.1.0/src/attune_help/templates/faqs/windows-time-time-can-return-0-0-duration-for-fast-operations.md +23 -0
  346. attune_help-0.1.0/src/attune_help/templates/faqs/wizards-call-workflows-internally-they-are-not-duplicates.md +19 -0
  347. attune_help-0.1.0/src/attune_help/templates/faqs/workflowresult-constructor-mismatches-surface-only-at-runtime.md +20 -0
  348. attune_help-0.1.0/src/attune_help/templates/faqs/yaml-run-values-with-colons-cause-parse-errors.md +19 -0
  349. attune_help-0.1.0/src/attune_help/templates/notes/code-simplification.md +34 -0
  350. attune_help-0.1.0/src/attune_help/templates/notes/command-hubs.md +37 -0
  351. attune_help-0.1.0/src/attune_help/templates/notes/critical-rules.md +33 -0
  352. attune_help-0.1.0/src/attune_help/templates/notes/decision-d1-template-schemas-live-in-the-repo.md +42 -0
  353. attune_help-0.1.0/src/attune_help/templates/notes/decision-d2-search-index-first-unified-later.md +24 -0
  354. attune_help-0.1.0/src/attune_help/templates/notes/decision-d3-faq-sourcing-four-channels.md +33 -0
  355. attune_help-0.1.0/src/attune_help/templates/notes/decision-d4-code-is-the-source-of-truth.md +41 -0
  356. attune_help-0.1.0/src/attune_help/templates/notes/decision-d5-intelligent-templates-the-engine.md +26 -0
  357. attune_help-0.1.0/src/attune_help/templates/notes/decision-d6-proof-of-concept-lessons-learned-error-templates.md +69 -0
  358. attune_help-0.1.0/src/attune_help/templates/notes/markdown-formatting.md +38 -0
  359. attune_help-0.1.0/src/attune_help/templates/notes/project-structure.md +34 -0
  360. attune_help-0.1.0/src/attune_help/templates/notes/socratic-interaction-rule.md +44 -0
  361. attune_help-0.1.0/src/attune_help/templates/notes/term-cli.md +20 -0
  362. attune_help-0.1.0/src/attune_help/templates/notes/term-crew.md +20 -0
  363. attune_help-0.1.0/src/attune_help/templates/notes/term-hub.md +20 -0
  364. attune_help-0.1.0/src/attune_help/templates/notes/term-llm.md +20 -0
  365. attune_help-0.1.0/src/attune_help/templates/notes/term-p2b.md +20 -0
  366. attune_help-0.1.0/src/attune_help/templates/notes/term-progressive.md +20 -0
  367. attune_help-0.1.0/src/attune_help/templates/notes/term-sdk.md +20 -0
  368. attune_help-0.1.0/src/attune_help/templates/notes/term-socratic.md +20 -0
  369. attune_help-0.1.0/src/attune_help/templates/notes/term-tier.md +20 -0
  370. attune_help-0.1.0/src/attune_help/templates/notes/term-wizard.md +20 -0
  371. attune_help-0.1.0/src/attune_help/templates/quickstarts/browse-help.md +22 -0
  372. attune_help-0.1.0/src/attune_help/templates/quickstarts/check-costs.md +22 -0
  373. attune_help-0.1.0/src/attune_help/templates/quickstarts/check-health.md +22 -0
  374. attune_help-0.1.0/src/attune_help/templates/quickstarts/generate-tests.md +22 -0
  375. attune_help-0.1.0/src/attune_help/templates/quickstarts/install-plugin.md +22 -0
  376. attune_help-0.1.0/src/attune_help/templates/quickstarts/install.md +22 -0
  377. attune_help-0.1.0/src/attune_help/templates/quickstarts/run-code-review.md +22 -0
  378. attune_help-0.1.0/src/attune_help/templates/quickstarts/run-security-audit.md +22 -0
  379. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-attune-hub.md +22 -0
  380. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-bug-predict.md +22 -0
  381. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-coach.md +22 -0
  382. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-code-quality.md +22 -0
  383. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-doc-gen.md +22 -0
  384. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-fix-test.md +22 -0
  385. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-memory-and-context.md +22 -0
  386. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-planning.md +22 -0
  387. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-refactor-plan.md +22 -0
  388. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-release-prep.md +22 -0
  389. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-security-audit.md +22 -0
  390. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-smart-test.md +22 -0
  391. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-spec.md +22 -0
  392. attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-workflow-orchestration.md +22 -0
  393. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-api-endpoint-design.md +161 -0
  394. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-authentication-patterns.md +151 -0
  395. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-ci-cd-pipeline.md +130 -0
  396. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-code-migration.md +117 -0
  397. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-configuration-setup.md +106 -0
  398. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-cross-linking-strategy.md +143 -0
  399. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-database-migrations.md +135 -0
  400. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-debugging-sessions.md +103 -0
  401. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-dependency-management.md +72 -0
  402. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-error-handling-design.md +84 -0
  403. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-git-workflow.md +113 -0
  404. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-help-system-testing.md +185 -0
  405. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-logging-observability.md +122 -0
  406. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-package-publishing.md +107 -0
  407. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-precursor-warning-design.md +119 -0
  408. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-progressive-depth-design.md +120 -0
  409. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-socratic-discovery-patterns.md +94 -0
  410. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-template-design-patterns.md +149 -0
  411. attune_help-0.1.0/src/attune_help/templates/quickstarts/task-template-migration.md +149 -0
  412. attune_help-0.1.0/src/attune_help/templates/references/skill-attune-hub.md +202 -0
  413. attune_help-0.1.0/src/attune_help/templates/references/skill-bug-predict.md +240 -0
  414. attune_help-0.1.0/src/attune_help/templates/references/skill-coach.md +221 -0
  415. attune_help-0.1.0/src/attune_help/templates/references/skill-code-quality.md +183 -0
  416. attune_help-0.1.0/src/attune_help/templates/references/skill-doc-gen.md +173 -0
  417. attune_help-0.1.0/src/attune_help/templates/references/skill-fix-test.md +172 -0
  418. attune_help-0.1.0/src/attune_help/templates/references/skill-memory-and-context.md +205 -0
  419. attune_help-0.1.0/src/attune_help/templates/references/skill-planning.md +207 -0
  420. attune_help-0.1.0/src/attune_help/templates/references/skill-refactor-plan.md +195 -0
  421. attune_help-0.1.0/src/attune_help/templates/references/skill-release-prep.md +208 -0
  422. attune_help-0.1.0/src/attune_help/templates/references/skill-security-audit.md +173 -0
  423. attune_help-0.1.0/src/attune_help/templates/references/skill-smart-test.md +190 -0
  424. attune_help-0.1.0/src/attune_help/templates/references/skill-spec.md +271 -0
  425. attune_help-0.1.0/src/attune_help/templates/references/skill-workflow-orchestration.md +178 -0
  426. attune_help-0.1.0/src/attune_help/templates/references/task-api-endpoint-design.md +408 -0
  427. attune_help-0.1.0/src/attune_help/templates/references/task-authentication-patterns.md +417 -0
  428. attune_help-0.1.0/src/attune_help/templates/references/task-ci-cd-pipeline.md +241 -0
  429. attune_help-0.1.0/src/attune_help/templates/references/task-code-migration.md +243 -0
  430. attune_help-0.1.0/src/attune_help/templates/references/task-configuration-setup.md +296 -0
  431. attune_help-0.1.0/src/attune_help/templates/references/task-cross-linking-strategy.md +345 -0
  432. attune_help-0.1.0/src/attune_help/templates/references/task-database-migrations.md +295 -0
  433. attune_help-0.1.0/src/attune_help/templates/references/task-debugging-sessions.md +275 -0
  434. attune_help-0.1.0/src/attune_help/templates/references/task-dependency-management.md +246 -0
  435. attune_help-0.1.0/src/attune_help/templates/references/task-error-handling-design.md +255 -0
  436. attune_help-0.1.0/src/attune_help/templates/references/task-git-workflow.md +159 -0
  437. attune_help-0.1.0/src/attune_help/templates/references/task-help-system-testing.md +451 -0
  438. attune_help-0.1.0/src/attune_help/templates/references/task-logging-observability.md +330 -0
  439. attune_help-0.1.0/src/attune_help/templates/references/task-package-publishing.md +317 -0
  440. attune_help-0.1.0/src/attune_help/templates/references/task-precursor-warning-design.md +210 -0
  441. attune_help-0.1.0/src/attune_help/templates/references/task-progressive-depth-design.md +308 -0
  442. attune_help-0.1.0/src/attune_help/templates/references/task-socratic-discovery-patterns.md +159 -0
  443. attune_help-0.1.0/src/attune_help/templates/references/task-template-design-patterns.md +367 -0
  444. attune_help-0.1.0/src/attune_help/templates/references/task-template-migration.md +256 -0
  445. attune_help-0.1.0/src/attune_help/templates/references/tool-analyze-batch.md +29 -0
  446. attune_help-0.1.0/src/attune_help/templates/references/tool-analyze-image.md +30 -0
  447. attune_help-0.1.0/src/attune_help/templates/references/tool-attune-get-level.md +23 -0
  448. attune_help-0.1.0/src/attune_help/templates/references/tool-attune-set-level.md +29 -0
  449. attune_help-0.1.0/src/attune_help/templates/references/tool-auth-recommend.md +29 -0
  450. attune_help-0.1.0/src/attune_help/templates/references/tool-auth-status.md +23 -0
  451. attune_help-0.1.0/src/attune_help/templates/references/tool-bug-predict.md +29 -0
  452. attune_help-0.1.0/src/attune_help/templates/references/tool-code-review.md +29 -0
  453. attune_help-0.1.0/src/attune_help/templates/references/tool-context-get.md +29 -0
  454. attune_help-0.1.0/src/attune_help/templates/references/tool-context-set.md +30 -0
  455. attune_help-0.1.0/src/attune_help/templates/references/tool-deep-review.md +29 -0
  456. attune_help-0.1.0/src/attune_help/templates/references/tool-dependency-check.md +29 -0
  457. attune_help-0.1.0/src/attune_help/templates/references/tool-doc-audit.md +29 -0
  458. attune_help-0.1.0/src/attune_help/templates/references/tool-doc-gen.md +31 -0
  459. attune_help-0.1.0/src/attune_help/templates/references/tool-doc-orchestrator.md +29 -0
  460. attune_help-0.1.0/src/attune_help/templates/references/tool-health-check.md +29 -0
  461. attune_help-0.1.0/src/attune_help/templates/references/tool-memory-forget.md +30 -0
  462. attune_help-0.1.0/src/attune_help/templates/references/tool-memory-retrieve.md +29 -0
  463. attune_help-0.1.0/src/attune_help/templates/references/tool-memory-search.md +30 -0
  464. attune_help-0.1.0/src/attune_help/templates/references/tool-memory-store.md +32 -0
  465. attune_help-0.1.0/src/attune_help/templates/references/tool-performance-audit.md +29 -0
  466. attune_help-0.1.0/src/attune_help/templates/references/tool-refactor-plan.md +29 -0
  467. attune_help-0.1.0/src/attune_help/templates/references/tool-release-prep.md +29 -0
  468. attune_help-0.1.0/src/attune_help/templates/references/tool-research-synthesis.md +30 -0
  469. attune_help-0.1.0/src/attune_help/templates/references/tool-secure-release.md +29 -0
  470. attune_help-0.1.0/src/attune_help/templates/references/tool-security-audit.md +29 -0
  471. attune_help-0.1.0/src/attune_help/templates/references/tool-simplify-code.md +29 -0
  472. attune_help-0.1.0/src/attune_help/templates/references/tool-telemetry-stats.md +29 -0
  473. attune_help-0.1.0/src/attune_help/templates/references/tool-test-audit.md +29 -0
  474. attune_help-0.1.0/src/attune_help/templates/references/tool-test-gen-parallel.md +30 -0
  475. attune_help-0.1.0/src/attune_help/templates/references/tool-test-generation.md +30 -0
  476. attune_help-0.1.0/src/attune_help/templates/summaries.json +28 -0
  477. attune_help-0.1.0/src/attune_help/templates/tasks/browse-help-docs.md +41 -0
  478. attune_help-0.1.0/src/attune_help/templates/tasks/check-auth-status.md +36 -0
  479. attune_help-0.1.0/src/attune_help/templates/tasks/export-telemetry.md +39 -0
  480. attune_help-0.1.0/src/attune_help/templates/tasks/install-plugin.md +37 -0
  481. attune_help-0.1.0/src/attune_help/templates/tasks/manage-lessons.md +36 -0
  482. attune_help-0.1.0/src/attune_help/templates/tasks/run-doctor.md +29 -0
  483. attune_help-0.1.0/src/attune_help/templates/tasks/run-workflow.md +37 -0
  484. attune_help-0.1.0/src/attune_help/templates/tasks/task-api-endpoint-design.md +338 -0
  485. attune_help-0.1.0/src/attune_help/templates/tasks/task-authentication-patterns.md +309 -0
  486. attune_help-0.1.0/src/attune_help/templates/tasks/task-ci-cd-pipeline.md +250 -0
  487. attune_help-0.1.0/src/attune_help/templates/tasks/task-code-migration.md +240 -0
  488. attune_help-0.1.0/src/attune_help/templates/tasks/task-configuration-setup.md +158 -0
  489. attune_help-0.1.0/src/attune_help/templates/tasks/task-cross-linking-strategy.md +215 -0
  490. attune_help-0.1.0/src/attune_help/templates/tasks/task-database-migrations.md +223 -0
  491. attune_help-0.1.0/src/attune_help/templates/tasks/task-debugging-sessions.md +138 -0
  492. attune_help-0.1.0/src/attune_help/templates/tasks/task-dependency-management.md +149 -0
  493. attune_help-0.1.0/src/attune_help/templates/tasks/task-error-handling-design.md +176 -0
  494. attune_help-0.1.0/src/attune_help/templates/tasks/task-git-workflow.md +249 -0
  495. attune_help-0.1.0/src/attune_help/templates/tasks/task-help-system-testing.md +282 -0
  496. attune_help-0.1.0/src/attune_help/templates/tasks/task-logging-observability.md +230 -0
  497. attune_help-0.1.0/src/attune_help/templates/tasks/task-package-publishing.md +152 -0
  498. attune_help-0.1.0/src/attune_help/templates/tasks/task-precursor-warning-design.md +221 -0
  499. attune_help-0.1.0/src/attune_help/templates/tasks/task-progressive-depth-design.md +199 -0
  500. attune_help-0.1.0/src/attune_help/templates/tasks/task-socratic-discovery-patterns.md +202 -0
  501. attune_help-0.1.0/src/attune_help/templates/tasks/task-template-design-patterns.md +269 -0
  502. attune_help-0.1.0/src/attune_help/templates/tasks/task-template-migration.md +213 -0
  503. attune_help-0.1.0/src/attune_help/templates/tasks/use-attune-hub.md +105 -0
  504. attune_help-0.1.0/src/attune_help/templates/tasks/use-bug-predict.md +105 -0
  505. attune_help-0.1.0/src/attune_help/templates/tasks/use-coach.md +113 -0
  506. attune_help-0.1.0/src/attune_help/templates/tasks/use-code-quality.md +118 -0
  507. attune_help-0.1.0/src/attune_help/templates/tasks/use-doc-gen.md +100 -0
  508. attune_help-0.1.0/src/attune_help/templates/tasks/use-fix-test.md +118 -0
  509. attune_help-0.1.0/src/attune_help/templates/tasks/use-memory-and-context.md +153 -0
  510. attune_help-0.1.0/src/attune_help/templates/tasks/use-planning.md +152 -0
  511. attune_help-0.1.0/src/attune_help/templates/tasks/use-refactor-plan.md +108 -0
  512. attune_help-0.1.0/src/attune_help/templates/tasks/use-release-prep.md +103 -0
  513. attune_help-0.1.0/src/attune_help/templates/tasks/use-security-audit.md +88 -0
  514. attune_help-0.1.0/src/attune_help/templates/tasks/use-smart-test.md +121 -0
  515. attune_help-0.1.0/src/attune_help/templates/tasks/use-spec.md +154 -0
  516. attune_help-0.1.0/src/attune_help/templates/tasks/use-workflow-orchestration.md +120 -0
  517. attune_help-0.1.0/src/attune_help/templates/tips/after-10-inspects.md +24 -0
  518. attune_help-0.1.0/src/attune_help/templates/tips/after-5-ships.md +24 -0
  519. attune_help-0.1.0/src/attune_help/templates/tips/after-bug-predict.md +24 -0
  520. attune_help-0.1.0/src/attune_help/templates/tips/after-code-review.md +24 -0
  521. attune_help-0.1.0/src/attune_help/templates/tips/after-dependency-check.md +24 -0
  522. attune_help-0.1.0/src/attune_help/templates/tips/after-first-health.md +24 -0
  523. attune_help-0.1.0/src/attune_help/templates/tips/after-first-inspect.md +24 -0
  524. attune_help-0.1.0/src/attune_help/templates/tips/after-perf-audit.md +24 -0
  525. attune_help-0.1.0/src/attune_help/templates/tips/after-refactor-plan.md +24 -0
  526. attune_help-0.1.0/src/attune_help/templates/tips/after-security-audit.md +24 -0
  527. attune_help-0.1.0/src/attune_help/templates/tips/after-simplify-code.md +24 -0
  528. attune_help-0.1.0/src/attune_help/templates/tips/after-test-gen.md +24 -0
  529. attune_help-0.1.0/src/attune_help/templates/tips/cost-savings.md +24 -0
  530. attune_help-0.1.0/src/attune_help/templates/tips/high-tech-debt.md +24 -0
  531. attune_help-0.1.0/src/attune_help/templates/tips/no-patterns.md +24 -0
  532. attune_help-0.1.0/src/attune_help/templates/tips/weekly-review.md +24 -0
  533. attune_help-0.1.0/src/attune_help/templates/troubleshooting/ci-tests-timeout.md +30 -0
  534. attune_help-0.1.0/src/attune_help/templates/troubleshooting/gpg-signing-fails.md +30 -0
  535. attune_help-0.1.0/src/attune_help/templates/troubleshooting/import-error-attune.md +29 -0
  536. attune_help-0.1.0/src/attune_help/templates/troubleshooting/mcp-server-not-responding.md +31 -0
  537. attune_help-0.1.0/src/attune_help/templates/troubleshooting/plugin-not-found.md +29 -0
  538. attune_help-0.1.0/src/attune_help/templates/troubleshooting/pre-commit-infinite-loop.md +30 -0
  539. attune_help-0.1.0/src/attune_help/templates/troubleshooting/workflow-not-running.md +31 -0
  540. attune_help-0.1.0/src/attune_help/templates/warnings/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +31 -0
  541. attune_help-0.1.0/src/attune_help/templates/warnings/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +30 -0
  542. attune_help-0.1.0/src/attune_help/templates/warnings/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +31 -0
  543. attune_help-0.1.0/src/attune_help/templates/warnings/attune-skill-names-must-not-collide-with-claude-code-built-in.md +31 -0
  544. attune_help-0.1.0/src/attune_help/templates/warnings/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +28 -0
  545. attune_help-0.1.0/src/attune_help/templates/warnings/background-processes-from-previous-sessions-persist-across.md +29 -0
  546. attune_help-0.1.0/src/attune_help/templates/warnings/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +27 -0
  547. attune_help-0.1.0/src/attune_help/templates/warnings/bug-predict-dangerous-eval-flags-subprocess-exec.md +28 -0
  548. attune_help-0.1.0/src/attune_help/templates/warnings/bugpredictionworkflow-not-bugpredictworkflow.md +28 -0
  549. attune_help-0.1.0/src/attune_help/templates/warnings/changing-error-messages-breaks-tests-across-the-codebase.md +28 -0
  550. attune_help-0.1.0/src/attune_help/templates/warnings/changing-user-facing-output-strings-cascades-through-test.md +30 -0
  551. attune_help-0.1.0/src/attune_help/templates/warnings/claude-code-plugin-is-platform-specific.md +28 -0
  552. attune_help-0.1.0/src/attune_help/templates/warnings/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +28 -0
  553. attune_help-0.1.0/src/attune_help/templates/warnings/clusterfuzzlite-no-deps-misses-transitive-imports.md +28 -0
  554. attune_help-0.1.0/src/attune_help/templates/warnings/codeql-alerts-dismissible-in-bulk-via-gh-api.md +28 -0
  555. attune_help-0.1.0/src/attune_help/templates/warnings/commands-are-not-namespaced-in-plugins-skills-are.md +28 -0
  556. attune_help-0.1.0/src/attune_help/templates/warnings/costreport-is-a-dataclass-not-a-dict.md +29 -0
  557. attune_help-0.1.0/src/attune_help/templates/warnings/dead-code-modules-with-full-test-suites-look-alive.md +28 -0
  558. attune_help-0.1.0/src/attune_help/templates/warnings/deep-review-false-positives-verify-before-acting.md +28 -0
  559. attune_help-0.1.0/src/attune_help/templates/warnings/dispatch-tables-hold-direct-function-references-mocks-must.md +30 -0
  560. attune_help-0.1.0/src/attune_help/templates/warnings/dist-can-contain-stale-artifacts-after-version-bumps.md +28 -0
  561. attune_help-0.1.0/src/attune_help/templates/warnings/dont-append-z-to-timezone-aware-isoformat.md +28 -0
  562. attune_help-0.1.0/src/attune_help/templates/warnings/duplicate-plugins-cause-conflicting-skill-triggers.md +28 -0
  563. attune_help-0.1.0/src/attune_help/templates/warnings/exploration-agents-fabricate-names-verify-against-source.md +30 -0
  564. attune_help-0.1.0/src/attune_help/templates/warnings/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +31 -0
  565. attune_help-0.1.0/src/attune_help/templates/warnings/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +30 -0
  566. attune_help-0.1.0/src/attune_help/templates/warnings/github-protected-tags-cannot-be-force-updated.md +28 -0
  567. attune_help-0.1.0/src/attune_help/templates/warnings/github-repos-serve-as-claude-code-marketplaces.md +29 -0
  568. attune_help-0.1.0/src/attune_help/templates/warnings/gitignore-exclusions-break-ci-tests-that-read-those-files.md +31 -0
  569. attune_help-0.1.0/src/attune_help/templates/warnings/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +31 -0
  570. attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-root-paths-in-tests.md +29 -0
  571. attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-strings-in-method-bodies-survive-class-attribute.md +30 -0
  572. attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-user-id-defeats-ownership-checks.md +29 -0
  573. attune_help-0.1.0/src/attune_help/templates/warnings/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +28 -0
  574. attune_help-0.1.0/src/attune_help/templates/warnings/importlib-import-module-is-an-arbitrary-code-execution-vector.md +31 -0
  575. attune_help-0.1.0/src/attune_help/templates/warnings/is-private-is-a-superset-in-python-ipaddress.md +28 -0
  576. attune_help-0.1.0/src/attune_help/templates/warnings/lazy-imports-inside-function-bodies-cant-be-patched-with.md +30 -0
  577. attune_help-0.1.0/src/attune_help/templates/warnings/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +27 -0
  578. attune_help-0.1.0/src/attune_help/templates/warnings/list-workflows-deduplication-must-keep-base-names-visible.md +27 -0
  579. attune_help-0.1.0/src/attune_help/templates/warnings/mcp-call-tool-wrapper-pattern.md +28 -0
  580. attune_help-0.1.0/src/attune_help/templates/warnings/mcp-handler-validate-paths-before-importing-workflows.md +28 -0
  581. attune_help-0.1.0/src/attune_help/templates/warnings/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +31 -0
  582. attune_help-0.1.0/src/attune_help/templates/warnings/mcp-tool-renames-propagate-to-skill-docs.md +28 -0
  583. attune_help-0.1.0/src/attune_help/templates/warnings/modeltier-has-two-copies-imports-must-match.md +28 -0
  584. attune_help-0.1.0/src/attune_help/templates/warnings/module-level-optional-imports-enable-clean-test-patching.md +28 -0
  585. attune_help-0.1.0/src/attune_help/templates/warnings/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +30 -0
  586. attune_help-0.1.0/src/attune_help/templates/warnings/mypy-437-errors-was-stale-actual-count-was-2.md +28 -0
  587. attune_help-0.1.0/src/attune_help/templates/warnings/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +29 -0
  588. attune_help-0.1.0/src/attune_help/templates/warnings/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +30 -0
  589. attune_help-0.1.0/src/attune_help/templates/warnings/new-security-features-need-dedicated-tests-before-release.md +28 -0
  590. attune_help-0.1.0/src/attune_help/templates/warnings/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +28 -0
  591. attune_help-0.1.0/src/attune_help/templates/warnings/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +30 -0
  592. attune_help-0.1.0/src/attune_help/templates/warnings/patch-requires-the-target-name-to-exist-at-module-scope-at.md +30 -0
  593. attune_help-0.1.0/src/attune_help/templates/warnings/plugin-read-skill-references-break-outside-the-plugin.md +28 -0
  594. attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-auto-fix-requires-re-stage-before-retry.md +28 -0
  595. attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-black-unstaged-files-re-stage-after-failure.md +28 -0
  596. attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +30 -0
  597. attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflict-with-auto-fix-hooks.md +28 -0
  598. attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +30 -0
  599. attune_help-0.1.0/src/attune_help/templates/warnings/pull-main-before-merging-develop-to-avoid-merge-commits.md +28 -0
  600. attune_help-0.1.0/src/attune_help/templates/warnings/pureposixpath-strips-trailing-slashes.md +28 -0
  601. attune_help-0.1.0/src/attune_help/templates/warnings/push-specific-tags-not-tags.md +28 -0
  602. attune_help-0.1.0/src/attune_help/templates/warnings/pypi-renders-readme-links-relative-to-its-own-domain.md +28 -0
  603. attune_help-0.1.0/src/attune_help/templates/warnings/pytest-importorskip-triggers-ruff-e402.md +28 -0
  604. attune_help-0.1.0/src/attune_help/templates/warnings/re-enabling-required-reviews-kills-queued-auto-merge.md +28 -0
  605. attune_help-0.1.0/src/attune_help/templates/warnings/read-source-before-writing-tests-for-tricky-logic.md +28 -0
  606. attune_help-0.1.0/src/attune_help/templates/warnings/rebuild-dist-after-readme-changes.md +28 -0
  607. attune_help-0.1.0/src/attune_help/templates/warnings/redisshorttermmemory-mock-injection-path.md +28 -0
  608. attune_help-0.1.0/src/attune_help/templates/warnings/registry-count-assertions-are-scattered-across-test-files.md +28 -0
  609. attune_help-0.1.0/src/attune_help/templates/warnings/replacing-a-mixin-based-class-scatters-test-failures-across.md +30 -0
  610. attune_help-0.1.0/src/attune_help/templates/warnings/repo-merge-policy-may-restrict-merge-strategies.md +28 -0
  611. attune_help-0.1.0/src/attune_help/templates/warnings/required-status-check-names-must-match-githubs-exact-check-names.md +30 -0
  612. attune_help-0.1.0/src/attune_help/templates/warnings/resultmessage-result-is-often-none-capture-assistantmessage.md +29 -0
  613. attune_help-0.1.0/src/attune_help/templates/warnings/ruff-auto-fix-strips-imports-before-usage-code-exists.md +28 -0
  614. attune_help-0.1.0/src/attune_help/templates/warnings/run-simplify-catches-per-file-errors-internally.md +28 -0
  615. attune_help-0.1.0/src/attune_help/templates/warnings/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +28 -0
  616. attune_help-0.1.0/src/attune_help/templates/warnings/sdk-agent-model-config-uses-stale-model-names.md +28 -0
  617. attune_help-0.1.0/src/attune_help/templates/warnings/sdk-native-workflows-validate-in-execute-not-input-schema.md +28 -0
  618. attune_help-0.1.0/src/attune_help/templates/warnings/semantic-cache-70-hit-rate-claim-was-unmeasured.md +27 -0
  619. attune_help-0.1.0/src/attune_help/templates/warnings/session-hooks-may-be-vestigial.md +28 -0
  620. attune_help-0.1.0/src/attune_help/templates/warnings/shadow-directories-at-repo-root-break-imports.md +28 -0
  621. attune_help-0.1.0/src/attune_help/templates/warnings/silent-pass-blocks-in-discovery-registry-code-hide-import.md +30 -0
  622. attune_help-0.1.0/src/attune_help/templates/warnings/skill-descriptions-must-be-under-250-characters.md +28 -0
  623. attune_help-0.1.0/src/attune_help/templates/warnings/skill-frontmatter-has-a-strict-allowlist.md +28 -0
  624. attune_help-0.1.0/src/attune_help/templates/warnings/splitting-text-on-breaks-backtick-quoted-code-references.md +28 -0
  625. attune_help-0.1.0/src/attune_help/templates/warnings/ssrf-always-decode-urls-before-validating-hostnames.md +28 -0
  626. attune_help-0.1.0/src/attune_help/templates/warnings/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +28 -0
  627. attune_help-0.1.0/src/attune_help/templates/warnings/stacked-patch-decorators-inject-args-bottom-up.md +28 -0
  628. attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-inject-stderr-not-stdout.md +28 -0
  629. attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-loop-without-a-sentinel.md +28 -0
  630. attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +28 -0
  631. attune_help-0.1.0/src/attune_help/templates/warnings/structlog-kwargs-vs-stdlib-logger.md +28 -0
  632. attune_help-0.1.0/src/attune_help/templates/warnings/test-mocks-must-match-imports.md +28 -0
  633. attune_help-0.1.0/src/attune_help/templates/warnings/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +30 -0
  634. attune_help-0.1.0/src/attune_help/templates/warnings/undeclared-dependencies-work-locally-but-fail-in-clean-installs.md +31 -0
  635. attune_help-0.1.0/src/attune_help/templates/warnings/untracked-scripts-break-ci-when-tests-import-them.md +28 -0
  636. attune_help-0.1.0/src/attune_help/templates/warnings/validate-infrastructure-against-user-value-before-extending.md +28 -0
  637. attune_help-0.1.0/src/attune_help/templates/warnings/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +31 -0
  638. attune_help-0.1.0/src/attune_help/templates/warnings/website-feature-lists-can-diverge-from-the-python-registry.md +27 -0
  639. attune_help-0.1.0/src/attune_help/templates/warnings/windows-ci-encoding.md +28 -0
  640. attune_help-0.1.0/src/attune_help/templates/warnings/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +28 -0
  641. attune_help-0.1.0/src/attune_help/templates/warnings/windows-time-time-can-return-0-0-duration-for-fast-operations.md +30 -0
  642. attune_help-0.1.0/src/attune_help/templates/warnings/wizards-call-workflows-internally-they-are-not-duplicates.md +28 -0
  643. attune_help-0.1.0/src/attune_help/templates/warnings/workflowresult-constructor-mismatches-surface-only-at-runtime.md +31 -0
  644. attune_help-0.1.0/src/attune_help/templates/warnings/yaml-run-values-with-colons-cause-parse-errors.md +28 -0
  645. attune_help-0.1.0/src/attune_help/templates.py +385 -0
  646. attune_help-0.1.0/src/attune_help/transformers.py +221 -0
  647. attune_help-0.1.0/src/attune_help.egg-info/PKG-INFO +167 -0
  648. attune_help-0.1.0/src/attune_help.egg-info/SOURCES.txt +649 -0
  649. attune_help-0.1.0/src/attune_help.egg-info/dependency_links.txt +1 -0
  650. attune_help-0.1.0/src/attune_help.egg-info/requires.txt +4 -0
  651. attune_help-0.1.0/src/attune_help.egg-info/top_level.txt +1 -0
@@ -0,0 +1,19 @@
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
+ Copyright 2026 Smart AI Memory
8
+
9
+ Licensed under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License.
11
+ You may obtain a copy of the License at
12
+
13
+ http://www.apache.org/licenses/LICENSE-2.0
14
+
15
+ Unless required by applicable law or agreed to in writing, software
16
+ distributed under the License is distributed on an "AS IS" BASIS,
17
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ See the License for the specific language governing permissions and
19
+ limitations under the License.
@@ -0,0 +1,167 @@
1
+ Metadata-Version: 2.4
2
+ Name: attune-help
3
+ Version: 0.1.0
4
+ Summary: Lightweight help runtime with progressive depth and audience adaptation.
5
+ Author-email: Patrick Roebuck <admin@smartaimemory.com>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ Copyright 2026 Smart AI Memory
13
+
14
+ Licensed under the Apache License, Version 2.0 (the "License");
15
+ you may not use this file except in compliance with the License.
16
+ You may obtain a copy of the License at
17
+
18
+ http://www.apache.org/licenses/LICENSE-2.0
19
+
20
+ Unless required by applicable law or agreed to in writing, software
21
+ distributed under the License is distributed on an "AS IS" BASIS,
22
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23
+ See the License for the specific language governing permissions and
24
+ limitations under the License.
25
+
26
+ Project-URL: Homepage, https://github.com/Smart-AI-Memory/attune-ai
27
+ Project-URL: Repository, https://github.com/Smart-AI-Memory/attune-ai
28
+ Keywords: help,documentation,progressive-depth,templates
29
+ Classifier: Development Status :: 3 - Alpha
30
+ Classifier: Intended Audience :: Developers
31
+ Classifier: License :: OSI Approved :: Apache Software License
32
+ Classifier: Programming Language :: Python :: 3
33
+ Classifier: Programming Language :: Python :: 3.10
34
+ Classifier: Programming Language :: Python :: 3.11
35
+ Classifier: Programming Language :: Python :: 3.12
36
+ Classifier: Programming Language :: Python :: 3.13
37
+ Classifier: Topic :: Documentation
38
+ Classifier: Topic :: Software Development :: Libraries
39
+ Requires-Python: >=3.10
40
+ Description-Content-Type: text/markdown
41
+ License-File: LICENSE
42
+ Requires-Dist: python-frontmatter>=1.0.0
43
+ Provides-Extra: rich
44
+ Requires-Dist: rich>=13.0.0; extra == "rich"
45
+ Dynamic: license-file
46
+
47
+ # attune-help
48
+
49
+ Lightweight help runtime with progressive depth and
50
+ audience adaptation. Read project help templates
51
+ generated by [attune-ai](https://pypi.org/project/attune-ai/).
52
+
53
+ ## Install
54
+
55
+ ```bash
56
+ pip install attune-help
57
+ ```
58
+
59
+ ## Quick Start
60
+
61
+ ```python
62
+ from attune_help import HelpEngine
63
+
64
+ engine = HelpEngine(template_dir=".help/templates")
65
+
66
+ # Progressive depth: concept -> task -> reference
67
+ print(engine.lookup("security-audit")) # concept
68
+ print(engine.lookup("security-audit")) # task
69
+ print(engine.lookup("security-audit")) # reference
70
+ ```
71
+
72
+ ## How It Works
73
+
74
+ Each topic has three depth levels:
75
+
76
+ | Level | Type | What you get |
77
+ |-------|------|-------------|
78
+ | 0 | Concept | What is it? When to use it? |
79
+ | 1 | Task | Step-by-step how-to |
80
+ | 2 | Reference | Full detail, edge cases |
81
+
82
+ Repeated lookups on the same topic auto-advance.
83
+ A new topic resets to concept.
84
+
85
+ ## Renderers
86
+
87
+ ```python
88
+ # Plain text (default)
89
+ engine = HelpEngine(renderer="plain")
90
+
91
+ # Rich terminal output (requires `pip install attune-help[rich]`)
92
+ engine = HelpEngine(renderer="cli")
93
+
94
+ # Claude Code inline format
95
+ engine = HelpEngine(renderer="claude_code")
96
+
97
+ # Auto-detect environment
98
+ engine = HelpEngine(renderer="auto")
99
+ ```
100
+
101
+ ## Template Directory
102
+
103
+ Templates are markdown files with YAML frontmatter:
104
+
105
+ ```
106
+ .help/templates/
107
+ security/
108
+ concept.md
109
+ task.md
110
+ reference.md
111
+ api/
112
+ concept.md
113
+ task.md
114
+ reference.md
115
+ ```
116
+
117
+ Generate templates with
118
+ [attune-ai](https://pypi.org/project/attune-ai/):
119
+
120
+ ```bash
121
+ pip install attune-ai
122
+ # Then in Claude Code:
123
+ /coach init
124
+ ```
125
+
126
+ Or create them manually — any markdown file with
127
+ `feature`, `depth`, and `source_hash` frontmatter
128
+ fields works.
129
+
130
+ ## API
131
+
132
+ ### `HelpEngine`
133
+
134
+ ```python
135
+ HelpEngine(
136
+ template_dir=None, # Override template path
137
+ storage=None, # Session storage backend
138
+ renderer="plain", # Output renderer
139
+ user_id="default", # Session tracking ID
140
+ )
141
+ ```
142
+
143
+ **Methods:**
144
+
145
+ - `lookup(topic)` — Progressive depth lookup
146
+ - `get(template_id)` — Direct template access
147
+ - `lookup_raw(topic)` — Returns `PopulatedTemplate`
148
+ dataclass
149
+ - `get_summary(skill)` — One-line skill summary
150
+ - `precursor_warnings(file_path)` — File-aware
151
+ warnings
152
+
153
+ ### `SessionStorage` Protocol
154
+
155
+ Implement custom storage backends:
156
+
157
+ ```python
158
+ from attune_help import SessionStorage
159
+
160
+ class RedisStorage(SessionStorage):
161
+ def load(self, user_id: str) -> dict: ...
162
+ def save(self, user_id: str, state: dict) -> None: ...
163
+ ```
164
+
165
+ ## License
166
+
167
+ Apache 2.0
@@ -0,0 +1,121 @@
1
+ # attune-help
2
+
3
+ Lightweight help runtime with progressive depth and
4
+ audience adaptation. Read project help templates
5
+ generated by [attune-ai](https://pypi.org/project/attune-ai/).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ pip install attune-help
11
+ ```
12
+
13
+ ## Quick Start
14
+
15
+ ```python
16
+ from attune_help import HelpEngine
17
+
18
+ engine = HelpEngine(template_dir=".help/templates")
19
+
20
+ # Progressive depth: concept -> task -> reference
21
+ print(engine.lookup("security-audit")) # concept
22
+ print(engine.lookup("security-audit")) # task
23
+ print(engine.lookup("security-audit")) # reference
24
+ ```
25
+
26
+ ## How It Works
27
+
28
+ Each topic has three depth levels:
29
+
30
+ | Level | Type | What you get |
31
+ |-------|------|-------------|
32
+ | 0 | Concept | What is it? When to use it? |
33
+ | 1 | Task | Step-by-step how-to |
34
+ | 2 | Reference | Full detail, edge cases |
35
+
36
+ Repeated lookups on the same topic auto-advance.
37
+ A new topic resets to concept.
38
+
39
+ ## Renderers
40
+
41
+ ```python
42
+ # Plain text (default)
43
+ engine = HelpEngine(renderer="plain")
44
+
45
+ # Rich terminal output (requires `pip install attune-help[rich]`)
46
+ engine = HelpEngine(renderer="cli")
47
+
48
+ # Claude Code inline format
49
+ engine = HelpEngine(renderer="claude_code")
50
+
51
+ # Auto-detect environment
52
+ engine = HelpEngine(renderer="auto")
53
+ ```
54
+
55
+ ## Template Directory
56
+
57
+ Templates are markdown files with YAML frontmatter:
58
+
59
+ ```
60
+ .help/templates/
61
+ security/
62
+ concept.md
63
+ task.md
64
+ reference.md
65
+ api/
66
+ concept.md
67
+ task.md
68
+ reference.md
69
+ ```
70
+
71
+ Generate templates with
72
+ [attune-ai](https://pypi.org/project/attune-ai/):
73
+
74
+ ```bash
75
+ pip install attune-ai
76
+ # Then in Claude Code:
77
+ /coach init
78
+ ```
79
+
80
+ Or create them manually — any markdown file with
81
+ `feature`, `depth`, and `source_hash` frontmatter
82
+ fields works.
83
+
84
+ ## API
85
+
86
+ ### `HelpEngine`
87
+
88
+ ```python
89
+ HelpEngine(
90
+ template_dir=None, # Override template path
91
+ storage=None, # Session storage backend
92
+ renderer="plain", # Output renderer
93
+ user_id="default", # Session tracking ID
94
+ )
95
+ ```
96
+
97
+ **Methods:**
98
+
99
+ - `lookup(topic)` — Progressive depth lookup
100
+ - `get(template_id)` — Direct template access
101
+ - `lookup_raw(topic)` — Returns `PopulatedTemplate`
102
+ dataclass
103
+ - `get_summary(skill)` — One-line skill summary
104
+ - `precursor_warnings(file_path)` — File-aware
105
+ warnings
106
+
107
+ ### `SessionStorage` Protocol
108
+
109
+ Implement custom storage backends:
110
+
111
+ ```python
112
+ from attune_help import SessionStorage
113
+
114
+ class RedisStorage(SessionStorage):
115
+ def load(self, user_id: str) -> dict: ...
116
+ def save(self, user_id: str, state: dict) -> None: ...
117
+ ```
118
+
119
+ ## License
120
+
121
+ Apache 2.0
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "attune-help"
7
+ version = "0.1.0"
8
+ description = "Lightweight help runtime with progressive depth and audience adaptation."
9
+ readme = {file = "README.md", content-type = "text/markdown"}
10
+ requires-python = ">=3.10"
11
+ license = {file = "LICENSE"}
12
+ authors = [
13
+ {name = "Patrick Roebuck", email = "admin@smartaimemory.com"}
14
+ ]
15
+ keywords = ["help", "documentation", "progressive-depth", "templates"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Topic :: Documentation",
26
+ "Topic :: Software Development :: Libraries",
27
+ ]
28
+ dependencies = [
29
+ "python-frontmatter>=1.0.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ rich = ["rich>=13.0.0"]
34
+
35
+ [project.urls]
36
+ Homepage = "https://github.com/Smart-AI-Memory/attune-ai"
37
+ Repository = "https://github.com/Smart-AI-Memory/attune-ai"
38
+
39
+ [tool.setuptools.packages.find]
40
+ where = ["src"]
41
+
42
+ [tool.setuptools.package-data]
43
+ attune_help = ["templates/**/*.md", "templates/**/*.json"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,32 @@
1
+ """attune-help: Lightweight help runtime with progressive depth.
2
+
3
+ Provides template loading, progressive depth escalation,
4
+ audience adaptation, and feedback scoring — without the
5
+ full attune-ai authoring toolkit.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ from attune_help.engine import (
11
+ AudienceProfile,
12
+ HelpEngine,
13
+ PopulatedTemplate,
14
+ TemplateContext,
15
+ )
16
+ from attune_help.storage import LocalFileStorage, SessionStorage
17
+
18
+ __all__ = [
19
+ "AudienceProfile",
20
+ "HelpEngine",
21
+ "LocalFileStorage",
22
+ "PopulatedTemplate",
23
+ "SessionStorage",
24
+ "TemplateContext",
25
+ ]
26
+
27
+ try:
28
+ from importlib.metadata import version
29
+
30
+ __version__ = version("attune-help")
31
+ except Exception: # noqa: BLE001
32
+ __version__ = "dev"