wrd 1.0.1__py3-none-any.whl → 1.0.3__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.
- wrd/__init__.py +5 -0
- {wrd-1.0.1.dist-info → wrd-1.0.3.dist-info}/METADATA +149 -26
- wrd-1.0.3.dist-info/RECORD +8 -0
- wrd-1.0.1.dist-info/RECORD +0 -8
- {wrd-1.0.1.dist-info → wrd-1.0.3.dist-info}/WHEEL +0 -0
- {wrd-1.0.1.dist-info → wrd-1.0.3.dist-info}/entry_points.txt +0 -0
- {wrd-1.0.1.dist-info → wrd-1.0.3.dist-info}/licenses/LICENSE +0 -0
- {wrd-1.0.1.dist-info → wrd-1.0.3.dist-info}/top_level.txt +0 -0
wrd/__init__.py
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wrd
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
4
4
|
Summary: WRD (Word) - Narzędzie workflow dla Claude Code na Fedorze
|
5
|
-
Home-page: https://github.com/
|
5
|
+
Home-page: https://github.com/wronai/wrd
|
6
6
|
Author: Claude Code User
|
7
7
|
Author-email: Tom Sapletta <info@softreck.dev>
|
8
8
|
License: MIT
|
9
|
-
Project-URL: homepage, https://github.com/
|
10
|
-
Project-URL: repository, https://github.com/
|
11
|
-
Project-URL: documentation, https://github.com/
|
12
|
-
Project-URL: Bug Tracker, https://github.com/
|
9
|
+
Project-URL: homepage, https://github.com/wronai/wrd
|
10
|
+
Project-URL: repository, https://github.com/wronai/wrd
|
11
|
+
Project-URL: documentation, https://github.com/wronai/wrd#readme
|
12
|
+
Project-URL: Bug Tracker, https://github.com/wronai/wrd/issues
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
14
14
|
Classifier: Intended Audience :: Developers
|
15
15
|
Classifier: Topic :: Software Development :: Build Tools
|
@@ -28,11 +28,17 @@ Requires-Dist: rich>=12.0.0
|
|
28
28
|
Requires-Dist: pydantic>=1.9.0
|
29
29
|
Requires-Dist: python-dotenv>=0.19.0
|
30
30
|
Requires-Dist: requests>=2.28.0
|
31
|
+
Provides-Extra: test
|
32
|
+
Requires-Dist: pytest>=7.0.0; extra == "test"
|
33
|
+
Requires-Dist: pytest-cov>=3.0.0; extra == "test"
|
34
|
+
Requires-Dist: pytest-mock>=3.0.0; extra == "test"
|
31
35
|
Provides-Extra: dev
|
32
|
-
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
33
36
|
Requires-Dist: black>=22.0.0; extra == "dev"
|
34
37
|
Requires-Dist: flake8>=4.0.0; extra == "dev"
|
35
38
|
Requires-Dist: mypy>=0.950; extra == "dev"
|
39
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
40
|
+
Requires-Dist: pytest-cov>=3.0.0; extra == "dev"
|
41
|
+
Requires-Dist: pytest-mock>=3.0.0; extra == "dev"
|
36
42
|
Provides-Extra: data
|
37
43
|
Requires-Dist: pandas>=1.5.0; extra == "data"
|
38
44
|
Requires-Dist: numpy>=1.24.0; extra == "data"
|
@@ -45,42 +51,159 @@ Dynamic: home-page
|
|
45
51
|
Dynamic: license-file
|
46
52
|
Dynamic: requires-python
|
47
53
|
|
48
|
-
|
49
|
-
WRD
|
54
|
+

