solokit 0.0.1__py3-none-any.whl
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.
Potentially problematic release.
This version of solokit might be problematic. Click here for more details.
solokit/__init__.py
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: solokit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI-augmented development toolkit for solo developers (Coming Soon)
|
|
5
|
+
Author-email: Ankush Dixit <ankush.dixit@iitdalumni.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://getsolokit.com
|
|
8
|
+
Project-URL: Repository, https://github.com/ankushdixit/solokit
|
|
9
|
+
Keywords: ai,development,claude-code,solo-developer
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE.md
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# SoloKit
|
|
24
|
+
|
|
25
|
+
**AI-augmented development toolkit for solo developers**
|
|
26
|
+
|
|
27
|
+
> ⚠️ **This package is under active development.**
|
|
28
|
+
>
|
|
29
|
+
> SoloKit is a comprehensive toolkit for solo developers using AI coding assistants like Claude Code.
|
|
30
|
+
|
|
31
|
+
## Features (Coming Soon)
|
|
32
|
+
|
|
33
|
+
- 🔄 Session management and context continuity
|
|
34
|
+
- ✅ Quality gates and validation
|
|
35
|
+
- 📋 Work item tracking with dependencies
|
|
36
|
+
- 📚 Learning accumulation across sessions
|
|
37
|
+
- 🚀 Template-based project initialization
|
|
38
|
+
|
|
39
|
+
## Stay Updated
|
|
40
|
+
|
|
41
|
+
- Website: https://getsolokit.com (launching soon)
|
|
42
|
+
- GitHub: https://github.com/ankushdixit/solokit
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
```bash
|
|
46
|
+
# Coming soon
|
|
47
|
+
pip install solokit
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
MIT License
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
solokit/__init__.py,sha256=4pXigLDhe_PrPX-RWHcbxULlDpz_6H70mCGaK75hblg,239
|
|
2
|
+
solokit-0.0.1.dist-info/licenses/LICENSE.md,sha256=GTVQl3vH6ht70wJXKC0yMT8CmXKHxv_YyO_utAgm7EA,1065
|
|
3
|
+
solokit-0.0.1.dist-info/METADATA,sha256=OzwrxM8FQyu_OLDA2qmORzQuwM8EWvquirqbWoo5JDI,1543
|
|
4
|
+
solokit-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5
|
+
solokit-0.0.1.dist-info/top_level.txt,sha256=Jm7LjaFwrpXVrMbo4P6al7vfqf712mJmgRzrmCmyQMk,8
|
|
6
|
+
solokit-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Your Name
|
|
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.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
solokit
|