superclaude 4.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. superclaude-4.1.7/.gitignore +201 -0
  2. superclaude-4.1.7/LICENSE +21 -0
  3. superclaude-4.1.7/PKG-INFO +606 -0
  4. superclaude-4.1.7/README.md +563 -0
  5. superclaude-4.1.7/docs/README.md +137 -0
  6. superclaude-4.1.7/docs/developer-guide/README.md +172 -0
  7. superclaude-4.1.7/docs/memory/README.md +277 -0
  8. superclaude-4.1.7/docs/reference/README.md +249 -0
  9. superclaude-4.1.7/pyproject.toml +167 -0
  10. superclaude-4.1.7/scripts/README.md +138 -0
  11. superclaude-4.1.7/src/superclaude/__init__.py +21 -0
  12. superclaude-4.1.7/src/superclaude/__version__.py +3 -0
  13. superclaude-4.1.7/src/superclaude/cli/__init__.py +12 -0
  14. superclaude-4.1.7/src/superclaude/cli/doctor.py +148 -0
  15. superclaude-4.1.7/src/superclaude/cli/install_commands.py +163 -0
  16. superclaude-4.1.7/src/superclaude/cli/install_skill.py +149 -0
  17. superclaude-4.1.7/src/superclaude/cli/main.py +181 -0
  18. superclaude-4.1.7/src/superclaude/execution/__init__.py +225 -0
  19. superclaude-4.1.7/src/superclaude/execution/parallel.py +335 -0
  20. superclaude-4.1.7/src/superclaude/execution/reflection.py +383 -0
  21. superclaude-4.1.7/src/superclaude/execution/self_correction.py +426 -0
  22. superclaude-4.1.7/src/superclaude/pm_agent/__init__.py +19 -0
  23. superclaude-4.1.7/src/superclaude/pm_agent/confidence.py +268 -0
  24. superclaude-4.1.7/src/superclaude/pm_agent/reflexion.py +343 -0
  25. superclaude-4.1.7/src/superclaude/pm_agent/self_check.py +249 -0
  26. superclaude-4.1.7/src/superclaude/pm_agent/token_budget.py +85 -0
  27. superclaude-4.1.7/src/superclaude/pytest_plugin.py +222 -0
  28. superclaude-4.1.7/src/superclaude/skills/confidence-check/SKILL.md +124 -0
  29. superclaude-4.1.7/src/superclaude/skills/confidence-check/confidence.ts +305 -0
  30. superclaude-4.1.7/tests/__init__.py +10 -0
  31. superclaude-4.1.7/tests/conftest.py +117 -0
  32. superclaude-4.1.7/tests/integration/__init__.py +5 -0
  33. superclaude-4.1.7/tests/integration/test_pytest_plugin.py +146 -0
  34. superclaude-4.1.7/tests/unit/__init__.py +5 -0
  35. superclaude-4.1.7/tests/unit/test_cli_install.py +181 -0
  36. superclaude-4.1.7/tests/unit/test_confidence.py +178 -0
  37. superclaude-4.1.7/tests/unit/test_reflexion.py +182 -0
  38. superclaude-4.1.7/tests/unit/test_self_check.py +235 -0
  39. superclaude-4.1.7/tests/unit/test_token_budget.py +128 -0
@@ -0,0 +1,201 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ pip-wheel-metadata/
20
+ share/python-wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+ MANIFEST
25
+
26
+ # PyPI Publishing
27
+ *.whl
28
+ *.tar.gz
29
+ twine.log
30
+ .twine/
31
+
32
+ # PyInstaller
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Unit test / coverage reports
37
+ htmlcov/
38
+ .tox/
39
+ .nox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *.cover
46
+ *.py,cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+
50
+ # Virtual environments
51
+ venv/
52
+ env/
53
+ ENV/
54
+ env.bak/
55
+ venv.bak/
56
+ .venv/
57
+
58
+ # IDEs and editors
59
+ .vscode/
60
+ .idea/
61
+ *.swp
62
+ *.swo
63
+ *~
64
+ *.sublime-project
65
+ *.sublime-workspace
66
+
67
+ # OS specific
68
+ .DS_Store
69
+ .DS_Store?
70
+ ._*
71
+ .Spotlight-V100
72
+ .Trashes
73
+ ehthumbs.db
74
+ Thumbs.db
75
+ Desktop.ini
76
+
77
+ # Logs
78
+ logs/
79
+ *.log
80
+ npm-debug.log*
81
+ yarn-debug.log*
82
+ yarn-error.log*
83
+
84
+ # Node.js (if any frontend components)
85
+ node_modules/
86
+ npm-debug.log
87
+ yarn-error.log
88
+
89
+ # Jupyter Notebook
90
+ .ipynb_checkpoints
91
+
92
+ # pyenv
93
+ .python-version
94
+
95
+ # pipenv
96
+ Pipfile.lock
97
+
98
+ # Poetry
99
+ poetry.lock
100
+
101
+ # Claude Code - only ignore user-specific files
102
+ .claude/history/
103
+ .claude/cache/
104
+ .claude/*.lock
105
+
106
+ # SuperClaude specific
107
+ .serena/
108
+ .superclaude/
109
+ *.backup
110
+ *.bak
111
+
112
+ # Project specific
113
+ Tests/
114
+ temp/
115
+ tmp/
116
+ .cache/
117
+
118
+ # Build artifacts
119
+ *.tar.gz
120
+ *.zip
121
+ *.dmg
122
+ *.pkg
123
+ *.deb
124
+ *.rpm
125
+
126
+ # Documentation builds
127
+ docs/_build/
128
+ site/
129
+
130
+ # Temporary files
131
+ *.tmp
132
+ *.temp
133
+ .temp/
134
+
135
+ # Security & API Keys
136
+ .env
137
+ .env.local
138
+ .env.*.local
139
+ .pypirc
140
+ secrets/
141
+ private/
142
+ *.key
143
+ *.pem
144
+ *.p12
145
+ *.pfx
146
+
147
+ # PyPI & Package Management
148
+ uv.lock
149
+ Pipfile.lock
150
+ poetry.lock
151
+ requirements-dev.txt
152
+ requirements-test.txt
153
+
154
+ # Development Tools
155
+ .mypy_cache/
156
+ .ruff_cache/
157
+ .black/
158
+ .isort.cfg
159
+ .flake8
160
+ pyrightconfig.json
161
+ .pylintrc
162
+
163
+ # Publishing & Release
164
+ PYPI_SETUP_COMPLETE.md
165
+ release-notes/
166
+ changelog-temp/
167
+
168
+ # Build artifacts (additional)
169
+ *.deb
170
+ *.rpm
171
+ *.dmg
172
+ *.pkg
173
+ *.msi
174
+ *.exe
175
+
176
+ # IDE & Editor specific
177
+ .vscode/settings.json
178
+ .vscode/launch.json
179
+ .idea/workspace.xml
180
+ .idea/tasks.xml
181
+ *.sublime-project
182
+ *.sublime-workspace
183
+
184
+ # System & OS
185
+ .DS_Store
186
+ .DS_Store?
187
+ ._*
188
+ .Spotlight-V100
189
+ .Trashes
190
+ ehthumbs.db
191
+ Thumbs.db
192
+ Desktop.ini
193
+ $RECYCLE.BIN/
194
+
195
+ # Personal files
196
+ CRUSH.md
197
+ TODO.txt
198
+
199
+ # Development artifacts (should not be in repo)
200
+ package-lock.json
201
+ uv.lock
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 SuperClaude Framework Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.