|
55
|
+
# WRD (WRonai Development)
|
56
|
+
|
57
|
+
WRD is a powerful workflow tool designed to streamline your development process, especially when working with AI tools like Claude Code. It provides project management, automatic documentation, and workflow automation.
|
58
|
+
|
59
|
+
## 📦 Features
|
60
|
+
|
61
|
+
- **Project Management**: Create and manage projects with a single command
|
62
|
+
- **Automatic Documentation**: Generate and maintain project documentation
|
63
|
+
- **Workflow Automation**: Automate repetitive tasks
|
64
|
+
- **Session Monitoring**: Track your coding sessions
|
65
|
+
- **Backup System**: Keep your work safe with automated backups
|
66
|
+
|
67
|
+
## 🚀 Installation
|
68
|
+
|
69
|
+
### Prerequisites
|
70
|
+
|
71
|
+
- Python 3.8 or higher
|
72
|
+
- Git
|
73
|
+
- pip (Python package manager)
|
74
|
+
|
75
|
+
### Quick Start
|
76
|
+
|
77
|
+
1. **Clone the repository**:
|
78
|
+
```bash
|
79
|
+
git clone https://github.com/wronai/wrd.git
|
80
|
+
cd wrd
|
81
|
+
```
|
82
|
+
|
83
|
+
2. **Set up a virtual environment (recommended)**:
|
84
|
+
```bash
|
85
|
+
python -m venv venv
|
86
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
87
|
+
```
|
88
|
+
|
89
|
+
3. **Install in development mode**:
|
90
|
+
```bash
|
91
|
+
pip install -e .
|
92
|
+
```
|
93
|
+
|
94
|
+
4. **Verify installation**:
|
95
|
+
```bash
|
96
|
+
wrd --help
|
97
|
+
```
|
50
98
|
|
51
|
-
|
99
|
+
## 🛠 Usage
|
52
100
|
|
53
|
-
|
101
|
+
### Basic Commands
|
54
102
|
|
55
103
|
```bash
|
56
|
-
#
|
57
|
-
|
104
|
+
# Show help
|
105
|
+
wrd --help
|
58
106
|
|
59
|
-
#
|
60
|
-
|
61
|
-
|
62
|
-
|
107
|
+
# Create a new project
|
108
|
+
wrd create my-project --description "My awesome project"
|
109
|
+
|
110
|
+
# List all projects
|
111
|
+
wrd list
|
112
|
+
|
113
|
+
# Show project status
|
114
|
+
wrd status
|
115
|
+
|
116
|
+
# Update project progress
|
117
|
+
wrd progress my-project "Initial setup complete"
|
118
|
+
|
119
|
+
# Create a backup
|
120
|
+
wrd backup
|
63
121
|
```
|
64
122
|
|
65
|
-
|
123
|
+
### Creating a New Project
|
124
|
+
|
66
125
|
```bash
|
67
|
-
#
|
68
|
-
|
126
|
+
# Create a new Python project
|
127
|
+
wrd create my-python-project --type python --description "My Python project"
|
69
128
|
|
70
|
-
#
|
71
|
-
|
129
|
+
# Create a new web project
|
130
|
+
wrd create my-web-project --type web --description "My Web project"
|
131
|
+
```
|
132
|
+
|
133
|
+
### Project Structure
|
134
|
+
|
135
|
+
When you create a new project, the following structure is generated:
|
136
|
+
|
137
|
+
```
|
138
|
+
my-project/
|
139
|
+
├── .git/
|
140
|
+
├── .gitignore
|
141
|
+
├── README.md
|
142
|
+
├── CLAUDE.md
|
143
|
+
├── requirements.txt
|
144
|
+
├── src/
|
145
|
+
│ └── __init__.py
|
146
|
+
├── tests/
|
147
|
+
│ └── __init__.py
|
148
|
+
└── .wrd/
|
149
|
+
└── config.json
|
150
|
+
```
|
151
|
+
|
152
|
+
## 🧪 Testing
|
153
|
+
|
154
|
+
Run the test suite with:
|
155
|
+
|
156
|
+
```bash
|
157
|
+
pytest tests/
|
158
|
+
```
|
159
|
+
|
160
|
+
## 📚 Documentation
|
161
|
+
|
162
|
+
For detailed documentation, please visit our [documentation site](https://github.com/wronai/wrd/wiki).
|
163
|
+
|
164
|
+
## 🤝 Contributing
|
165
|
+
|
166
|
+
Contributions are welcome! Please read our [contributing guidelines](CONTRIBUTING.md) before submitting pull requests.
|
167
|
+
|
168
|
+
## 📄 License
|
169
|
+
|
170
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
171
|
+
|
172
|
+
## 📞 Support
|
173
|
+
|
174
|
+
For support, please open an issue in the [issue tracker](https://github.com/wronai/wrd/issues).
|
175
|
+
|
176
|
+
---
|
177
|
+
|
178
|
+
## Fedora-Specific Setup (Optional)
|
179
|
+
|
180
|
+
If you're using Fedora, you can use the following setup script:
|
181
|
+
|
182
|
+
```bash
|
183
|
+
# Run the setup script
|
184
|
+
curl -fsSL https://raw.githubusercontent.com/wronai/wrd/main/fedora.sh | bash
|
185
|
+
|
186
|
+
# Or download and run manually:
|
187
|
+
wget https://raw.githubusercontent.com/wronai/wrd/main/fedora.sh
|
188
|
+
chmod +x fedora.sh
|
189
|
+
./fedora.sh
|
72
190
|
```
|
73
191
|
|
74
|
-
|
192
|
+
After running the script:
|
193
|
+
```bash
|
194
|
+
# Reload your shell configuration
|
195
|
+
source ~/.bashrc
|
75
196
|
|
76
|
-
|
197
|
+
# Verify the installation
|
198
|
+
cc-workspace
|
199
|
+
```
|
77
200
|
|
78
201
|
```bash
|
79
202
|
# Przejdź do workspace
|
80
203
|
cc-workspace
|
81
204
|
|
82
205
|
# Sklonuj repozytorium WRD
|
83
|
-
git clone https://github.com/
|
206
|
+
git clone https://github.com/wronai/wrd.git
|
84
207
|
cd wrd
|
85
208
|
|
86
209
|
# Utwórz dedykowane środowisko wirtualne dla WRD
|
@@ -227,7 +350,7 @@ nano ~/.wrd/config.json
|
|
227
350
|
sudo systemctl status sshd
|
228
351
|
|
229
352
|
# Test połączenia z telefonu/innego urządzenia
|
230
|
-
ssh
|
353
|
+
ssh wronai@your-fedora-ip
|
231
354
|
|
232
355
|
# Na zdalnym urządzeniu:
|
233
356
|
cc-workspace
|
@@ -0,0 +1,8 @@
|
|
1
|
+
wrd/__init__.py,sha256=Lfudqt5GhCFNMsyZRAnTRQl1ZC55tYN3W3agFNa6kHM,164
|
2
|
+
wrd/__main__.py,sha256=-JFiCxcfy8vb2-LCs04AZW5sxMsx2L_TW4ldnLze8N8,15365
|
3
|
+
wrd-1.0.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
4
|
+
wrd-1.0.3.dist-info/METADATA,sha256=8maeNOEkMk5dlYxy1yEtn-S4gA1q7Bz3ipfIocgiXSA,12633
|
5
|
+
wrd-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
+
wrd-1.0.3.dist-info/entry_points.txt,sha256=coW-BNt6bLWhILwlasMayzrvO7J-i3f7NKIJfcvqHjk,42
|
7
|
+
wrd-1.0.3.dist-info/top_level.txt,sha256=FKmKIFeJWQTfhhxkwRc4xfp8Q3dY1k9Xo36zXgr5JoM,4
|
8
|
+
wrd-1.0.3.dist-info/RECORD,,
|
wrd-1.0.1.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
wrd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
wrd/__main__.py,sha256=-JFiCxcfy8vb2-LCs04AZW5sxMsx2L_TW4ldnLze8N8,15365
|
3
|
-
wrd-1.0.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
4
|
-
wrd-1.0.1.dist-info/METADATA,sha256=9XHgQwF9putakxTLEaHwR0OxsE7jW2ynANuXdqdJvBE,9969
|
5
|
-
wrd-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
-
wrd-1.0.1.dist-info/entry_points.txt,sha256=coW-BNt6bLWhILwlasMayzrvO7J-i3f7NKIJfcvqHjk,42
|
7
|
-
wrd-1.0.1.dist-info/top_level.txt,sha256=FKmKIFeJWQTfhhxkwRc4xfp8Q3dY1k9Xo36zXgr5JoM,4
|
8
|
-
wrd-1.0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|