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.
- attune_help-0.1.0/LICENSE +19 -0
- attune_help-0.1.0/PKG-INFO +167 -0
- attune_help-0.1.0/README.md +121 -0
- attune_help-0.1.0/pyproject.toml +43 -0
- attune_help-0.1.0/setup.cfg +4 -0
- attune_help-0.1.0/src/attune_help/__init__.py +32 -0
- attune_help-0.1.0/src/attune_help/engine.py +385 -0
- attune_help-0.1.0/src/attune_help/progression.py +180 -0
- attune_help-0.1.0/src/attune_help/storage.py +178 -0
- attune_help-0.1.0/src/attune_help/templates/comparisons/auth-strategies.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/comparisons/cli-vs-claude-code.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/comparisons/lite-vs-full.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/comparisons/workflow-vs-wizard.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/audience-adaptation.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/cross-linking.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/feedback-loop.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/meta-orchestration.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/progressive-depth.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/socratic-discovery.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/sync-paradigm.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-api-endpoint-design.md +142 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-authentication-patterns.md +104 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-ci-cd-pipeline.md +126 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-code-migration.md +124 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-configuration-setup.md +80 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-cross-linking-strategy.md +123 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-database-migrations.md +108 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-debugging-sessions.md +82 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-dependency-management.md +57 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-error-handling-design.md +88 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-git-workflow.md +112 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-help-system-testing.md +77 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-logging-observability.md +122 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-package-publishing.md +88 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-precursor-warning-design.md +125 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-progressive-depth-design.md +73 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-socratic-discovery-patterns.md +109 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-template-design-patterns.md +135 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/task-template-migration.md +121 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/template-composition.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tier-routing.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-attune-hub.md +78 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-bug-predict.md +67 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-coach.md +79 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-code-quality.md +57 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-doc-gen.md +75 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-fix-test.md +62 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-memory-and-context.md +82 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-planning.md +62 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-refactor-plan.md +57 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-release-prep.md +56 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-security-audit.md +49 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-smart-test.md +63 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-spec.md +82 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/tool-workflow-orchestration.md +67 -0
- attune_help-0.1.0/src/attune_help/templates/concepts/workflow-chain-prediction.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/cross_links.json +6431 -0
- attune_help-0.1.0/src/attune_help/templates/errors/adding-dns-resolution-to-validate-webhook-url-breaks-tests-that.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/attune-skill-names-must-not-collide-with-claude-code-built-in.md +33 -0
- attune_help-0.1.0/src/attune_help/templates/errors/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/background-processes-from-previous-sessions-persist-across.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/bandit-b108-blocks-hardcoded-tmp-paths.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/baseworkflow-now-provides-self-logger.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/baseworkflow-uses-class-attributes-not-constructor-params.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/errors/broad-gitignore-patterns-match-nested-directories.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/bug-predict-dangerous-eval-flags-subprocess-exec.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/bugpredictionworkflow-not-bugpredictworkflow.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/changing-error-messages-breaks-tests-across-the-codebase.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/changing-user-facing-output-strings-cascades-through-test.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ci-timeout-tests-enforce-the-range-you-set.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/claude-agent-sdk-is-now-a-core-dependency-of-attune-ai.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/claude-code-plugin-is-platform-specific.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/claude-plugin-install-is-marketplace-only.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/clusterfuzzlite-no-deps-misses-transitive-imports.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/codeql-alerts-dismissible-in-bulk-via-gh-api.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/codeql-js-stored-xss-flags-jsx-even-though-react-auto-escapes.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/codeql-py-clear-text-logging-sensitive-data-traces-data-flow.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/commands-are-not-namespaced-in-plugins-skills-are.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/config-py-alongside-config-creates-a-mypy-duplicate-module.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/costreport-is-a-dataclass-not-a-dict.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/custom-mcp-stdio-loop-fails-claude-code-handshake.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/datetime-utcnow-datetime-nowtimezone-utc-cascades-through-the.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/dead-code-modules-with-full-test-suites-look-alive.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/deep-review-false-positives-verify-before-acting.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/dependency-lower-bounds-trigger-scorecard-vulnerability-alerts.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/dispatch-tables-hold-direct-function-references-mocks-must.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/dist-can-contain-stale-artifacts-after-version-bumps.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/dont-append-z-to-timezone-aware-isoformat.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/duplicate-plugins-cause-conflicting-skill-triggers.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/enforce-admins-false-defeats-code-review-scorecard-check.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/enforce-admins-required-reviews-blocks-solo-dev-merges.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/exploration-agents-fabricate-names-verify-against-source.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/full-coverage-runs-on-15k-test-suites-timeout-easily.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ghost-command-references-survive-cli-renames.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/github-protected-tags-cannot-be-force-updated.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/github-repos-serve-as-claude-code-marketplaces.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/gitignore-exclusions-break-ci-tests-that-read-those-files.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-root-paths-in-tests.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-strings-in-method-bodies-survive-class-attribute.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/hardcoded-user-id-defeats-ownership-checks.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/importlib-import-module-is-an-arbitrary-code-execution-vector.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/is-private-is-a-superset-in-python-ipaddress.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/jinja2-trim-blocks-lstrip-blocks-eats-newlines-between.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/kwargs-collides-with-explicit-params-of-the-same-name.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/lazy-imports-inside-function-bodies-cant-be-patched-with.md +33 -0
- attune_help-0.1.0/src/attune_help/templates/errors/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/errors/list-wizards-is-a-function-not-a-class-method.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/list-workflows-deduplication-must-keep-base-names-visible.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/macos-var-private-var-symlink-breaks-path-assertions.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-call-tool-wrapper-pattern.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-handler-validate-paths-before-importing-workflows.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-tool-count-tests-are-hardcoded.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-tool-renames-propagate-to-skill-docs.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mcp-workspace-root-defaults-to-os-getcwd-tests-with-tmp-path.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mixin-classes-inherit-self-workspace-root-at-runtime-not-at.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mkdocs-strict-treats-broken-links-as-fatal-errors.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mock-a-lazy-import-x-with-types-moduletype-patch-dictsys-modules.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/modeltier-has-two-copies-imports-must-match.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/module-level-optional-imports-enable-clean-test-patching.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/mypy-437-errors-was-stale-actual-count-was-2.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/new-security-features-need-dedicated-tests-before-release.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/next-js-shared-data-libs-prevent-page-duplication.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/patch-requires-the-target-name-to-exist-at-module-scope-at.md +29 -0
- 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
- attune_help-0.1.0/src/attune_help/templates/errors/pip-audit-fails-on-unpublished-versions.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/plugin-read-skill-references-break-outside-the-plugin.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pr-test-workflows-may-not-auto-trigger-after-close-reopen-or.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-auto-fix-requires-re-stage-before-retry.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-black-unstaged-files-re-stage-after-failure.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflict-with-auto-fix-hooks.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pull-main-before-merging-develop-to-avoid-merge-commits.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pureposixpath-match-doesnt-support-in-python-3-10.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pureposixpath-strips-trailing-slashes.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/push-specific-tags-not-tags.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pypi-renders-readme-links-relative-to-its-own-domain.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/pytest-importorskip-triggers-ruff-e402.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/re-enabling-required-reviews-kills-queued-auto-merge.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/read-source-before-writing-tests-for-tricky-logic.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/real-project-files-on-disk-override-test-mocks.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/rebuild-dist-after-readme-changes.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/redisshorttermmemory-mock-injection-path.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/registry-count-assertions-are-scattered-across-test-files.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/replacing-a-mixin-based-class-scatters-test-failures-across.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/repo-merge-policy-may-restrict-merge-strategies.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/required-status-check-names-must-match-githubs-exact-check-names.md +33 -0
- attune_help-0.1.0/src/attune_help/templates/errors/resultmessage-result-is-often-none-capture-assistantmessage.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ruff-auto-fix-strips-imports-before-usage-code-exists.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ruff-parses-pytest-ini-as-python.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/run-simplify-catches-per-file-errors-internally.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/scorecards-pip-parser-ignores-hash-flags-entirely.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/sdk-agent-model-config-uses-stale-model-names.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/sdk-native-workflows-validate-in-execute-not-input-schema.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/semantic-cache-70-hit-rate-claim-was-unmeasured.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/session-hooks-may-be-vestigial.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/shadow-directories-at-repo-root-break-imports.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/silent-pass-blocks-in-discovery-registry-code-hide-import.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/skill-descriptions-must-be-under-250-characters.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/skill-frontmatter-allowlist-march-2026.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/skill-frontmatter-has-a-strict-allowlist.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/splitting-text-on-breaks-backtick-quoted-code-references.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ssrf-always-decode-urls-before-validating-hostnames.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ssrf-in-webhook-handlers-is-easy-to-miss.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/stacked-patch-decorators-inject-args-bottom-up.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/stop-hook-ordering-matters.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-inject-stderr-not-stdout.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-loop-without-a-sentinel.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/structlog-kwargs-vs-stdlib-logger.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/test-mocks-must-match-imports.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/errors/twine-cannot-prompt-for-tokens-in-claude-codes-non-interactive.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/undeclared-dependencies-work-locally-but-fail-in-clean-installs.md +35 -0
- attune_help-0.1.0/src/attune_help/templates/errors/untracked-scripts-break-ci-when-tests-import-them.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/validate-file-path-needed-on-reads-too-not-just-writes.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/validate-infrastructure-against-user-value-before-extending.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/verify-mcp-tool-wiring-after-adding-new-tools.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/website-feature-lists-can-diverge-from-the-python-registry.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/errors/windows-ci-encoding.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/errors/windows-path-resolve-prepends-the-drive-letter-to-unix-paths.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/errors/windows-time-time-can-return-0-0-duration-for-fast-operations.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/wizards-call-workflows-internally-they-are-not-duplicates.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/errors/workflowresult-constructor-mismatches-surface-only-at-runtime.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/errors/yaml-run-values-with-colons-cause-parse-errors.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/adding-dns-resolution-to-validate-webhook-url-breaks-tests-that.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/attune-skill-names-must-not-collide-with-claude-code-built-in.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/background-processes-from-previous-sessions-persist-across.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/bandit-b108-blocks-hardcoded-tmp-paths.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/baseworkflow-now-provides-self-logger.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/baseworkflow-uses-class-attributes-not-constructor-params.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +21 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/broad-gitignore-patterns-match-nested-directories.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/bug-predict-dangerous-eval-flags-subprocess-exec.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/bugpredictionworkflow-not-bugpredictworkflow.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/changing-error-messages-breaks-tests-across-the-codebase.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/changing-user-facing-output-strings-cascades-through-test.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ci-timeout-tests-enforce-the-range-you-set.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/claude-agent-sdk-is-now-a-core-dependency-of-attune-ai.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/claude-code-plugin-is-platform-specific.md +15 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/claude-plugin-install-is-marketplace-only.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/clusterfuzzlite-no-deps-misses-transitive-imports.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/codeql-alerts-dismissible-in-bulk-via-gh-api.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/codeql-js-stored-xss-flags-jsx-even-though-react-auto-escapes.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/codeql-py-clear-text-logging-sensitive-data-traces-data-flow.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/commands-are-not-namespaced-in-plugins-skills-are.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/config-py-alongside-config-creates-a-mypy-duplicate-module.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/costreport-is-a-dataclass-not-a-dict.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/custom-mcp-stdio-loop-fails-claude-code-handshake.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/datetime-utcnow-datetime-nowtimezone-utc-cascades-through-the.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/dead-code-modules-with-full-test-suites-look-alive.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/deep-review-false-positives-verify-before-acting.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/dependency-lower-bounds-trigger-scorecard-vulnerability-alerts.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/dispatch-tables-hold-direct-function-references-mocks-must.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/dist-can-contain-stale-artifacts-after-version-bumps.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/dont-append-z-to-timezone-aware-isoformat.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/duplicate-plugins-cause-conflicting-skill-triggers.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/enforce-admins-false-defeats-code-review-scorecard-check.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/enforce-admins-required-reviews-blocks-solo-dev-merges.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/exploration-agents-fabricate-names-verify-against-source.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/full-coverage-runs-on-15k-test-suites-timeout-easily.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ghost-command-references-survive-cli-renames.md +15 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/github-protected-tags-cannot-be-force-updated.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/github-repos-serve-as-claude-code-marketplaces.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/gitignore-exclusions-break-ci-tests-that-read-those-files.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-root-paths-in-tests.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-strings-in-method-bodies-survive-class-attribute.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/hardcoded-user-id-defeats-ownership-checks.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/importlib-import-module-is-an-arbitrary-code-execution-vector.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/is-private-is-a-superset-in-python-ipaddress.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/kwargs-collides-with-explicit-params-of-the-same-name.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/lazy-imports-inside-function-bodies-cant-be-patched-with.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +21 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/list-wizards-is-a-function-not-a-class-method.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/list-workflows-deduplication-must-keep-base-names-visible.md +18 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/macos-var-private-var-symlink-breaks-path-assertions.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-call-tool-wrapper-pattern.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-handler-validate-paths-before-importing-workflows.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-tool-count-tests-are-hardcoded.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-tool-renames-propagate-to-skill-docs.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mcp-workspace-root-defaults-to-os-getcwd-tests-with-tmp-path.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mixin-classes-inherit-self-workspace-root-at-runtime-not-at.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mkdocs-strict-treats-broken-links-as-fatal-errors.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mock-a-lazy-import-x-with-types-moduletype-patch-dictsys-modules.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/modeltier-has-two-copies-imports-must-match.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/module-level-optional-imports-enable-clean-test-patching.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/mypy-437-errors-was-stale-actual-count-was-2.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/new-security-features-need-dedicated-tests-before-release.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/next-js-shared-data-libs-prevent-page-duplication.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +18 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/patch-requires-the-target-name-to-exist-at-module-scope-at.md +20 -0
- 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
- attune_help-0.1.0/src/attune_help/templates/faqs/pip-audit-fails-on-unpublished-versions.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/plugin-read-skill-references-break-outside-the-plugin.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pr-test-workflows-may-not-auto-trigger-after-close-reopen-or.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-auto-fix-requires-re-stage-before-retry.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-black-unstaged-files-re-stage-after-failure.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflict-with-auto-fix-hooks.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pull-main-before-merging-develop-to-avoid-merge-commits.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pureposixpath-match-doesnt-support-in-python-3-10.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pureposixpath-strips-trailing-slashes.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/push-specific-tags-not-tags.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pypi-renders-readme-links-relative-to-its-own-domain.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/pytest-importorskip-triggers-ruff-e402.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/re-enabling-required-reviews-kills-queued-auto-merge.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/read-source-before-writing-tests-for-tricky-logic.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/real-project-files-on-disk-override-test-mocks.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/rebuild-dist-after-readme-changes.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/redisshorttermmemory-mock-injection-path.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/registry-count-assertions-are-scattered-across-test-files.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/replacing-a-mixin-based-class-scatters-test-failures-across.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/repo-merge-policy-may-restrict-merge-strategies.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/required-status-check-names-must-match-githubs-exact-check-names.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/resultmessage-result-is-often-none-capture-assistantmessage.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ruff-auto-fix-strips-imports-before-usage-code-exists.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ruff-parses-pytest-ini-as-python.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/run-simplify-catches-per-file-errors-internally.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/scorecards-pip-parser-ignores-hash-flags-entirely.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/sdk-agent-model-config-uses-stale-model-names.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/sdk-native-workflows-validate-in-execute-not-input-schema.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/semantic-cache-70-hit-rate-claim-was-unmeasured.md +21 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/session-hooks-may-be-vestigial.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/shadow-directories-at-repo-root-break-imports.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/silent-pass-blocks-in-discovery-registry-code-hide-import.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/skill-descriptions-must-be-under-250-characters.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/skill-frontmatter-allowlist-march-2026.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/skill-frontmatter-has-a-strict-allowlist.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-always-decode-urls-before-validating-hostnames.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-in-webhook-handlers-is-easy-to-miss.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/stacked-patch-decorators-inject-args-bottom-up.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/stop-hook-ordering-matters.md +15 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-inject-stderr-not-stdout.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-loop-without-a-sentinel.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/structlog-kwargs-vs-stdlib-logger.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/test-mocks-must-match-imports.md +15 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/twine-cannot-prompt-for-tokens-in-claude-codes-non-interactive.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/untracked-scripts-break-ci-when-tests-import-them.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/validate-file-path-needed-on-reads-too-not-just-writes.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/validate-infrastructure-against-user-value-before-extending.md +18 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/verify-mcp-tool-wiring-after-adding-new-tools.md +15 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/website-feature-lists-can-diverge-from-the-python-registry.md +21 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/windows-ci-encoding.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/windows-path-resolve-prepends-the-drive-letter-to-unix-paths.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/windows-time-time-can-return-0-0-duration-for-fast-operations.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/wizards-call-workflows-internally-they-are-not-duplicates.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/workflowresult-constructor-mismatches-surface-only-at-runtime.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/faqs/yaml-run-values-with-colons-cause-parse-errors.md +19 -0
- attune_help-0.1.0/src/attune_help/templates/notes/code-simplification.md +34 -0
- attune_help-0.1.0/src/attune_help/templates/notes/command-hubs.md +37 -0
- attune_help-0.1.0/src/attune_help/templates/notes/critical-rules.md +33 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d1-template-schemas-live-in-the-repo.md +42 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d2-search-index-first-unified-later.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d3-faq-sourcing-four-channels.md +33 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d4-code-is-the-source-of-truth.md +41 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d5-intelligent-templates-the-engine.md +26 -0
- attune_help-0.1.0/src/attune_help/templates/notes/decision-d6-proof-of-concept-lessons-learned-error-templates.md +69 -0
- attune_help-0.1.0/src/attune_help/templates/notes/markdown-formatting.md +38 -0
- attune_help-0.1.0/src/attune_help/templates/notes/project-structure.md +34 -0
- attune_help-0.1.0/src/attune_help/templates/notes/socratic-interaction-rule.md +44 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-cli.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-crew.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-hub.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-llm.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-p2b.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-progressive.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-sdk.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-socratic.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-tier.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/notes/term-wizard.md +20 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/browse-help.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/check-costs.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/check-health.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/generate-tests.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/install-plugin.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/install.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/run-code-review.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/run-security-audit.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-attune-hub.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-bug-predict.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-coach.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-code-quality.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-doc-gen.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-fix-test.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-memory-and-context.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-planning.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-refactor-plan.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-release-prep.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-security-audit.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-smart-test.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-spec.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/skill-workflow-orchestration.md +22 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-api-endpoint-design.md +161 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-authentication-patterns.md +151 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-ci-cd-pipeline.md +130 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-code-migration.md +117 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-configuration-setup.md +106 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-cross-linking-strategy.md +143 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-database-migrations.md +135 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-debugging-sessions.md +103 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-dependency-management.md +72 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-error-handling-design.md +84 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-git-workflow.md +113 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-help-system-testing.md +185 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-logging-observability.md +122 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-package-publishing.md +107 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-precursor-warning-design.md +119 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-progressive-depth-design.md +120 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-socratic-discovery-patterns.md +94 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-template-design-patterns.md +149 -0
- attune_help-0.1.0/src/attune_help/templates/quickstarts/task-template-migration.md +149 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-attune-hub.md +202 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-bug-predict.md +240 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-coach.md +221 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-code-quality.md +183 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-doc-gen.md +173 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-fix-test.md +172 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-memory-and-context.md +205 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-planning.md +207 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-refactor-plan.md +195 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-release-prep.md +208 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-security-audit.md +173 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-smart-test.md +190 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-spec.md +271 -0
- attune_help-0.1.0/src/attune_help/templates/references/skill-workflow-orchestration.md +178 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-api-endpoint-design.md +408 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-authentication-patterns.md +417 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-ci-cd-pipeline.md +241 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-code-migration.md +243 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-configuration-setup.md +296 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-cross-linking-strategy.md +345 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-database-migrations.md +295 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-debugging-sessions.md +275 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-dependency-management.md +246 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-error-handling-design.md +255 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-git-workflow.md +159 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-help-system-testing.md +451 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-logging-observability.md +330 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-package-publishing.md +317 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-precursor-warning-design.md +210 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-progressive-depth-design.md +308 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-socratic-discovery-patterns.md +159 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-template-design-patterns.md +367 -0
- attune_help-0.1.0/src/attune_help/templates/references/task-template-migration.md +256 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-analyze-batch.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-analyze-image.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-attune-get-level.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-attune-set-level.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-auth-recommend.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-auth-status.md +23 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-bug-predict.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-code-review.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-context-get.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-context-set.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-deep-review.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-dependency-check.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-doc-audit.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-doc-gen.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-doc-orchestrator.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-health-check.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-memory-forget.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-memory-retrieve.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-memory-search.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-memory-store.md +32 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-performance-audit.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-refactor-plan.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-release-prep.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-research-synthesis.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-secure-release.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-security-audit.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-simplify-code.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-telemetry-stats.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-test-audit.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-test-gen-parallel.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/references/tool-test-generation.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/summaries.json +28 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/browse-help-docs.md +41 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/check-auth-status.md +36 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/export-telemetry.md +39 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/install-plugin.md +37 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/manage-lessons.md +36 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/run-doctor.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/run-workflow.md +37 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-api-endpoint-design.md +338 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-authentication-patterns.md +309 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-ci-cd-pipeline.md +250 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-code-migration.md +240 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-configuration-setup.md +158 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-cross-linking-strategy.md +215 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-database-migrations.md +223 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-debugging-sessions.md +138 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-dependency-management.md +149 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-error-handling-design.md +176 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-git-workflow.md +249 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-help-system-testing.md +282 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-logging-observability.md +230 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-package-publishing.md +152 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-precursor-warning-design.md +221 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-progressive-depth-design.md +199 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-socratic-discovery-patterns.md +202 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-template-design-patterns.md +269 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/task-template-migration.md +213 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-attune-hub.md +105 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-bug-predict.md +105 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-coach.md +113 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-code-quality.md +118 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-doc-gen.md +100 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-fix-test.md +118 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-memory-and-context.md +153 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-planning.md +152 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-refactor-plan.md +108 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-release-prep.md +103 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-security-audit.md +88 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-smart-test.md +121 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-spec.md +154 -0
- attune_help-0.1.0/src/attune_help/templates/tasks/use-workflow-orchestration.md +120 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-10-inspects.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-5-ships.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-bug-predict.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-code-review.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-dependency-check.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-first-health.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-first-inspect.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-perf-audit.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-refactor-plan.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-security-audit.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-simplify-code.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/after-test-gen.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/cost-savings.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/high-tech-debt.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/no-patterns.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/tips/weekly-review.md +24 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/ci-tests-timeout.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/gpg-signing-fails.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/import-error-attune.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/mcp-server-not-responding.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/plugin-not-found.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/pre-commit-infinite-loop.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/troubleshooting/workflow-not-running.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/adding-logger-before-eager-imports-triggers-e402-in-init-py.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/anthropics-built-in-prompt-caching-supersedes-custom-caching.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/any-unstaged-file-triggers-pre-commit-stash-conflicts-with-auto.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/attune-skill-names-must-not-collide-with-claude-code-built-in.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/b904-raise-x-from-e-is-not-auto-fixable-by-ruff.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/background-processes-from-previous-sessions-persist-across.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/bg-var-primary-bg-opacity-10-is-invisible-in-dark-mode.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/bug-predict-dangerous-eval-flags-subprocess-exec.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/bugpredictionworkflow-not-bugpredictworkflow.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/changing-error-messages-breaks-tests-across-the-codebase.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/changing-user-facing-output-strings-cascades-through-test.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/claude-code-plugin-is-platform-specific.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/claude-code-plugins-expect-plugin-json-inside-claude-plugin.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/clusterfuzzlite-no-deps-misses-transitive-imports.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/codeql-alerts-dismissible-in-bulk-via-gh-api.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/commands-are-not-namespaced-in-plugins-skills-are.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/costreport-is-a-dataclass-not-a-dict.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/dead-code-modules-with-full-test-suites-look-alive.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/deep-review-false-positives-verify-before-acting.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/dispatch-tables-hold-direct-function-references-mocks-must.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/dist-can-contain-stale-artifacts-after-version-bumps.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/dont-append-z-to-timezone-aware-isoformat.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/duplicate-plugins-cause-conflicting-skill-triggers.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/exploration-agents-fabricate-names-verify-against-source.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/generated-content-with-trailing-whitespace-causes-perpetual-pre.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/gh-pr-merge-admin-is-blocked-by-in-progress-required-checks.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/github-protected-tags-cannot-be-force-updated.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/github-repos-serve-as-claude-code-marketplaces.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/gitignore-exclusions-break-ci-tests-that-read-those-files.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/gpg-signing-fails-in-non-interactive-terminals-vscode-extension.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-root-paths-in-tests.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-strings-in-method-bodies-survive-class-attribute.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/hardcoded-user-id-defeats-ownership-checks.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/hot-reload-subsystem-was-1-038-lines-of-dead-code.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/importlib-import-module-is-an-arbitrary-code-execution-vector.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/is-private-is-a-superset-in-python-ipaddress.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/lazy-imports-inside-function-bodies-cant-be-patched-with.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/linkedin-paste-use-ascii-markers-not-unicode-arrows.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/list-workflows-deduplication-must-keep-base-names-visible.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/mcp-call-tool-wrapper-pattern.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/mcp-handler-validate-paths-before-importing-workflows.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/mcp-json-python-resolves-to-pyenv-shim-not-project-venv.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/mcp-tool-renames-propagate-to-skill-docs.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/modeltier-has-two-copies-imports-must-match.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/module-level-optional-imports-enable-clean-test-patching.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/multiple-pinentry-program-lines-in-gpg-agent-conf-first-wins.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/mypy-437-errors-was-stale-actual-count-was-2.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/new-dataclass-fields-need-both-the-class-and-the-parser-updated.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/new-mcp-handlers-must-match-the-validation-pattern-of-adjacent.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/new-security-features-need-dedicated-tests-before-release.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/non-baseworkflow-classes-in-workflow-registry-crash-the-cli.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/openssf-scorecard-alerts-2-codereviewid-3-sastid-are-process.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/patch-requires-the-target-name-to-exist-at-module-scope-at.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/plugin-read-skill-references-break-outside-the-plugin.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-auto-fix-requires-re-stage-before-retry.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-black-unstaged-files-re-stage-after-failure.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflict-when-black-ruff-fix-files-with.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflict-with-auto-fix-hooks.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pre-commit-stash-conflicts-when-any-tracked-unstaged-file.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pull-main-before-merging-develop-to-avoid-merge-commits.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pureposixpath-strips-trailing-slashes.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/push-specific-tags-not-tags.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pypi-renders-readme-links-relative-to-its-own-domain.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/pytest-importorskip-triggers-ruff-e402.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/re-enabling-required-reviews-kills-queued-auto-merge.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/read-source-before-writing-tests-for-tricky-logic.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/rebuild-dist-after-readme-changes.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/redisshorttermmemory-mock-injection-path.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/registry-count-assertions-are-scattered-across-test-files.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/replacing-a-mixin-based-class-scatters-test-failures-across.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/repo-merge-policy-may-restrict-merge-strategies.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/required-status-check-names-must-match-githubs-exact-check-names.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/resultmessage-result-is-often-none-capture-assistantmessage.md +29 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/ruff-auto-fix-strips-imports-before-usage-code-exists.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/run-simplify-catches-per-file-errors-internally.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/sbin-is-a-symlink-to-usr-sbin-on-modern-ubuntu.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/sdk-agent-model-config-uses-stale-model-names.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/sdk-native-workflows-validate-in-execute-not-input-schema.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/semantic-cache-70-hit-rate-claim-was-unmeasured.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/session-hooks-may-be-vestigial.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/shadow-directories-at-repo-root-break-imports.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/silent-pass-blocks-in-discovery-registry-code-hide-import.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/skill-descriptions-must-be-under-250-characters.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/skill-frontmatter-has-a-strict-allowlist.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/splitting-text-on-breaks-backtick-quoted-code-references.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/ssrf-always-decode-urls-before-validating-hostnames.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/ssrf-strip-ipv6-zone-ids-before-ip-validation.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/stacked-patch-decorators-inject-args-bottom-up.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-inject-stderr-not-stdout.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-loop-without-a-sentinel.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/stop-hooks-missing-cd-prefix-inherit-session-cwd.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/structlog-kwargs-vs-stdlib-logger.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/test-mocks-must-match-imports.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/tests-for-optional-dep-code-need-pytest-importorskip-guards-in.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/undeclared-dependencies-work-locally-but-fail-in-clean-installs.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/untracked-scripts-break-ci-when-tests-import-them.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/validate-infrastructure-against-user-value-before-extending.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/verify-new-dispatch-branches-with-a-known-fixture-not-just.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/website-feature-lists-can-diverge-from-the-python-registry.md +27 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/windows-ci-encoding.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/windows-ci-runners-are-3x-slower-than-ubuntu-macos.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/windows-time-time-can-return-0-0-duration-for-fast-operations.md +30 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/wizards-call-workflows-internally-they-are-not-duplicates.md +28 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/workflowresult-constructor-mismatches-surface-only-at-runtime.md +31 -0
- attune_help-0.1.0/src/attune_help/templates/warnings/yaml-run-values-with-colons-cause-parse-errors.md +28 -0
- attune_help-0.1.0/src/attune_help/templates.py +385 -0
- attune_help-0.1.0/src/attune_help/transformers.py +221 -0
- attune_help-0.1.0/src/attune_help.egg-info/PKG-INFO +167 -0
- attune_help-0.1.0/src/attune_help.egg-info/SOURCES.txt +649 -0
- attune_help-0.1.0/src/attune_help.egg-info/dependency_links.txt +1 -0
- attune_help-0.1.0/src/attune_help.egg-info/requires.txt +4 -0
- 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,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"
|