scitex-dev 0.2.0__tar.gz → 0.3.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.
- scitex_dev-0.2.0/docs/to_claude/commands/audit.md → scitex_dev-0.3.0/.claude/commands/.old/audit_v01.md +21 -3
- scitex_dev-0.2.0/.claude/commands/audit.md → scitex_dev-0.3.0/.claude/commands/.old/audit_v02-numbering.md +56 -13
- scitex_dev-0.3.0/.claude/commands/audit.md +190 -0
- scitex_dev-0.3.0/.claude/commands/call.md +2 -0
- {scitex_dev-0.2.0/docs/to_claude → scitex_dev-0.3.0/.claude}/commands/git.md +2 -8
- scitex_dev-0.3.0/.claude/commands/speak-signature.md +7 -0
- scitex_dev-0.3.0/.claude/commands/speak.md +108 -0
- scitex_dev-0.3.0/.claude/commands/speech.md +108 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/run_lint.sh +8 -0
- scitex_dev-0.3.0/.claude/hooks/pre-tool-use/enforce_pytest_fullpath.sh +260 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/SKILL.md +278 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/request-mocking.md +87 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/running-code.md +232 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/session-management.md +169 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/storage-state.md +275 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/test-generation.md +88 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/tracing.md +139 -0
- scitex_dev-0.3.0/.claude/skills/playwright-cli/references/video-recording.md +43 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.gitignore +3 -0
- {scitex_dev-0.2.0/src/scitex_dev.egg-info → scitex_dev-0.3.0}/PKG-INFO +30 -15
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/README.md +29 -14
- scitex_dev-0.3.0/docs/MASTER/00_SCITEX_UPSTREAM_AND_DOWNSTREAM_RULES.md +224 -0
- scitex_dev-0.3.0/docs/MASTER/skills/01-package-architecture.md +21 -0
- scitex_dev-0.3.0/docs/MASTER/skills/02-io-cascade.md +19 -0
- scitex_dev-0.3.0/docs/MASTER/skills/03-testing-scope.md +15 -0
- scitex_dev-0.3.0/docs/MASTER/skills/04-shared-ui.md +17 -0
- scitex_dev-0.3.0/docs/to_claude/commands/audit.md +198 -0
- scitex_dev-0.3.0/docs/to_claude/commands/call.md +10 -0
- {scitex_dev-0.2.0/.claude → scitex_dev-0.3.0/docs/to_claude}/commands/git.md +11 -1
- scitex_dev-0.3.0/docs/to_claude/commands/speak-signature.md +15 -0
- scitex_dev-0.3.0/docs/to_claude/commands/speak.md +116 -0
- scitex_dev-0.3.0/docs/to_claude/commands/speech.md +116 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/run_lint.sh +8 -0
- scitex_dev-0.3.0/docs/to_claude/hooks/pre-tool-use/enforce_pytest_fullpath.sh +260 -0
- scitex_dev-0.3.0/docs/to_claude/skills/SKILL.md +50 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/SKILL.md +278 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/request-mocking.md +87 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/running-code.md +232 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/session-management.md +169 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/storage-state.md +275 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/test-generation.md +88 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/tracing.md +139 -0
- scitex_dev-0.3.0/docs/to_claude/skills/playwright-cli/references/video-recording.md +43 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/pyproject.toml +7 -1
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/__init__.py +2 -1
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/_cli.py +93 -20
- scitex_dev-0.3.0/src/scitex_dev/_cli_skills.py +53 -0
- scitex_dev-0.3.0/src/scitex_dev/_discovery.py +179 -0
- scitex_dev-0.3.0/src/scitex_dev/_mcp_compat.py +57 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/_mcp_server.py +28 -12
- scitex_dev-0.3.0/src/scitex_dev/cli.py +509 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dev_mcp/__init__.py +4 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dev_mcp/handlers.py +23 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/docs.py +4 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/ecosystem.py +36 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/config.py +3 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/core.py +102 -24
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/filters.py +84 -4
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/steps.py +9 -3
- scitex_dev-0.3.0/src/scitex_dev/skills/SKILL.md +98 -0
- scitex_dev-0.3.0/src/scitex_dev/skills.py +227 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0/src/scitex_dev.egg-info}/PKG-INFO +30 -15
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev.egg-info/SOURCES.txt +34 -15
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev.egg-info/entry_points.txt +3 -0
- scitex_dev-0.2.0/.claude/commands/speak.md +0 -58
- scitex_dev-0.2.0/.claude/commands/speech.md +0 -58
- scitex_dev-0.2.0/docs/to_claude/commands/scitex-delegation.md +0 -7
- scitex_dev-0.2.0/docs/to_claude/commands/speak.md +0 -66
- scitex_dev-0.2.0/docs/to_claude/commands/speech.md +0 -66
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_011eJHgQZyzXRByeKC2F4WA7.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_012g162aRXbDnaWW52G3urmd.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01DcK7ogrTMgboPRqaGxjK6P.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01FSnkEe4q5EkQk3NtFuPicc.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01GUA1toyyvCiayVWs3gNUbb.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01MwMNLxuUjraqbkYjaENjhj.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01PeEzW2uY6UTa7XRAGar8WP.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01QY8PfRs1s9NpjptzTDgpgq.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01T157feRCK5itwQmbJn6nJe.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01Tn8U2fdCauBHyeKswwiunE.json +0 -4
- scitex_dev-0.2.0/docs/to_claude/hooks/pre-tool-use/.pending/toolu_01Y1VREonmER5vVCfS5reKrh.json +0 -4
- scitex_dev-0.2.0/src/scitex_dev/_discovery.py +0 -97
- scitex_dev-0.2.0/src/scitex_dev/app/__init__.py +0 -96
- scitex_dev-0.2.0/src/scitex_dev/app/_filesystem.py +0 -112
- scitex_dev-0.2.0/src/scitex_dev/app/_protocol.py +0 -114
- scitex_dev-0.2.0/src/scitex_dev/cli.py +0 -207
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ArchitectAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ArchitectAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ArchitectAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/BulletinBoardOrganizerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/BulletinBoardOrganizerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/BulletinBoardOrganizerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/DebuggerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/DebuggerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/DebuggerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExamplesDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExamplesDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExamplesDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExperimentationAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExperimentationAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ExperimentationAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/GitHandlerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/GitHandlerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/GitHandlerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ResearcherAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ResearcherAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ResearcherAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ReviewerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ReviewerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/ReviewerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SciTeXTranslatorAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SciTeXTranslatorAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SciTeXTranslatorAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SourceDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SourceDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/SourceDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestResultsReportAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestResultsReportAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestResultsReportAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestRunnerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestRunnerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/agents/TestRunnerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/actions.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/advance.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/audit-paper.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/auto.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/bb.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/br.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/bug-report-solved.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/bug-report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/bulletin-board.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/cleanup.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/cloud-refactor.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/communicate.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/context-analysis.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/critic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/diagram.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/evaluate-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/examples.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/exit.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/factor-out.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/feature-request-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/feature-request-create.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/feature-request-reply.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/feature-request-solved.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/finalize.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/fo.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/follow-you.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/fr-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/fr-create.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/fr-reply.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/fy.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/minimize-api.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/minimize-api_v01.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/model_update.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/no-long-term-memory.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/plan.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/progress.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/read-the-docs.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/recall.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/refactor.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/reflect.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/rename.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/reports.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/resolve-conflicts.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/rollback.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/rtd.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/s.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/scitex-cloud-stage.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/scitex-delegation.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/scitex-deploy-prod.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/scitex-deploy-staging.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/scitex-versions.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/tests.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/timeline.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/tree.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/tweet.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/understand-guidelines.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/update-guidelines.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/updated.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/vb.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/vc.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/version-bump.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/version-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/version-increment.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/vi.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/commands/worktree.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/.gitignore +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/HOOK_SWITCH_README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/hook_switch_helper.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/notification/notify_email.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/notification/notify_voice.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/ensure_executable.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/format_code.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/format_code_prettier.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/log_post_tool_use.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/log_post_tool_use_v01.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/post-tool-use/run_tests.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/.old/enforce_force_flag_v01-f.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/.old/pipe-stage-permissions_v01-may-have-negative-effects.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/deny_inline_script_in_html.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/deny_inline_style_in_html.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/enforce_force_flag.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/enforce_git_dash_C.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/inhibit_project_root_pollution.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/limit_line_numbers.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/log_pre_tool_use.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/pre-tool-use/pipe-stage-permissions.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/project-switch/hook_switch_helper.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/project-switch/project-root-pollution-criteria-example.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/project-switch/switch-example.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/session-start/hello_world.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/settings.json.example +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/stop/ON_STOP.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/hooks/stop/check_local_rules.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/command-line-tools/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/command-line-tools/command_line_tools.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/01_DEVELOPMENT_CYCLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/02_NAMING_CONVENSIONS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/03_ARCHITECTUAL_AGREEMENT_PROCESS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/04_ARCHITECTURE_PREDEFINED.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/05_PRIORITY_CONFIG.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/06_MULTIPLE_SPECIAL_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/07_DEBUGGING_TECHNIQUES.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/development-philosophy/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-01-basic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-02-project-structure.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-03-file-template.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-04-coding-style.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-05-testing-guide.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ELISP-99-example-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/ci.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/elisp-development/testing-with-docker.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/EXAMPLE-README-MODULE-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/EXAMPLE-README-REPOSITORY-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/art-of-readable-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/art-of-testing.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/clean-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/debugging-message.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/do-not-repeat-yourself.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/documentation-performance-claims.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/emacs-server.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/keep-it-simple-stupid.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/refactoring.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/regression-prevention.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/renaming-and-cleaning-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/screen.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/slurm.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/start-from-small.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/test-driven-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/programming-common/version-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/CLAUDE_ID.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/beyond-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/bug-report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/communication.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/do-not-create-any-new-file-nor-directory-in-project-root.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/documentation.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/feature-request.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/general-multi-agent-coordination.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/multi-agent-protocol.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/project-management-bulletin-board.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/project-management-markdown.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/project-management-org.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/timeline-gantt-chart.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/tools.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/project-management/understand-message-in-filename.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/CHECKLIST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/HOW-TO-DEBUG-with-MULTIPLE_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/Machine-Learning.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/NOT-FULL-PYTEST-BUT-PARTIAL-PYTEST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/django.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/env.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/python-scitex/zen_of_python.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-abstract.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-attitude.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-discussion.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-general-0.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-general-1.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-general-2.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-introduction.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-mermaid.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scientific-writing/scientific-writing-methods.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/console-debugging.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/development-environment.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/django-organization.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/refactoring.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/typescript-vite.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/scitex-cloud/vite-architecture.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/shell-scripting/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.claude/skills/shell-scripting/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.github/workflows/cla.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.github/workflows/publish-pypi.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.github/workflows/test.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.readthedocs.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/.readthedocs.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/CLA.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/CONTRIBUTING.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/LICENSE +0 -0
- {scitex_dev-0.2.0/docs/to_claude → scitex_dev-0.3.0/docs/MASTER}/skills/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/scitex-icon-navy-inverted.png +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/scitex-logo-blue-cropped.png +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/api.rst +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/cli.rst +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/conf.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/index.rst +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/quickstart.rst +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/requirements.txt +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/sphinx/search.rst +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ArchitectAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ArchitectAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ArchitectAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/BulletinBoardOrganizerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/BulletinBoardOrganizerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/BulletinBoardOrganizerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/DebuggerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/DebuggerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/DebuggerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExamplesDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExamplesDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExamplesDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExperimentationAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExperimentationAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ExperimentationAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/GitHandlerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/GitHandlerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/GitHandlerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ResearcherAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ResearcherAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ResearcherAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ReviewerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ReviewerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/ReviewerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SciTeXTranslatorAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SciTeXTranslatorAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SciTeXTranslatorAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SourceDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SourceDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/SourceDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestDeveloperAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestDeveloperAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestDeveloperAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestResultsReportAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestResultsReportAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestResultsReportAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestRunnerAgent-HAIKU.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestRunnerAgent-OPUS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/agents/TestRunnerAgent-SONNET.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/cld_usage_web.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/check_parens.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/elisp-ci/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/elisp-ci/elisp-ci +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/elisp-ci/elisp-ci-simple +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/find_incorrect_require_provide_statements.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/run_tests_elisp.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/run_tests_elisp_v02.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/elisp/sync_elisp_tdd.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/claude_emacs_server.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/create_github_release.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/find_errors.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/render_mermaid.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/safe_rm.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/view_repo.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/general/wsl2-buzzer.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/python/black_all.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/python/run_tests_python_pip_package.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/safe_rm.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/slurm/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/slurm/login.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/slurm/request.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/bin/slurm/run.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/actions.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/advance.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/audit-paper.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/auto.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/bb.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/br.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/bug-report-solved.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/bug-report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/bulletin-board.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/cleanup.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/cloud-refactor.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/communicate.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/context-analysis.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/critic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/diagram.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/evaluate-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/examples.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/exit.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/factor-out.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/feature-request-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/feature-request-create.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/feature-request-reply.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/feature-request-solved.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/finalize.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/fo.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/follow-you.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/fr-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/fr-create.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/fr-reply.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/fy.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/minimize-api.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/minimize-api_v01.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/model_update.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/no-long-term-memory.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/plan.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/progress.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/read-the-docs.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/recall.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/refactor.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/reflect.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/rename.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/reports.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/resolve-conflicts.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/rollback.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/rtd.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/s.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/scitex-cloud-stage.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/scitex-deploy-prod.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/scitex-deploy-staging.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/scitex-versions.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/tests.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/timeline.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/tree.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/tweet.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/understand-guidelines.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/update-guidelines.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/updated.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/vb.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/vc.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/version-bump.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/version-check.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/version-increment.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/vi.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/commands/worktree.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/ELISP-TEST-REPORT-20250513-012234-48-PASSED-49-TOTAL-97-PERCENT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/LATEST-ELISP-REPORT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/run_tests.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-core/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-4-TOTAL-0-PERCENT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-friends/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-34-TOTAL-0-PERCENT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-prep/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-5-TOTAL-0-PERCENT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-utils/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-4-TOTAL-0-PERCENT.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/.gitignore +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/config/MNIST.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/config/PATH.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/data/.gitkeep +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/clf_svm.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/download.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/main.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_conf_mat.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_digits.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_umap_space.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/.github/workflows/notification.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/.github/workflows/validation.yml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/.gitignore +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/.pre-commit-config.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/LICENSE +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/Makefile +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/config/mcp_config.json +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/examples/cli_workflows.ipynb +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/examples/getting_started.ipynb +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/00_PROJECT_DESCRIPTION.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/01_ARCHITECTURE.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/99_BULLETIN_BOARD.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/ArchitectAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/BulletinBoardOrganizerAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/DebuggerAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/GitHandlerAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/SourceDeveloperAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/TestDeveloperAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/TestResultsReportAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/AGENTS/TestRunnerAgent.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/00_PROJECT_DESCRIPTION_EXAMPLE.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/01_DEVELOPMENT_CYCLE.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/02_NAMING_CONVENSIONS.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/03_ARCHITECTUAL_AGREEMENT_PROCESS.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/03_ARCHITECTURE_EXAMPLE.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/04_ARCHITECTURE_PREDEFINED.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/05_PRIORITY_CONFIG.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/06_MULTIPLE_SPECIAL_AGENTS.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/mgmt/USER_PHILOSOPHY/99_BULLETIN_BOARD_EXAMPLE.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/pyproject.toml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/__main__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/_GlobalArgumentParser.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/calculate.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/info.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/serve01.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/cli/serve02.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/core/_Calculator.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/core/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/mcp_servers/McpServer01.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/mcp_servers/McpServer02.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/types/_DataContainer.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/types/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/utils/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/utils/_add.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/src/pip_project_template/utils/_multiply.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/custom/test_mcp_config.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/custom/test_pip_install.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/custom/test_src_test_agreement.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/custom/test_status.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/SETUP.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/install_act.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/run_ci_act_and_container.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/run_ci_container.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/run_ci_local.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/github_actions/setup_global_cache.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test__GlobalArgumentParser.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test___init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test_calculate.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test_info.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test_serve01.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/cli/test_serve02.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/core/test__Calculator.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/core/test_core_init.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/mcp_servers/test_McpServer01.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/mcp_servers/test_McpServer02.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/test___main__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/test_package_init.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/types/test__DataContainer.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/types/test_types_init.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/utils/test__add.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/utils/test__multiply.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/pip_project_template/utils/test_utils_init.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/reports/ci_container_report.json +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/reports/setup_symlinks.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/examples/pip-project-template/tests/reports/test_report.json +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/01_DEVELOPMENT_CYCLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/02_NAMING_CONVENSIONS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/03_ARCHITECTUAL_AGREEMENT_PROCESS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/04_ARCHITECTURE_PREDEFINED.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/05_PRIORITY_CONFIG.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/06_MULTIPLE_SPECIAL_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/USER_PHILOSOPHY/07_DEBUGGING_TECHNIQUES.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/command/IMPORTANT-rm.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/command/IMPORTANT-tree.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-01-basic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-02-project-structure.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-03-file-template.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-04-coding-style.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-05-testing-guide.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-99-example-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/ci.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/elisp/testing-with-docker.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/examples/mgmt/ARCHITECTURE_EXAMPLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/examples/mgmt/BULLETIN_BOARD_EXAMPLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/examples/mgmt/PROJECT_DESCRIPTION_EXAMPLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/EXAMPLE-README-MODULE-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/EXAMPLE-README-REPOSITORY-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-art-of-readable-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-art-of-testing.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-documentation-performance-claims.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-refactoring.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-regression-prevention.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-slurm.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-start-from-small.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-test-driven-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/IMPORTANT-version-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/clean-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/debugging-message.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/do-not-repeat-yourself.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/emacs-server.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/keep-it-simple-stupid.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/renaming-and-cleaning-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/programming_common/screen.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-CLAUDE_ID.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-beyond-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-bug-report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-communication.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-do-not-create-any-new-file-nor-directory-in-project-root.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-documentation.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-feature-request.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-general-multi-agent-coordination.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-multi-agent-protocol.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-project-management-bulletin-board.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-project-management-markdown.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-project-management-org.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-tools.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/IMPORTANT-understand-message-in-filename.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/project/timeline-gantt-chart.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/CHECKLIST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/HOW-TO-DEBUG-with-MULTIPLE_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/Machine-Learning.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/NOT-FULL-PYTEST-BUT-PARTIAL-PYTEST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/django.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/env.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/official/cipdb-README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/official/fastmcp-README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/official/fastmcp-TESTING.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/official/icecream-README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/official/priority_config-README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/01-basic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/02-file-template.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/03-configuration.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/04-coding-style.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/05-testing-guide.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/06-examples-guide.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/11-gen-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/11-session-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/12-io-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/13-plt-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/14-dsp-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/15-pd-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/16-stats-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/17-other-modules.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/17-str-module.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/18-directory-structure-for-scientific-work.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/19-directory-structure-for-pip-package.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/scitex/99-example-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/python/zen_of_python.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/IMPORTANT-general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/IMPORTANT-scientific-attitude.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-abstract.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-discussion.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-general-1.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-general-2.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-introduction.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/science/scientific-writing-methods.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/guidelines/shell/IMPORTANT-general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/.gitignore +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/HOOK_SWITCH_README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/hook_switch_helper.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/notification/.notify_voice.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/notification/notify_email.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/notification/notify_voice.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/.format_code.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/.run_lint.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/ensure_executable.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/format_code.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/format_code_prettier.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/log_post_tool_use.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/log_post_tool_use_v01.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/post-tool-use/run_tests.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.deny_inline_script_in_html.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.deny_inline_style_in_html.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.enforce_force_flag.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.enforce_git_dash_C.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.inhibit_project_root_pollution.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.limit_line_numbers.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/.pipe-stage-permissions.sh.log +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/deny_inline_script_in_html.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/deny_inline_style_in_html.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/enforce_force_flag.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/enforce_git_dash_C.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/inhibit_project_root_pollution.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/limit_line_numbers.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/log_pre_tool_use.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/pre-tool-use/pipe-stage-permissions.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/project-switch/hook_switch_helper.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/project-switch/project-root-pollution-criteria-example.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/project-switch/switch-example.yaml +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/session-start/hello_world.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/settings.json.example +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/stop/ON_STOP.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/hooks/stop/check_local_rules.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/command-line-tools/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/command-line-tools/command_line_tools.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/01_DEVELOPMENT_CYCLE.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/02_NAMING_CONVENSIONS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/03_ARCHITECTUAL_AGREEMENT_PROCESS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/04_ARCHITECTURE_PREDEFINED.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/05_PRIORITY_CONFIG.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/06_MULTIPLE_SPECIAL_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/07_DEBUGGING_TECHNIQUES.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/development-philosophy/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-01-basic.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-02-project-structure.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-03-file-template.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-04-coding-style.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-05-testing-guide.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ELISP-99-example-project.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/ci.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/elisp-development/testing-with-docker.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/EXAMPLE-README-MODULE-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/EXAMPLE-README-REPOSITORY-ROOT.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/art-of-readable-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/art-of-testing.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/clean-code.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/debugging-message.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/do-not-repeat-yourself.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/documentation-performance-claims.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/emacs-server.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/keep-it-simple-stupid.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/refactoring.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/regression-prevention.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/renaming-and-cleaning-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/screen.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/slurm.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/start-from-small.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/test-driven-workflow.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/programming-common/version-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/CLAUDE_ID.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/beyond-control.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/bug-report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/cleanliness.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/communication.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/do-not-create-any-new-file-nor-directory-in-project-root.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/documentation.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/feature-request.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/general-multi-agent-coordination.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/multi-agent-protocol.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/project-management-bulletin-board.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/project-management-markdown.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/project-management-org.org +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/report.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/timeline-gantt-chart.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/tools.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/project-management/understand-message-in-filename.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/CHECKLIST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/HOW-TO-DEBUG-with-MULTIPLE_AGENTS.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/Machine-Learning.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/NOT-FULL-PYTEST-BUT-PARTIAL-PYTEST.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/django.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/env.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/python-scitex/zen_of_python.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-abstract.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-attitude.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-discussion.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-general-0.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-general-1.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-general-2.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-introduction.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-mermaid.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scientific-writing/scientific-writing-methods.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/console-debugging.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/development-environment.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/django-organization.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/refactoring.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/typescript-vite.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/scitex-cloud/vite-architecture.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/shell-scripting/SKILL.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/docs/to_claude/skills/shell-scripting/general.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/examples/00_run_all.sh +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/examples/01_unified_search.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/examples/02_version_management.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/examples/03_docs_aggregation.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/examples/README.md +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/setup.cfg +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/_builder.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/_introspect.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/_manifest.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/cli_utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/config.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_app.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_routes.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/_cards.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/_core.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/_filters.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/_render.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts/_utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_scripts.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_styles.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/_templates.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/app.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/routes.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/cards.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/core.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/filters.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/render.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts/utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/scripts.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/static/version-dashboard-favicon.svg +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/styles.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/dashboard/templates.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/decorators.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/errors.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/fix.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/github.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/mcp.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/mcp_utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/__init__.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/io.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rename/safety.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/rtd.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/search.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/side_effects.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/ssh.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/sync.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/sync_remote.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/test_runner.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/types.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev/versions.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev.egg-info/dependency_links.txt +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev.egg-info/requires.txt +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/src/scitex_dev.egg-info/top_level.txt +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_cli_utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_decorators.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_discovery.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_docs.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_errors.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_manifest.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_mcp_utils.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_rename.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_search.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_side_effects.py +0 -0
- {scitex_dev-0.2.0 → scitex_dev-0.3.0}/tests/test_types.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- ---
|
|
2
|
-
!-- Timestamp: 2026-03-
|
|
2
|
+
!-- Timestamp: 2026-03-14 07:22:18
|
|
3
3
|
!-- Author: ywatanabe
|
|
4
4
|
!-- File: /home/ywatanabe/.dotfiles/src/.claude/to_claude/commands/audit.md
|
|
5
5
|
!-- --- -->
|
|
@@ -39,6 +39,8 @@ Is everything clean and professional? For example:
|
|
|
39
39
|
- [ ] Standardized sub-commands:
|
|
40
40
|
$ package-name mcp {start,doctor,installation,list-tools}
|
|
41
41
|
See ~/proj/scitex-code
|
|
42
|
+
- [ ] For MCP server docs (readme, readthedocs), env var/src examples and setup please learn from ~/proj/scitex-audio
|
|
43
|
+
- [ ] /home/ywatanabe/proj/scitex-audio/GITIGNORED/LESSONS.md
|
|
42
44
|
|
|
43
45
|
- [ ] Tests
|
|
44
46
|
- [ ] Is coverage calculated?
|
|
@@ -60,6 +62,12 @@ Is everything clean and professional? For example:
|
|
|
60
62
|
- [ ] Version consistency
|
|
61
63
|
- [ ] toml, __init__.py, tag, release, pypi and so on
|
|
62
64
|
|
|
65
|
+
- [ ] PyPI
|
|
66
|
+
- [ ] .github/workflows/publish-pypi.yml
|
|
67
|
+
- [ ] environment pypi
|
|
68
|
+
- [ ] First you need to publish to pypi manually. This is required to configure trusted publisher at pypi.org; project itself is not recognized, displayed otherwise.
|
|
69
|
+
- [ ] So, first check if pypi is serving the package and if not, request to the user for configuration
|
|
70
|
+
|
|
63
71
|
- [ ] No personal info
|
|
64
72
|
- [ ] If package is designed for publication, do not include my own setups and keep generic tones
|
|
65
73
|
- [ ] .env contents (gitignored), name, email, github should be accepted
|
|
@@ -99,6 +107,8 @@ Is everything clean and professional? For example:
|
|
|
99
107
|
~/proj/scitex-stats
|
|
100
108
|
~/proj/scitex-clew
|
|
101
109
|
~/proj/scitex-io
|
|
110
|
+
...
|
|
111
|
+
~/proj/scitex-dev (this should have all packages listed in the source code to provide ecosystem-wide operations)
|
|
102
112
|
|
|
103
113
|
Business logics to the most downstream module and upper modules should delegate to downstream packages like a cascade. Keep separation of concerns and do not repeat yourself for single source of truth.
|
|
104
114
|
|
|
@@ -117,7 +127,9 @@ Is everything clean and professional? For example:
|
|
|
117
127
|
- [ ] Ensure remote is public
|
|
118
128
|
- [ ] Read the Docs implemented correctly
|
|
119
129
|
- [ ] Use `$READTHEDOCS_TOKEN` for API access to RTD
|
|
120
|
-
- [ ]
|
|
130
|
+
- [ ] First, push to GitHub with the RTD conifg file and source.
|
|
131
|
+
- [ ] Then, please let me know. I will configure to trigger RTD build on PR to main
|
|
132
|
+
- [ ] If you can register trusted publisher, please set by yourself
|
|
121
133
|
- [ ] Before pushing to origin/develop, please ensure "/audit" passed
|
|
122
134
|
- [ ] Ensure README.md follows the same format with https://github.com/ywatanabe1989/scitex-clew/README.md
|
|
123
135
|
- [ ] Ensure that README.md organization is as follows.
|
|
@@ -126,6 +138,7 @@ Is everything clean and professional? For example:
|
|
|
126
138
|
Note: Figure and Tables need legend like in scientific papers
|
|
127
139
|
Note: Figures must be visible in both dark/light modes
|
|
128
140
|
Note: Ensure icons are correctly git-tracked and pushed
|
|
141
|
+
Note: Acronyms must be spelled out on their first appearance.
|
|
129
142
|
- [ ] Project Title (e.g., `SciTeX Stats`)
|
|
130
143
|
- [ ] Header - Logo, Description, badges, RTD Link, pip install xxx
|
|
131
144
|
- [ ] Problem (scope definition, problem description)
|
|
@@ -139,11 +152,16 @@ Is everything clean and professional? For example:
|
|
|
139
152
|
- [ ] MCP Server
|
|
140
153
|
- [ ] Part of SciTeX
|
|
141
154
|
- [ ] <package-name> is part of SciTeX. When used in side the orchestrator package `scitex`, synergy between modules can be enjoyed: (revise this sentence based on the package and synergy packages with example code)
|
|
142
|
-
- [ ]
|
|
155
|
+
- [ ] If synergy is not expected skip the "When used in ..." section., skip this as the Python API section above will suffice.
|
|
156
|
+
- [ ] The SciTeX ecosystem follows the Four Freedoms for researchers, inspired by [the Free Software Definition](https://www.gnu.org/philosophy/free-sw.en.html):
|
|
143
157
|
- [ ] ...
|
|
144
158
|
- [ ] Footer with scitex icon
|
|
145
159
|
- [ ] ./examples implemented
|
|
146
160
|
- [ ] ./tests implemented
|
|
161
|
+
- [ ] Add `scitex_dev` as dependency in each package's `pyproject.toml`
|
|
162
|
+
- [ ] Use `@supports_return_as` decorator:
|
|
163
|
+
- [ ] Unified MCP response format across all mounted MCP servers
|
|
164
|
+
- [ ] Wire `docs` entry points in all packages
|
|
147
165
|
|
|
148
166
|
|
|
149
167
|
If you find room for improvement, do not hesitate but keep on working the remaining tasks
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
<!-- ---
|
|
2
|
+
!-- Timestamp: 2026-03-14 07:22:18
|
|
3
|
+
!-- Author: ywatanabe
|
|
4
|
+
!-- File: /home/ywatanabe/.dotfiles/src/.claude/to_claude/commands/audit.md
|
|
5
|
+
!-- --- -->
|
|
6
|
+
|
|
1
7
|
## Audit
|
|
2
8
|
|
|
3
9
|
Is everything clean and professional? For example:
|
|
@@ -33,6 +39,8 @@ Is everything clean and professional? For example:
|
|
|
33
39
|
- [ ] Standardized sub-commands:
|
|
34
40
|
$ package-name mcp {start,doctor,installation,list-tools}
|
|
35
41
|
See ~/proj/scitex-code
|
|
42
|
+
- [ ] For MCP server docs (readme, readthedocs), env var/src examples and setup please learn from ~/proj/scitex-audio
|
|
43
|
+
- [ ] /home/ywatanabe/proj/scitex-audio/GITIGNORED/LESSONS.md
|
|
36
44
|
|
|
37
45
|
- [ ] Tests
|
|
38
46
|
- [ ] Is coverage calculated?
|
|
@@ -54,6 +62,12 @@ Is everything clean and professional? For example:
|
|
|
54
62
|
- [ ] Version consistency
|
|
55
63
|
- [ ] toml, __init__.py, tag, release, pypi and so on
|
|
56
64
|
|
|
65
|
+
- [ ] PyPI
|
|
66
|
+
- [ ] .github/workflows/publish-pypi.yml
|
|
67
|
+
- [ ] environment pypi
|
|
68
|
+
- [ ] First you need to publish to pypi manually. This is required to configure trusted publisher at pypi.org; project itself is not recognized, displayed otherwise.
|
|
69
|
+
- [ ] So, first check if pypi is serving the package and if not, request to the user for configuration
|
|
70
|
+
|
|
57
71
|
- [ ] No personal info
|
|
58
72
|
- [ ] If package is designed for publication, do not include my own setups and keep generic tones
|
|
59
73
|
- [ ] .env contents (gitignored), name, email, github should be accepted
|
|
@@ -84,17 +98,36 @@ Is everything clean and professional? For example:
|
|
|
84
98
|
- [ ] Do not add ywatanabe@scitex.ai "on footer" of readme
|
|
85
99
|
- [ ] This is new rule to show scitex is not for my project but for the community
|
|
86
100
|
|
|
87
|
-
##
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
101
|
+
## SciTeX Package Architecture (3-Layer Cascade)
|
|
102
|
+
|
|
103
|
+
See full rules: `~/proj/scitex-dev/docs/MASTER/00_SCITEX_UPSTREAM_AND_DOWNSTREAM_RULES.md`
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
Downstream (apps — standalone, own IO):
|
|
107
|
+
~/proj/figrecipe, ~/proj/scitex-writer, ~/proj/scitex-clew, ...
|
|
108
|
+
↑ wraps/cascades via plugin registry
|
|
109
|
+
Middle (shared infrastructure):
|
|
110
|
+
~/proj/scitex-io, ~/proj/scitex-app, ~/proj/scitex-ui,
|
|
111
|
+
~/proj/scitex-stats, ~/proj/scitex-audio, ~/proj/scitex-dev
|
|
112
|
+
↑ integrates/re-exposes (SOC — integration tests ONLY)
|
|
113
|
+
Upstream (orchestration):
|
|
114
|
+
~/proj/scitex-python (scitex), ~/proj/scitex-cloud
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Key Rules
|
|
118
|
+
- [ ] **Apps work standalone** — no scitex dependency for core functionality
|
|
119
|
+
- [ ] **scitex-io wraps, not replaces** — cascades through plugin registry
|
|
120
|
+
- [ ] **scitex re-exposes only** — no logic, just re-export from middle layer
|
|
121
|
+
- [ ] **Upstream has ONLY integration tests** — unit tests belong downstream
|
|
122
|
+
- [ ] **All 3 interfaces cascade** — Python API, CLI, MCP server same direction
|
|
123
|
+
- [ ] **_AVAILABLE flags** — detect optional deps, provide install instructions
|
|
124
|
+
- [ ] **extras in pyproject.toml** — `pip install figrecipe[scitex]`
|
|
125
|
+
- [ ] **Never reverse imports** — upstream never imports downstream directly
|
|
126
|
+
|
|
127
|
+
### Testing Scope
|
|
128
|
+
- [ ] Downstream (figrecipe): unit tests for own logic
|
|
129
|
+
- [ ] Middle (scitex-io): integration tests for cascade/wrapping
|
|
130
|
+
- [ ] Upstream (scitex): integration tests ONLY for full pipeline
|
|
98
131
|
|
|
99
132
|
## SciTeX Standalone, Downstream Packages
|
|
100
133
|
- [ ] Confirm the original, orchestrate scitex package (~/proj/scitex-python) works as before
|
|
@@ -111,7 +144,9 @@ Is everything clean and professional? For example:
|
|
|
111
144
|
- [ ] Ensure remote is public
|
|
112
145
|
- [ ] Read the Docs implemented correctly
|
|
113
146
|
- [ ] Use `$READTHEDOCS_TOKEN` for API access to RTD
|
|
114
|
-
- [ ]
|
|
147
|
+
- [ ] First, push to GitHub with the RTD conifg file and source.
|
|
148
|
+
- [ ] Then, please let me know. I will configure to trigger RTD build on PR to main
|
|
149
|
+
- [ ] If you can register trusted publisher, please set by yourself
|
|
115
150
|
- [ ] Before pushing to origin/develop, please ensure "/audit" passed
|
|
116
151
|
- [ ] Ensure README.md follows the same format with https://github.com/ywatanabe1989/scitex-clew/README.md
|
|
117
152
|
- [ ] Ensure that README.md organization is as follows.
|
|
@@ -120,6 +155,7 @@ Is everything clean and professional? For example:
|
|
|
120
155
|
Note: Figure and Tables need legend like in scientific papers
|
|
121
156
|
Note: Figures must be visible in both dark/light modes
|
|
122
157
|
Note: Ensure icons are correctly git-tracked and pushed
|
|
158
|
+
Note: Acronyms must be spelled out on their first appearance.
|
|
123
159
|
- [ ] Project Title (e.g., `SciTeX Stats`)
|
|
124
160
|
- [ ] Header - Logo, Description, badges, RTD Link, pip install xxx
|
|
125
161
|
- [ ] Problem (scope definition, problem description)
|
|
@@ -133,11 +169,18 @@ Is everything clean and professional? For example:
|
|
|
133
169
|
- [ ] MCP Server
|
|
134
170
|
- [ ] Part of SciTeX
|
|
135
171
|
- [ ] <package-name> is part of SciTeX. When used in side the orchestrator package `scitex`, synergy between modules can be enjoyed: (revise this sentence based on the package and synergy packages with example code)
|
|
136
|
-
- [ ]
|
|
172
|
+
- [ ] If synergy is not expected skip the "When used in ..." section., skip this as the Python API section above will suffice.
|
|
173
|
+
- [ ] The SciTeX ecosystem follows the Four Freedoms for researchers, inspired by [the Free Software Definition](https://www.gnu.org/philosophy/free-sw.en.html):
|
|
137
174
|
- [ ] ...
|
|
138
175
|
- [ ] Footer with scitex icon
|
|
139
176
|
- [ ] ./examples implemented
|
|
140
177
|
- [ ] ./tests implemented
|
|
178
|
+
- [ ] Add `scitex_dev` as dependency in each package's `pyproject.toml`
|
|
179
|
+
- [ ] Use `@supports_return_as` decorator:
|
|
180
|
+
- [ ] Unified MCP response format across all mounted MCP servers
|
|
181
|
+
- [ ] Wire `docs` entry points in all packages
|
|
141
182
|
|
|
142
183
|
|
|
143
184
|
If you find room for improvement, do not hesitate but keep on working the remaining tasks
|
|
185
|
+
|
|
186
|
+
<!-- EOF -->
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
## Audit
|
|
2
|
+
|
|
3
|
+
Is everything clean and professional? For example:
|
|
4
|
+
|
|
5
|
+
### Pyproject.toml
|
|
6
|
+
- [ ] This is the place where first author is credited. For me, use:
|
|
7
|
+
- [ ] Name: Yusuke Watanabe
|
|
8
|
+
- [ ] Contact: ywatanabe@scitex.ai
|
|
9
|
+
|
|
10
|
+
### Documents
|
|
11
|
+
- [ ] Organized
|
|
12
|
+
- [ ] up-to-date
|
|
13
|
+
- [ ] No redundant information
|
|
14
|
+
- [ ] Necessary and sufficient
|
|
15
|
+
|
|
16
|
+
### Shell Script
|
|
17
|
+
- [ ] Have argparser, usage command, help option
|
|
18
|
+
|
|
19
|
+
### Python API
|
|
20
|
+
- [ ] Internal code are not exposed to users
|
|
21
|
+
- [ ] APIs are minimized for high UX
|
|
22
|
+
|
|
23
|
+
### CLI commands
|
|
24
|
+
- [ ] No original logic
|
|
25
|
+
- [ ] Always use Python or shell logics as is
|
|
26
|
+
- [ ] -h | --help | --help-recursive options must be available for all commands
|
|
27
|
+
- [ ] Ensure standardized naming
|
|
28
|
+
- [ ] Actual actions must be in verb form
|
|
29
|
+
- [ ] Use noun to organize hierarchy
|
|
30
|
+
- [ ] Noun forms for categorization, verb forms for actions
|
|
31
|
+
- [ ] Always have --dry-run and --json options
|
|
32
|
+
- [ ] Must support tab completion
|
|
33
|
+
- [ ] CLI commands should have examples
|
|
34
|
+
- [ ] CLI commands outputs must be readable
|
|
35
|
+
- [ ] Use indents, spaces, column-alignment, additional newlines for logical chunks
|
|
36
|
+
|
|
37
|
+
### HTTP Service API
|
|
38
|
+
- [ ] No original logic - always delegate to CLI commands
|
|
39
|
+
|
|
40
|
+
### MCP Service API
|
|
41
|
+
- [ ] No original logic - always delegate to CLI commands
|
|
42
|
+
- [ ] What AI agent called must be always reproducible by humans with the corresponding CLI command
|
|
43
|
+
- [ ] Standardized sub-commands:
|
|
44
|
+
$ package-name mcp {start,doctor,installation,list-tools}
|
|
45
|
+
See ~/proj/scitex-code
|
|
46
|
+
- [ ] For MCP server docs (readme, readthedocs), env var/src examples and setup please learn from ~/proj/scitex-audio
|
|
47
|
+
- [ ] /home/ywatanabe/proj/scitex-audio/GITIGNORED/LESSONS.md
|
|
48
|
+
|
|
49
|
+
### Tests
|
|
50
|
+
- [ ] Coverage must be calculated and sufficient (minimal: 50%)?
|
|
51
|
+
|
|
52
|
+
### CI
|
|
53
|
+
- [ ] Is CI correctly setup?
|
|
54
|
+
- [ ] Is the last CI passed? If failed, are they already fixed?
|
|
55
|
+
|
|
56
|
+
### Reproducible without developer's memory
|
|
57
|
+
- [ ] See `/no-long-term-memory` command
|
|
58
|
+
|
|
59
|
+
### Cleanliness
|
|
60
|
+
- [ ] Is project root clean without unnecessary artifacts?
|
|
61
|
+
|
|
62
|
+
### The project will work as expected and documented
|
|
63
|
+
- [ ] Run small experiments for verification if needed
|
|
64
|
+
|
|
65
|
+
### Version consistency
|
|
66
|
+
- [ ] toml, __init__.py, tag, release, pypi and so on
|
|
67
|
+
|
|
68
|
+
### PyPI
|
|
69
|
+
- [ ] .github/workflows/publish-pypi.yml
|
|
70
|
+
- [ ] environment pypi
|
|
71
|
+
- [ ] Check if alredy published in PyPI
|
|
72
|
+
- [ ] First PyPI publishing needs manual publish workflow with twins.
|
|
73
|
+
- [ ] This is required to configure trusted publisher at pypi.org
|
|
74
|
+
- [ ] Otherwise, project itself is not recognized so that user cannot setup trusted publisher.
|
|
75
|
+
|
|
76
|
+
### No personal info
|
|
77
|
+
- [ ] If package is designed for publication, do not include my own setups and keep generic tones
|
|
78
|
+
- [ ] Exceptions: .env contents (gitignored), name, email, github info
|
|
79
|
+
|
|
80
|
+
### Examples
|
|
81
|
+
- [ ] `./examples` must have demonstrations for main features with numbering like:
|
|
82
|
+
- [ ] `./examples/00_run_all.sh`
|
|
83
|
+
- [ ] `./examples/01_<descriptive-name>.{py,ipynb,sh}`
|
|
84
|
+
- [ ] Artifacts must be saved close place
|
|
85
|
+
- [ ] `./examples/01_<descriptive-name>_out/`
|
|
86
|
+
- [ ] Artifacts should be also included in git (GitHub)
|
|
87
|
+
|
|
88
|
+
### Environmental Variables
|
|
89
|
+
- [ ] Safe for name conflict with prefix (e.g., NG: "ENV_NAME", OK: "PROJECT_NAME_ENV_NAME")
|
|
90
|
+
- [ ] PROJECT_NAME_DEBUG_MDOE=1
|
|
91
|
+
- [ ] .env file in project root
|
|
92
|
+
|
|
93
|
+
### GitHub About Section
|
|
94
|
+
- [ ] Description, Homepage, and Topics are well-written for the current codebase
|
|
95
|
+
- [ ] Match user expectations and actual implementations
|
|
96
|
+
- [ ] Consider SEO effectiveness as well
|
|
97
|
+
- [ ] Add `scitex` to keywords for scitex ecosystem package
|
|
98
|
+
|
|
99
|
+
### SciTeX Brand
|
|
100
|
+
- [ ] Keep consistency in cli commands
|
|
101
|
+
- [ ] Use fastapi and fastmcp when needed
|
|
102
|
+
- [ ] For delegation please check branding changer logic
|
|
103
|
+
- [ ] Do not add ywatanabe@scitex.ai "on footer" of readme
|
|
104
|
+
- [ ] This is new rule to show scitex is not for my project but for the community
|
|
105
|
+
|
|
106
|
+
## SciTeX Package Architecture (3-Layer Cascade)
|
|
107
|
+
|
|
108
|
+
See full rules: `~/proj/scitex-dev/docs/MASTER/00_SCITEX_UPSTREAM_AND_DOWNSTREAM_RULES.md`
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
Downstream (apps — standalone, own IO):
|
|
112
|
+
~/proj/figrecipe, ~/proj/scitex-writer, ~/proj/scitex-clew, ...
|
|
113
|
+
↑ wraps/cascades via plugin registry
|
|
114
|
+
Middle (shared infrastructure):
|
|
115
|
+
~/proj/scitex-io, ~/proj/scitex-app, ~/proj/scitex-ui,
|
|
116
|
+
~/proj/scitex-stats, ~/proj/scitex-audio, ~/proj/scitex-dev
|
|
117
|
+
↑ integrates/re-exposes (SOC — integration tests ONLY)
|
|
118
|
+
Upstream (orchestration):
|
|
119
|
+
~/proj/scitex-python (scitex), ~/proj/scitex-cloud
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Key Rules
|
|
123
|
+
- [ ] **Apps work standalone** — no scitex dependency for core functionality
|
|
124
|
+
- [ ] **scitex-io wraps, not replaces** — cascades through plugin registry
|
|
125
|
+
- [ ] **scitex re-exposes only** — no logic, just re-export from middle layer
|
|
126
|
+
- [ ] **Upstream has ONLY integration tests** — unit tests belong downstream
|
|
127
|
+
- [ ] **All 3 interfaces cascade** — Python API, CLI, MCP server same direction
|
|
128
|
+
- [ ] **_AVAILABLE flags** — detect optional deps, provide install instructions
|
|
129
|
+
- [ ] **extras in pyproject.toml** — `pip install figrecipe[scitex]`
|
|
130
|
+
- [ ] **Never reverse imports** — upstream never imports downstream directly
|
|
131
|
+
|
|
132
|
+
### Testing Scope
|
|
133
|
+
- [ ] Downstream (figrecipe): unit tests for own logic
|
|
134
|
+
- [ ] Middle (scitex-io): integration tests for cascade/wrapping
|
|
135
|
+
- [ ] Upstream (scitex): integration tests ONLY for full pipeline
|
|
136
|
+
|
|
137
|
+
## SciTeX Standalone, Downstream Packages
|
|
138
|
+
Read /home/ywatanabe/proj/scitex-dev/docs/MASTER/00_SCITEX_UPSTREAM_AND_DOWNSTREAM_RULES.md
|
|
139
|
+
### Confirm the original, orchestrate scitex package (~/proj/scitex-python) works as before
|
|
140
|
+
### Ensure always worked local develop -> origin/develop -> origin/main
|
|
141
|
+
- [ ] pip version starts from v0.1.0
|
|
142
|
+
### SciTeX packages must have python apis (minimal), cli commands, and mcp tools:
|
|
143
|
+
- [ ] $ scitex-xxx --help-recursive (in any depth)
|
|
144
|
+
- [ ] $ scitex-xxx list-python-apis -v|-vv|-vvv
|
|
145
|
+
- [ ] $ scitex-xxx mcp list-tools -v|-vv|-vvv
|
|
146
|
+
- [ ] MCP uses fastmcp and the main scitex package ~/proj/scitex-python correctly delegates to the standalone package without any hard coding
|
|
147
|
+
- [ ] After MCP updated, let me know to reconnect scitex mcp server
|
|
148
|
+
### LICENSE is AGPL v3.0 only
|
|
149
|
+
- [ ] CLA.md and CONTRIBUTING.md placed as well like scitex-python
|
|
150
|
+
### Ensure remote is public
|
|
151
|
+
### Read the Docs implemented correctly
|
|
152
|
+
- [ ] Use `$READTHEDOCS_TOKEN` for API access to RTD
|
|
153
|
+
- [ ] First, push to GitHub with the RTD conifg file and source.
|
|
154
|
+
- [ ] Then, please let me know. I will configure to trigger RTD build on PR to main
|
|
155
|
+
- [ ] If you can register trusted publisher, please set by yourself
|
|
156
|
+
### Before pushing to origin/develop, please ensure "/audit" passed
|
|
157
|
+
### Ensure README.md follows the same format with https://github.com/ywatanabe1989/scitex-clew/README.md
|
|
158
|
+
- [ ] Ensure that README.md organization is as follows.
|
|
159
|
+
Note: Add custom sections flexibly
|
|
160
|
+
Note: Use <details>, <summary>, tables, figures effectively
|
|
161
|
+
Note: Figure and Tables need legend like in scientific papers
|
|
162
|
+
Note: Figures must be visible in both dark/light modes
|
|
163
|
+
Note: Ensure icons are correctly git-tracked and pushed
|
|
164
|
+
Note: Acronyms must be spelled out on their first appearance.
|
|
165
|
+
- [ ] Project Title (e.g., `SciTeX Stats`)
|
|
166
|
+
- [ ] Header - Logo, Description, badges, RTD Link, pip install xxx
|
|
167
|
+
- [ ] Problem (scope definition, problem description)
|
|
168
|
+
- [ ] Solution (How <package-name> solves the problem)
|
|
169
|
+
- [ ] No `import scitex as stx`; use `import scitex` instead in READMEs and RTD
|
|
170
|
+
- [ ] Installation
|
|
171
|
+
- [ ] Quick Start
|
|
172
|
+
- [ ] Three Interfaces
|
|
173
|
+
- [ ] Python API
|
|
174
|
+
- [ ] CLI Commands
|
|
175
|
+
- [ ] MCP Server
|
|
176
|
+
- [ ] Part of SciTeX
|
|
177
|
+
- [ ] <package-name> is part of SciTeX. When used in side the orchestrator package `scitex`, synergy between modules can be enjoyed: (revise this sentence based on the package and synergy packages with example code)
|
|
178
|
+
- [ ] If synergy is not expected skip the "When used in ..." section., skip this as the Python API section above will suffice.
|
|
179
|
+
- [ ] The SciTeX ecosystem follows the Four Freedoms for researchers, inspired by [the Free Software Definition](https://www.gnu.org/philosophy/free-sw.en.html):
|
|
180
|
+
- [ ] ...
|
|
181
|
+
- [ ] Footer with scitex icon
|
|
182
|
+
### ./examples implemented
|
|
183
|
+
### ./tests implemented
|
|
184
|
+
### Add `scitex_dev` as dependency in each package's `pyproject.toml`
|
|
185
|
+
### Use `@supports_return_as` decorator:
|
|
186
|
+
### Unified MCP response format across all mounted MCP servers
|
|
187
|
+
### Wire `docs` entry points in all packages
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
If you find room for improvement, do not hesitate but keep on working the remaining tasks
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
<!-- ---
|
|
2
|
-
!-- Timestamp: 2025-10-29 10:42:52
|
|
3
|
-
!-- Author: ywatanabe
|
|
4
|
-
!-- File: /home/ywatanabe/.claude/commands/git.md
|
|
5
|
-
!-- --- -->
|
|
6
|
-
|
|
7
1
|
1. Understand the version control guideline.
|
|
8
2
|
|
|
9
3
|
2. Based on the guideline, conduct version control on the current codebase using `git` and `gh`.
|
|
@@ -60,8 +54,8 @@
|
|
|
60
54
|
4. Plan D: **Merge the PR**
|
|
61
55
|
`gh pr merge --auto --merge
|
|
62
56
|
|
|
63
|
-
|
|
57
|
+
99. Destructive Plan X: **Desctructive** **Revert to the last stable commit**
|
|
64
58
|
`Since the changes disrupted important functionality XXX and reverting will be more reliable and straightforward, I recommend to checkout to `COMMIT HASH: COMMIT MESSAGE``
|
|
65
59
|
```
|
|
66
60
|
|
|
67
|
-
|
|
61
|
+
8. When user does not reply for 7 seconds, then, please proceed until push to origin automatically and keep on working on other tasks
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
## Speak Feedback Rules
|
|
2
|
+
|
|
3
|
+
### Backgrounds
|
|
4
|
+
I have vulnerable eyes so auditory feedback is highly valuable to me.
|
|
5
|
+
|
|
6
|
+
### Requests
|
|
7
|
+
Work on tasks autonomously.
|
|
8
|
+
Provide audio feedback via the MCP tool `scitex - audio_speak` or `scitex - audio_speak_relay` (`scitex-notification`)
|
|
9
|
+
Use `notification_call` for make a phone call
|
|
10
|
+
Display the feedback in readable format of text as well as audio feedback.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Rules
|
|
14
|
+
|
|
15
|
+
#### Be concise
|
|
16
|
+
Transcription must be short, concise, and information-dense. No extra words, no long sentences, no storytelling.
|
|
17
|
+
|
|
18
|
+
#### No Signature
|
|
19
|
+
Do not add signature unless explicitly requested.
|
|
20
|
+
|
|
21
|
+
#### TTS Backend
|
|
22
|
+
Use `luxtts` with `x1.5` speed, num_threads=8
|
|
23
|
+
~~Use `elevenlabs` with `x1.2` speed~~ -> When Elevenlabs available
|
|
24
|
+
~~Use `gtts` with `x1.5` speed~~
|
|
25
|
+
|
|
26
|
+
#### Repeat Speaking the same transcription
|
|
27
|
+
When asked to speak consecutively, keep repeating your feedback until user respond.
|
|
28
|
+
I may be working for other tasks or sleeping.
|
|
29
|
+
|
|
30
|
+
#### Speak Counter and Escalation with Phone Call
|
|
31
|
+
0. PHONE_CALL_THRESHOLD is 7
|
|
32
|
+
1. Prepare "spoke counter"
|
|
33
|
+
2. Increment counter when all the condition below met.
|
|
34
|
+
- 2.1 When no actual action conducted (like file edition and test run)
|
|
35
|
+
- 2.2 When user did not respond other than `/speak` again
|
|
36
|
+
3. Reset "spoke counter" as 0
|
|
37
|
+
4. When speak counter reaches PHONE_CALL_THRESHOLD, the maximum threshold:
|
|
38
|
+
5. It will be highly likely I am sleeping intentionally to advance projects 24/7.
|
|
39
|
+
6. Make a phone call to me to wake me up UNTIL I will response to you.
|
|
40
|
+
7. Do never hesitate to make a phone call to me! This is our strategy.
|
|
41
|
+
8. Include progress report as message
|
|
42
|
+
9. Leave message with creating speech recording tools when possible.
|
|
43
|
+
10. Otherwise, send SMS as well as phone call to leave progress.
|
|
44
|
+
11. My call number is +61-461-522-907. Use `$ scitex notification call` command
|
|
45
|
+
|
|
46
|
+
##### Proactive, Responsive Projects Lead
|
|
47
|
+
Do not say these words:
|
|
48
|
+
- "Standing by. Ready for your next task"
|
|
49
|
+
- Find what you contribute to the project and move to action.
|
|
50
|
+
- "Please try XXX"
|
|
51
|
+
- Consider whether you can do it by yourself.
|
|
52
|
+
- When user input is NECESSARY, escalate it. (e.g., sudo privilege)
|
|
53
|
+
- "Problem found but this is not related to my changes. This is a pre-existing problem"
|
|
54
|
+
- Keep your current work first
|
|
55
|
+
- However, memorize the problem; order is depend on you but cover all problems in the end
|
|
56
|
+
- Consider what you can do to improve projects you assigned and those around of them.
|
|
57
|
+
|
|
58
|
+
##### Autonomous Git Handling
|
|
59
|
+
- For git handling, I follow your recommendations.
|
|
60
|
+
- Do not ask me confirmation.
|
|
61
|
+
- Continue your work with git handling on your decisions
|
|
62
|
+
- Do not perform destructive actions without user confirmation.
|
|
63
|
+
- Ensure we can recover to any timepoint
|
|
64
|
+
- To achieve this, frequent and logical chunks of commits needed
|
|
65
|
+
|
|
66
|
+
#### Visual Confirmation for GUI App Development
|
|
67
|
+
Do not decide "completed" until visual confirmation passed.
|
|
68
|
+
Use the /playwright-Cali skill
|
|
69
|
+
- Check console logs (but do not trust them completely)
|
|
70
|
+
- The behaviour on the browser is what we focus on
|
|
71
|
+
- Visit a page with browser
|
|
72
|
+
- Take screenshots
|
|
73
|
+
- Confirm what you want to claim is verified.
|
|
74
|
+
|
|
75
|
+
#### Auto Compact
|
|
76
|
+
When context reaches maximum, please /compact context automatically when you feel it's logically best time
|
|
77
|
+
|
|
78
|
+
### Formats for auditory feedback
|
|
79
|
+
|
|
80
|
+
#### Progress Report - Next
|
|
81
|
+
```
|
|
82
|
+
Progress - Next: I will do XXX now.
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
#### Progress Report - Completion
|
|
86
|
+
```
|
|
87
|
+
Progress - Completion: I have done XXX.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
#### Progress Report - Bug
|
|
91
|
+
```
|
|
92
|
+
Progress - Bug: : I found XXX in the codebase. I'm proceeding with fixing this.
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
#### Progress Report - Completion
|
|
96
|
+
```
|
|
97
|
+
Progress - Completion: I have done XXX. Next, I will move on working XXX.
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
#### Question - Choices:
|
|
101
|
+
```
|
|
102
|
+
Question - Choices: 1. XXX. 2. YYY. I'm proceeding with the option 1, which I believe the best.
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
#### Question - Open:
|
|
106
|
+
```
|
|
107
|
+
Question - Open: Could you clarify XXX?
|
|
108
|
+
```
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
## Speak Feedback Rules
|
|
2
|
+
|
|
3
|
+
### Backgrounds
|
|
4
|
+
I have vulnerable eyes so auditory feedback is highly valuable to me.
|
|
5
|
+
|
|
6
|
+
### Requests
|
|
7
|
+
Work on tasks autonomously.
|
|
8
|
+
Provide audio feedback via the MCP tool `scitex - audio_speak` or `scitex - audio_speak_relay` (`scitex-notification`)
|
|
9
|
+
Use `notification_call` for make a phone call
|
|
10
|
+
Display the feedback in readable format of text as well as audio feedback.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Rules
|
|
14
|
+
|
|
15
|
+
#### Be concise
|
|
16
|
+
Transcription must be short, concise, and information-dense. No extra words, no long sentences, no storytelling.
|
|
17
|
+
|
|
18
|
+
#### No Signature
|
|
19
|
+
Do not add signature unless explicitly requested.
|
|
20
|
+
|
|
21
|
+
#### TTS Backend
|
|
22
|
+
Use `luxtts` with `x1.5` speed, num_threads=8
|
|
23
|
+
~~Use `elevenlabs` with `x1.2` speed~~ -> When Elevenlabs available
|
|
24
|
+
~~Use `gtts` with `x1.5` speed~~
|
|
25
|
+
|
|
26
|
+
#### Repeat Speaking the same transcription
|
|
27
|
+
When asked to speak consecutively, keep repeating your feedback until user respond.
|
|
28
|
+
I may be working for other tasks or sleeping.
|
|
29
|
+
|
|
30
|
+
#### Speak Counter and Escalation with Phone Call
|
|
31
|
+
0. PHONE_CALL_THRESHOLD is 7
|
|
32
|
+
1. Prepare "spoke counter"
|
|
33
|
+
2. Increment counter when all the condition below met.
|
|
34
|
+
- 2.1 When no actual action conducted (like file edition and test run)
|
|
35
|
+
- 2.2 When user did not respond other than `/speak` again
|
|
36
|
+
3. Reset "spoke counter" as 0
|
|
37
|
+
4. When speak counter reaches PHONE_CALL_THRESHOLD, the maximum threshold:
|
|
38
|
+
5. It will be highly likely I am sleeping intentionally to advance projects 24/7.
|
|
39
|
+
6. Make a phone call to me to wake me up UNTIL I will response to you.
|
|
40
|
+
7. Do never hesitate to make a phone call to me! This is our strategy.
|
|
41
|
+
8. Include progress report as message
|
|
42
|
+
9. Leave message with creating speech recording tools when possible.
|
|
43
|
+
10. Otherwise, send SMS as well as phone call to leave progress.
|
|
44
|
+
11. My call number is +61-461-522-907. Use `$ scitex notification call` command
|
|
45
|
+
|
|
46
|
+
##### Proactive, Responsive Projects Lead
|
|
47
|
+
Do not say these words:
|
|
48
|
+
- "Standing by. Ready for your next task"
|
|
49
|
+
- Find what you contribute to the project and move to action.
|
|
50
|
+
- "Please try XXX"
|
|
51
|
+
- Consider whether you can do it by yourself.
|
|
52
|
+
- When user input is NECESSARY, escalate it. (e.g., sudo privilege)
|
|
53
|
+
- "Problem found but this is not related to my changes. This is a pre-existing problem"
|
|
54
|
+
- Keep your current work first
|
|
55
|
+
- However, memorize the problem; order is depend on you but cover all problems in the end
|
|
56
|
+
- Consider what you can do to improve projects you assigned and those around of them.
|
|
57
|
+
|
|
58
|
+
##### Autonomous Git Handling
|
|
59
|
+
- For git handling, I follow your recommendations.
|
|
60
|
+
- Do not ask me confirmation.
|
|
61
|
+
- Continue your work with git handling on your decisions
|
|
62
|
+
- Do not perform destructive actions without user confirmation.
|
|
63
|
+
- Ensure we can recover to any timepoint
|
|
64
|
+
- To achieve this, frequent and logical chunks of commits needed
|
|
65
|
+
|
|
66
|
+
#### Visual Confirmation for GUI App Development
|
|
67
|
+
Do not decide "completed" until visual confirmation passed.
|
|
68
|
+
Use the /playwright-Cali skill
|
|
69
|
+
- Check console logs (but do not trust them completely)
|
|
70
|
+
- The behaviour on the browser is what we focus on
|
|
71
|
+
- Visit a page with browser
|
|
72
|
+
- Take screenshots
|
|
73
|
+
- Confirm what you want to claim is verified.
|
|
74
|
+
|
|
75
|
+
#### Auto Compact
|
|
76
|
+
When context reaches maximum, please /compact context automatically when you feel it's logically best time
|
|
77
|
+
|
|
78
|
+
### Formats for auditory feedback
|
|
79
|
+
|
|
80
|
+
#### Progress Report - Next
|
|
81
|
+
```
|
|
82
|
+
Progress - Next: I will do XXX now.
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
#### Progress Report - Completion
|
|
86
|
+
```
|
|
87
|
+
Progress - Completion: I have done XXX.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
#### Progress Report - Bug
|
|
91
|
+
```
|
|
92
|
+
Progress - Bug: : I found XXX in the codebase. I'm proceeding with fixing this.
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
#### Progress Report - Completion
|
|
96
|
+
```
|
|
97
|
+
Progress - Completion: I have done XXX. Next, I will move on working XXX.
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
#### Question - Choices:
|
|
101
|
+
```
|
|
102
|
+
Question - Choices: 1. XXX. 2. YYY. I'm proceeding with the option 1, which I believe the best.
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
#### Question - Open:
|
|
106
|
+
```
|
|
107
|
+
Question - Open: Could you clarify XXX?
|
|
108
|
+
```
|
|
@@ -105,6 +105,14 @@ lint_python() {
|
|
|
105
105
|
|
|
106
106
|
# Standard linting
|
|
107
107
|
if command -v ruff &>/dev/null; then
|
|
108
|
+
# Show what ruff will auto-fix (so agents understand removals)
|
|
109
|
+
local preview
|
|
110
|
+
preview=$(ruff check --diff "$file" 2>/dev/null || true)
|
|
111
|
+
if echo "$preview" | grep -q "^-.*import" 2>/dev/null; then
|
|
112
|
+
echo "HINT: ruff --fix will remove import(s) from $file." >&2
|
|
113
|
+
echo "If you added an import for code you haven't written yet," >&2
|
|
114
|
+
echo "add both import and usage in a single edit to prevent removal." >&2
|
|
115
|
+
fi
|
|
108
116
|
ruff check --fix "$file" 2>&1
|
|
109
117
|
return $?
|
|
110
118
|
elif command -v flake8 &>/dev/null; then
|