up-cli 0.1.1__py3-none-any.whl → 0.2.0__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.
@@ -0,0 +1,374 @@
1
+ Metadata-Version: 2.4
2
+ Name: up-cli
3
+ Version: 0.2.0
4
+ Summary: AI-powered project scaffolding with docs, learn, and product-loop systems
5
+ Project-URL: Homepage, https://github.com/yourusername/up-cli
6
+ Project-URL: Documentation, https://github.com/yourusername/up-cli#readme
7
+ Project-URL: Repository, https://github.com/yourusername/up-cli
8
+ Author-email: Your Name <you@example.com>
9
+ License-Expression: MIT
10
+ Keywords: ai,claude,cli,cursor,mcp,productivity,scaffolding
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Code Generators
20
+ Requires-Python: >=3.10
21
+ Requires-Dist: click>=8.0
22
+ Requires-Dist: pyyaml>=6.0
23
+ Requires-Dist: rich>=13.0
24
+ Requires-Dist: tqdm>=4.65.0
25
+ Provides-Extra: dev
26
+ Requires-Dist: mypy>=1.5.0; extra == 'dev'
27
+ Requires-Dist: pytest-cov>=4.0; extra == 'dev'
28
+ Requires-Dist: pytest>=7.0; extra == 'dev'
29
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
30
+ Description-Content-Type: text/markdown
31
+
32
+ # up-cli
33
+
34
+ <img width="3498" height="2182" alt="543426914-37655a9f-e661-4ab5-b994-e4e11f97dd95" src="https://github.com/user-attachments/assets/7cbc2614-af8e-41cb-be2f-df2b6cd43b07" />
35
+
36
+
37
+ An AI-powered CLI tool for scaffolding projects with built-in documentation, learning systems, and product-loop workflows designed for use with Claude Code and Cursor AI.
38
+
39
+ **Learned from real practice** - Built on insights from 5+ billion tokens of development experience and commercial products. Extracts best practices from chat history, documentation patterns, and proven workflows.
40
+
41
+ ## Installation
42
+
43
+ ```bash
44
+ pip install up-cli
45
+ ```
46
+
47
+ ## Quick Start
48
+
49
+ ```bash
50
+ # Create new project
51
+ up new my-project
52
+
53
+ # Or initialize in existing project
54
+ cd existing-project
55
+ up init
56
+
57
+ # Check system health
58
+ up status
59
+
60
+ # Live dashboard
61
+ up dashboard
62
+ ```
63
+
64
+ ## Commands
65
+
66
+ | Command | Description |
67
+ |---------|-------------|
68
+ | `up new <name>` | Create a new project with full scaffolding |
69
+ | `up new <name> --template <type>` | Create project from specific template |
70
+ | `up init` | Initialize up systems in current directory |
71
+ | `up init --ai claude` | Initialize for Claude Code only |
72
+ | `up init --ai cursor` | Initialize for Cursor AI only |
73
+ | `up init --systems docs,learn` | Initialize specific systems only |
74
+ | `up start` | Start the product loop |
75
+ | `up start --resume` | Resume from last checkpoint |
76
+ | `up start --dry-run` | Preview mode without changes |
77
+ | `up status` | Show health of all systems |
78
+ | `up dashboard` | Live interactive health dashboard |
79
+ | `up learn auto` | Auto-analyze project for improvements |
80
+ | `up learn plan` | Generate improvement PRD |
81
+ | `up summarize` | Summarize AI conversation history |
82
+
83
+ ## Project Templates
84
+
85
+ Create projects with pre-configured tech stacks:
86
+
87
+ ```bash
88
+ # FastAPI backend with SQLAlchemy
89
+ up new my-api --template fastapi
90
+
91
+ # Next.js frontend with TypeScript
92
+ up new my-app --template nextjs
93
+
94
+ # Python library with packaging
95
+ up new my-lib --template python-lib
96
+
97
+ # Minimal structure
98
+ up new my-project --template minimal
99
+
100
+ # Full setup with MCP
101
+ up new my-project --template full
102
+ ```
103
+
104
+ | Template | Description |
105
+ |----------|-------------|
106
+ | `minimal` | Basic structure with docs |
107
+ | `standard` | Full up systems (default) |
108
+ | `full` | Everything including MCP server |
109
+ | `fastapi` | FastAPI + SQLAlchemy + pytest |
110
+ | `nextjs` | Next.js 14 + TypeScript + Tailwind |
111
+ | `python-lib` | Python library with pyproject.toml |
112
+
113
+ ## Usage Examples
114
+
115
+ ### Create a new project
116
+
117
+ ```bash
118
+ # Create a new project with all systems
119
+ up new my-saas-app
120
+
121
+ # Create with a specific template
122
+ up new my-api --template fastapi
123
+ ```
124
+
125
+ ### Initialize in existing project
126
+
127
+ ```bash
128
+ cd my-existing-project
129
+
130
+ # Full initialization
131
+ up init
132
+
133
+ # Claude Code focused setup
134
+ up init --ai claude
135
+
136
+ # Only add docs and learn systems
137
+ up init --systems docs,learn
138
+ ```
139
+
140
+ ### Monitor System Health
141
+
142
+ ```bash
143
+ # Quick status check
144
+ up status
145
+
146
+ # Live dashboard (updates every 5 seconds)
147
+ up dashboard
148
+
149
+ # JSON output for scripting
150
+ up status --json
151
+ ```
152
+
153
+ ### Using the Learn System
154
+
155
+ ```bash
156
+ # Auto-analyze your project and generate insights
157
+ up learn auto
158
+
159
+ # Check learning system status
160
+ up learn status
161
+
162
+ # Generate a PRD from analysis
163
+ up learn plan
164
+ ```
165
+
166
+ ### Using the Product Loop
167
+
168
+ ```bash
169
+ # Start the product loop
170
+ up start
171
+
172
+ # Resume from checkpoint
173
+ up start --resume
174
+
175
+ # Preview what would happen
176
+ up start --dry-run
177
+
178
+ # Start with specific task
179
+ up start --task US-003
180
+
181
+ # Use custom PRD file
182
+ up start --prd path/to/prd.json
183
+ ```
184
+
185
+ ### Summarize Conversations
186
+
187
+ ```bash
188
+ # Summarize Cursor chat history
189
+ up summarize
190
+
191
+ # Export as JSON
192
+ up summarize --format json --output summary.json
193
+
194
+ # Filter by project
195
+ up summarize --project myproject
196
+ ```
197
+
198
+ ## Systems
199
+
200
+ ### 1. Docs System
201
+
202
+ Comprehensive documentation structure:
203
+
204
+ ```
205
+ docs/
206
+ ├── CONTEXT.md # AI reads first
207
+ ├── INDEX.md # Quick reference
208
+ ├── roadmap/ # Strategic planning
209
+ │ ├── vision/ # Product vision
210
+ │ └── phases/ # Phase roadmaps
211
+ ├── architecture/ # System design
212
+ ├── features/ # Feature specs
213
+ ├── changelog/ # Progress tracking
214
+ ├── handoff/ # Session continuity
215
+ ├── decisions/ # ADRs
216
+ └── learnings/ # Patterns discovered
217
+ ```
218
+
219
+ ### 2. Learn System
220
+
221
+ Research and improvement pipeline:
222
+
223
+ ```
224
+ RESEARCH → ANALYZE → COMPARE → PLAN → IMPLEMENT
225
+ ```
226
+
227
+ - `/learn auto` - Auto-analyze project
228
+ - `/learn research [topic]` - Research topic
229
+ - `/learn plan` - Generate improvement PRD
230
+
231
+ ### 3. Product Loop (SESRC)
232
+
233
+ Autonomous development with safety guardrails:
234
+
235
+ | Principle | Implementation |
236
+ |-----------|----------------|
237
+ | **Stable** | Graceful degradation, fallback modes |
238
+ | **Efficient** | Token budgets, incremental testing |
239
+ | **Safe** | Input validation, path whitelisting |
240
+ | **Reliable** | Timeouts, idempotency, rollback |
241
+ | **Cost-effective** | Early termination, ROI threshold |
242
+
243
+ Features:
244
+ - Circuit breaker (max 3 failures)
245
+ - Checkpoint/rollback
246
+ - Health checks
247
+ - Budget limits
248
+
249
+ ### 4. Context Budget
250
+
251
+ Tracks AI context window usage:
252
+
253
+ - Estimates token usage per file/message
254
+ - Warns at 80% capacity
255
+ - Suggests handoff at 90%
256
+ - Persists across sessions
257
+
258
+ ### 5. MCP Server Support
259
+
260
+ Model Context Protocol integration:
261
+
262
+ ```
263
+ .mcp/
264
+ ├── config.json # Server configuration
265
+ ├── tools/ # Custom tool definitions
266
+ └── README.md # Usage guide
267
+ ```
268
+
269
+ ## AI Integration
270
+
271
+ ### Generated Files
272
+
273
+ | File | Purpose |
274
+ |------|---------|
275
+ | `CLAUDE.md` | Claude Code instructions |
276
+ | `.cursorrules` | Cursor AI rules |
277
+ | `.cursor/rules/*.md` | File-specific rules |
278
+ | `.claude/context_budget.json` | Context tracking |
279
+
280
+ ### Cursor Rules
281
+
282
+ Generated rules for different file types:
283
+ - `main.md` - General project rules
284
+ - `python.md` - Python standards
285
+ - `typescript.md` - TypeScript standards
286
+ - `docs.md` - Documentation standards
287
+ - `tests.md` - Testing standards
288
+
289
+ ## Design Principles & Practices
290
+
291
+ ### AI-First Development
292
+
293
+ **Design for AI collaboration, not just human readability.**
294
+
295
+ - **Context-aware scaffolding** - Project structures optimized for AI agents to navigate and understand quickly
296
+ - **Explicit over implicit** - Clear file naming, directory structures, and documentation that AI can parse without ambiguity
297
+ - **Prompt-friendly patterns** - Code and docs written to be easily referenced in AI conversations
298
+ - **Tool integration** - Native support for Claude Code skills and Cursor AI rules
299
+
300
+ ### Documentation-Driven Development
301
+
302
+ **Documentation is the source of truth, not an afterthought.**
303
+
304
+ - **Docs-first workflow** - Write documentation before implementation to clarify intent
305
+ - **Living documentation** - Docs evolve with the codebase through automated learning systems
306
+ - **Knowledge extraction** - `/learn` commands analyze patterns and generate insights from real usage
307
+ - **Structured knowledge** - Vision, roadmaps, and changelogs in predictable locations for AI and human consumption
308
+
309
+ ### Product Loop Patterns (SESRC)
310
+
311
+ **Autonomous development with safety guardrails.**
312
+
313
+ - **Circuit breaker protection** - Max 3 consecutive failures before stopping to prevent runaway loops
314
+ - **Checkpoint/rollback** - Save state before risky operations, restore on failure
315
+ - **Health checks** - Validate system state between iterations
316
+ - **Budget limits** - Token and time constraints to prevent unbounded execution
317
+ - **Human-in-the-loop** - Critical decisions require explicit approval
318
+
319
+ ### Core Practices
320
+
321
+ | Practice | Description |
322
+ |----------|-------------|
323
+ | **Incremental delivery** | Ship small, working increments over big-bang releases |
324
+ | **Fail fast, recover faster** | Detect issues early, rollback automatically |
325
+ | **Observable by default** | Logging, metrics, and state visible to both AI and humans |
326
+ | **Convention over configuration** | Sensible defaults that work out of the box |
327
+
328
+ ## Development
329
+
330
+ ```bash
331
+ # Install for development
332
+ pip install -e ".[dev]"
333
+
334
+ # Run tests
335
+ pytest
336
+
337
+ # Lint
338
+ ruff check src/
339
+
340
+ # Type check
341
+ mypy src/
342
+ ```
343
+
344
+ ## Project Structure
345
+
346
+ ```
347
+ up-cli/
348
+ ├── src/up/
349
+ │ ├── cli.py # Main CLI
350
+ │ ├── context.py # Context budget management
351
+ │ ├── summarizer.py # Conversation analysis
352
+ │ ├── commands/ # CLI commands
353
+ │ │ ├── init.py
354
+ │ │ ├── new.py
355
+ │ │ ├── status.py
356
+ │ │ ├── dashboard.py
357
+ │ │ ├── learn.py
358
+ │ │ └── summarize.py
359
+ │ └── templates/ # Scaffolding templates
360
+ │ ├── config/ # CLAUDE.md, .cursor/rules
361
+ │ ├── docs/ # Documentation system
362
+ │ ├── learn/ # Learning system
363
+ │ ├── loop/ # Product loop
364
+ │ ├── mcp/ # MCP server
365
+ │ └── projects/ # Project templates
366
+ ├── scripts/ # Utility scripts
367
+ │ ├── export_claude_history.py
368
+ │ └── export_cursor_history.py
369
+ └── skills/ # Reference skills
370
+ ```
371
+
372
+ ## License
373
+
374
+ MIT
@@ -0,0 +1,23 @@
1
+ up/__init__.py,sha256=7suBsJ6_nxjrmi-aUlqOniZkgIWUttUoNQ_zT8vza9Q,70
2
+ up/cli.py,sha256=vYwrxZaG3NX0LNuVNKe9eLmbQPPIvZPA9qZLC864kH0,1616
3
+ up/context.py,sha256=Z_C5C7H_brC7IyQpRcEwlYToKcm9VKhzKyWIbE91yM8,11662
4
+ up/summarizer.py,sha256=JyKYIB2CkuFuNHFuqiw6v6oEsD7enLIl9O8xA_32qQI,13952
5
+ up/commands/__init__.py,sha256=95wKJUh3jcO5L0kj6UiA5Hanrs1mTnHv_L70PfmMNJ0,23
6
+ up/commands/dashboard.py,sha256=7J7J3JFq95NecbOtSXQfm3zUytpacFVQrF0oMfdrlfg,7426
7
+ up/commands/init.py,sha256=uBLYSict6O2nmywFIfgBbb_Isw8LkB3y5R09XAnrvfQ,1756
8
+ up/commands/learn.py,sha256=iL-jlIfynVQ9a0VUl1qMQx5jXip8QyRcbXBQFK7ZR4k,12210
9
+ up/commands/new.py,sha256=PNyrYtWkJDEWkKN1Axa57YW_pJYL6zjHCuhqbjq-FIc,4733
10
+ up/commands/start.py,sha256=e61s28A-_rgmU_5nwKBQ3fuGbrieyL7S2152EZfun8A,13302
11
+ up/commands/status.py,sha256=2lzCYMTd9dCPAxetMYNQd8RnJ83V4mmuovBt1JjTDy0,6721
12
+ up/commands/summarize.py,sha256=GqAm_Yj9-8UaHMHjAzyi6yRT5f2D8updi7BHP3OA7bA,3619
13
+ up/templates/__init__.py,sha256=S_GEtcw4WCtlkK8iFtNJJpAxX8OhSaE6jJyacWIfgso,3282
14
+ up/templates/config/__init__.py,sha256=snm6ObGyQtAOEG3-X_v6iamoGiBV7uUVzBu6Sipo6nw,11937
15
+ up/templates/docs_skill/__init__.py,sha256=0XNjIj5yuwlhqUmIZjjcfQo67J-m_op1RKAVjIn6bho,1201
16
+ up/templates/learn/__init__.py,sha256=NUDmkyfN3HN0ZILNbIpCcfpmG4ztw6RXmN405Ps5DTE,17313
17
+ up/templates/loop/__init__.py,sha256=PsemvvBaGdvJya8cqB6GEDuJomFIlJLD6Clu9bdVlyI,16216
18
+ up/templates/mcp/__init__.py,sha256=hN4_w1v50tFpf8-WZe2_tVGgNjOW5Ucilfue6qQiIv8,12686
19
+ up/templates/projects/__init__.py,sha256=kNmEP6uRnj_f-RkSUwIXwjuwO_ep5Pm10MbHda0cqCU,17717
20
+ up_cli-0.2.0.dist-info/METADATA,sha256=sJf1vPSD5y5JVxB__J-CTpo2eNSFpya0UWvwsss_ZTo,10366
21
+ up_cli-0.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
22
+ up_cli-0.2.0.dist-info/entry_points.txt,sha256=3xiuYEewTAtul4F7s7mBOBD8s4kUlkdcqNrrMGfLEHA,35
23
+ up_cli-0.2.0.dist-info/RECORD,,
@@ -1,186 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: up-cli
3
- Version: 0.1.1
4
- Summary: AI-powered project scaffolding with docs, learn, and product-loop systems
5
- Project-URL: Homepage, https://github.com/yourusername/up-cli
6
- Project-URL: Documentation, https://github.com/yourusername/up-cli#readme
7
- Project-URL: Repository, https://github.com/yourusername/up-cli
8
- Author-email: Your Name <you@example.com>
9
- License-Expression: MIT
10
- Keywords: ai,claude,cli,cursor,productivity,scaffolding
11
- Classifier: Development Status :: 3 - Alpha
12
- Classifier: Environment :: Console
13
- Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: MIT License
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Topic :: Software Development :: Code Generators
20
- Requires-Python: >=3.10
21
- Requires-Dist: click>=8.0
22
- Requires-Dist: pyyaml>=6.0
23
- Requires-Dist: rich>=13.0
24
- Provides-Extra: dev
25
- Requires-Dist: pytest>=7.0; extra == 'dev'
26
- Requires-Dist: ruff>=0.1.0; extra == 'dev'
27
- Description-Content-Type: text/markdown
28
-
29
- # up-cli
30
-
31
- ![img](https://img.iami.xyz/images/ai-futures/543426914-37655a9f-e661-4ab5-b994-e4e11f97dd95.png)
32
-
33
- An AI-powered CLI tool for scaffolding projects with built-in documentation, learning systems, and product-loop workflows designed for use with Claude Code and Cursor AI.
34
-
35
- **Learned from real practice** - Built on insights from 5+ billion tokens of development experience and commercial products. Extracts best practices from chat history, documentation patterns, and proven workflows.
36
-
37
- ## Installation
38
-
39
- ```bash
40
- pip install -e .
41
- ```
42
-
43
- ## Quick Start
44
-
45
- ```bash
46
- # Create new project
47
- up new my-project
48
-
49
- # Or initialize in existing project
50
- cd existing-project
51
- up init
52
- ```
53
-
54
- ## Commands
55
-
56
- | Command | Description |
57
- |---------|-------------|
58
- | `up new <name>` | Create a new project with full scaffolding |
59
- | `up new <name> --template <type>` | Create project from specific template |
60
- | `up init` | Initialize up systems in current directory |
61
- | `up init --ai claude` | Initialize for Claude Code only |
62
- | `up init --ai cursor` | Initialize for Cursor AI only |
63
- | `up init --systems docs,learn` | Initialize specific systems only |
64
-
65
- ## Usage Examples
66
-
67
- ### Create a new project
68
-
69
- ```bash
70
- # Create a new project with all systems
71
- up new my-saas-app
72
-
73
- # Create with a specific template
74
- up new my-api --template fastapi
75
- ```
76
-
77
- ### Initialize in existing project
78
-
79
- ```bash
80
- cd my-existing-project
81
-
82
- # Full initialization
83
- up init
84
-
85
- # Claude Code focused setup
86
- up init --ai claude
87
-
88
- # Only add docs and learn systems
89
- up init --systems docs,learn
90
- ```
91
-
92
- ### Using the Learn System
93
-
94
- ```bash
95
- # Auto-analyze your project and generate insights
96
- /learn auto
97
-
98
- # Research a specific topic with web sources
99
- /learn research "authentication patterns"
100
-
101
- # Generate a PRD from your codebase
102
- /learn plan
103
- ```
104
-
105
- ### Using the Product Loop
106
-
107
- ```bash
108
- # Start autonomous development loop
109
- ./skills/product-loop/start-autonomous.sh
110
-
111
- # Run with circuit breaker protection
112
- ./skills/product-loop/ralph_hybrid.sh
113
- ```
114
-
115
- ## Systems
116
-
117
- ### 1. Docs System
118
-
119
- ```
120
- docs/roadmap/vision/ # Product vision
121
- docs/roadmap/phases/ # Phase roadmaps
122
- docs/changelog/ # Progress tracking
123
- ```
124
-
125
- ### 2. Learn System
126
-
127
- - `/learn auto` - Auto-analyze project
128
- - `/learn research [topic]` - Research topic
129
- - `/learn plan` - Generate PRD
130
-
131
- ### 3. Product Loop (SESRC)
132
-
133
- - Circuit breaker (max 3 failures)
134
- - Checkpoint/rollback
135
- - Health checks
136
- - Budget limits
137
-
138
- ## Design Principles & Practices
139
-
140
- ### AI-First Development
141
-
142
- **Design for AI collaboration, not just human readability.**
143
-
144
- - **Context-aware scaffolding** - Project structures optimized for AI agents to navigate and understand quickly
145
- - **Explicit over implicit** - Clear file naming, directory structures, and documentation that AI can parse without ambiguity
146
- - **Prompt-friendly patterns** - Code and docs written to be easily referenced in AI conversations
147
- - **Tool integration** - Native support for Claude Code skills and Cursor AI rules
148
-
149
- ### Documentation-Driven Development
150
-
151
- **Documentation is the source of truth, not an afterthought.**
152
-
153
- - **Docs-first workflow** - Write documentation before implementation to clarify intent
154
- - **Living documentation** - Docs evolve with the codebase through automated learning systems
155
- - **Knowledge extraction** - `/learn` commands analyze patterns and generate insights from real usage
156
- - **Structured knowledge** - Vision, roadmaps, and changelogs in predictable locations for AI and human consumption
157
-
158
- ### Product Loop Patterns (SESRC)
159
-
160
- **Autonomous development with safety guardrails.**
161
-
162
- - **Circuit breaker protection** - Max 3 consecutive failures before stopping to prevent runaway loops
163
- - **Checkpoint/rollback** - Save state before risky operations, restore on failure
164
- - **Health checks** - Validate system state between iterations
165
- - **Budget limits** - Token and time constraints to prevent unbounded execution
166
- - **Human-in-the-loop** - Critical decisions require explicit approval
167
-
168
- ### Core Practices
169
-
170
- | Practice | Description |
171
- |----------|-------------|
172
- | **Incremental delivery** | Ship small, working increments over big-bang releases |
173
- | **Fail fast, recover faster** | Detect issues early, rollback automatically |
174
- | **Observable by default** | Logging, metrics, and state visible to both AI and humans |
175
- | **Convention over configuration** | Sensible defaults that work out of the box |
176
-
177
- ## Development
178
-
179
- ```bash
180
- pip install -e .
181
- pytest
182
- ```
183
-
184
- ## License
185
-
186
- MIT
@@ -1,14 +0,0 @@
1
- up/__init__.py,sha256=7suBsJ6_nxjrmi-aUlqOniZkgIWUttUoNQ_zT8vza9Q,70
2
- up/cli.py,sha256=NV7Zn4ep2vEVQsKZWGZqTRSXiefe9sFrN6fsnLLHub8,551
3
- up/commands/__init__.py,sha256=95wKJUh3jcO5L0kj6UiA5Hanrs1mTnHv_L70PfmMNJ0,23
4
- up/commands/init.py,sha256=uBLYSict6O2nmywFIfgBbb_Isw8LkB3y5R09XAnrvfQ,1756
5
- up/commands/new.py,sha256=oYLdf7s0QhI1uZiXhxWdO7S_y8IeVqIdSxsAD4nFPYc,1712
6
- up/templates/__init__.py,sha256=lTJqsHoYoMAvFMoYttvVJP_zb1w2ELzj04--ckDfFYI,1657
7
- up/templates/config/__init__.py,sha256=zOUgJWVB_OLPmkKVKyrdGhfV8tpL2m-oGy327Wn8LhE,2219
8
- up/templates/docs_skill/__init__.py,sha256=0XNjIj5yuwlhqUmIZjjcfQo67J-m_op1RKAVjIn6bho,1201
9
- up/templates/learn/__init__.py,sha256=8ArFJ0M25gGbPkmdzg3p2LPOqyetefn65NqSC59pBqw,2289
10
- up/templates/loop/__init__.py,sha256=jC_pAHnMUi34e_RBSu_YFd2oKAXWc3lC_e3M4DPUAPY,2290
11
- up_cli-0.1.1.dist-info/METADATA,sha256=2UUOHQxnStniuCQ9M-wpd9ov2iPig8MYkUlDzrnsQzA,5555
12
- up_cli-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
13
- up_cli-0.1.1.dist-info/entry_points.txt,sha256=3xiuYEewTAtul4F7s7mBOBD8s4kUlkdcqNrrMGfLEHA,35
14
- up_cli-0.1.1.dist-info/RECORD,,
File without changes