seedcode-cli 6.1.5__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.
Files changed (114) hide show
  1. seedcode/__init__.py +14 -0
  2. seedcode/__main__.py +12 -0
  3. seedcode/app.py +508 -0
  4. seedcode/apps/__init__.py +32 -0
  5. seedcode/apps/discovery.py +241 -0
  6. seedcode/apps/installer.py +164 -0
  7. seedcode/apps/launcher.py +156 -0
  8. seedcode/apps/verifier.py +119 -0
  9. seedcode/assets/logo.txt +15 -0
  10. seedcode/cli.py +95 -0
  11. seedcode/commands/__init__.py +81 -0
  12. seedcode/commands/about.py +34 -0
  13. seedcode/commands/agent.py +94 -0
  14. seedcode/commands/assist.py +201 -0
  15. seedcode/commands/clear.py +20 -0
  16. seedcode/commands/desktop.py +104 -0
  17. seedcode/commands/doctor.py +152 -0
  18. seedcode/commands/help.py +61 -0
  19. seedcode/commands/history.py +365 -0
  20. seedcode/commands/palette.py +100 -0
  21. seedcode/commands/provider.py +451 -0
  22. seedcode/commands/theme.py +76 -0
  23. seedcode/computer/__init__.py +98 -0
  24. seedcode/computer/browser.py +276 -0
  25. seedcode/computer/browser_cdp.py +567 -0
  26. seedcode/computer/browser_engine.py +546 -0
  27. seedcode/computer/browser_extract.py +301 -0
  28. seedcode/computer/browser_popups.py +329 -0
  29. seedcode/computer/browser_selenium.py +209 -0
  30. seedcode/computer/browser_skills.py +245 -0
  31. seedcode/computer/catalog.py +200 -0
  32. seedcode/computer/controller.py +324 -0
  33. seedcode/computer/dispatcher.py +272 -0
  34. seedcode/computer/dpi.py +185 -0
  35. seedcode/computer/engine.py +105 -0
  36. seedcode/computer/keyboard.py +101 -0
  37. seedcode/computer/logbook.py +104 -0
  38. seedcode/computer/mouse.py +48 -0
  39. seedcode/computer/ocr.py +213 -0
  40. seedcode/computer/operator_skills.py +577 -0
  41. seedcode/computer/permissions.py +203 -0
  42. seedcode/computer/recovery.py +115 -0
  43. seedcode/computer/registry.py +107 -0
  44. seedcode/computer/resolver.py +434 -0
  45. seedcode/computer/screen.py +130 -0
  46. seedcode/computer/screen_state.py +412 -0
  47. seedcode/computer/selfguard.py +197 -0
  48. seedcode/computer/semantic.py +100 -0
  49. seedcode/computer/skills.py +139 -0
  50. seedcode/computer/state.py +199 -0
  51. seedcode/computer/verifier.py +177 -0
  52. seedcode/computer/vision.py +327 -0
  53. seedcode/computer/windows.py +217 -0
  54. seedcode/config/__init__.py +8 -0
  55. seedcode/config/defaults.py +22 -0
  56. seedcode/config/manager.py +62 -0
  57. seedcode/core/__init__.py +31 -0
  58. seedcode/core/agent.py +534 -0
  59. seedcode/core/chat.py +128 -0
  60. seedcode/core/client.py +9 -0
  61. seedcode/core/errors.py +199 -0
  62. seedcode/core/identity.py +66 -0
  63. seedcode/core/identity_store.py +119 -0
  64. seedcode/core/lifecycle.py +240 -0
  65. seedcode/core/limits.py +35 -0
  66. seedcode/core/models.py +347 -0
  67. seedcode/core/project.py +96 -0
  68. seedcode/core/providers/__init__.py +58 -0
  69. seedcode/core/providers/aerolink.py +324 -0
  70. seedcode/core/providers/base.py +230 -0
  71. seedcode/core/providers/freemodel.py +931 -0
  72. seedcode/core/providers/ollama.py +262 -0
  73. seedcode/core/providers/openrouter.py +393 -0
  74. seedcode/core/streaming.py +21 -0
  75. seedcode/memory/__init__.py +8 -0
  76. seedcode/memory/manager.py +47 -0
  77. seedcode/memory/storage.py +38 -0
  78. seedcode/memory/store.py +257 -0
  79. seedcode/tools/__init__.py +35 -0
  80. seedcode/tools/base.py +179 -0
  81. seedcode/tools/desktop.py +371 -0
  82. seedcode/tools/filesystem.py +309 -0
  83. seedcode/tools/git.py +72 -0
  84. seedcode/tools/patch.py +170 -0
  85. seedcode/tools/permissions.py +288 -0
  86. seedcode/tools/search.py +137 -0
  87. seedcode/tools/terminal.py +200 -0
  88. seedcode/tools/textio.py +59 -0
  89. seedcode/ui/__init__.py +164 -0
  90. seedcode/ui/badges.py +64 -0
  91. seedcode/ui/banner.py +78 -0
  92. seedcode/ui/dashboard.py +197 -0
  93. seedcode/ui/dialog.py +62 -0
  94. seedcode/ui/fuzzy.py +128 -0
  95. seedcode/ui/layout.py +54 -0
  96. seedcode/ui/menu.py +61 -0
  97. seedcode/ui/palette.py +40 -0
  98. seedcode/ui/progress.py +41 -0
  99. seedcode/ui/prompts.py +16 -0
  100. seedcode/ui/renderer.py +36 -0
  101. seedcode/ui/searchbox.py +70 -0
  102. seedcode/ui/selector.py +514 -0
  103. seedcode/ui/statusbar.py +38 -0
  104. seedcode/ui/textbox.py +61 -0
  105. seedcode/ui/theme.py +204 -0
  106. seedcode/ui/tree.py +91 -0
  107. seedcode/utils/__init__.py +22 -0
  108. seedcode/utils/helpers.py +97 -0
  109. seedcode/utils/logger.py +65 -0
  110. seedcode_cli-6.1.5.dist-info/METADATA +368 -0
  111. seedcode_cli-6.1.5.dist-info/RECORD +114 -0
  112. seedcode_cli-6.1.5.dist-info/WHEEL +4 -0
  113. seedcode_cli-6.1.5.dist-info/entry_points.txt +2 -0
  114. seedcode_cli-6.1.5.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,368 @@
1
+ Metadata-Version: 2.5
2
+ Name: seedcode-cli
3
+ Version: 6.1.5
4
+ Summary: Seed Code — a premium terminal-based AI coding assistant. Plant ideas. Grow code.
5
+ Project-URL: Homepage, https://github.com/Alshahriar-07/seedcode-cli
6
+ Project-URL: Repository, https://github.com/Alshahriar-07/seedcode-cli
7
+ Project-URL: Documentation, https://github.com/Alshahriar-07/seedcode-cli#readme
8
+ Project-URL: Issues, https://github.com/Alshahriar-07/seedcode-cli/issues
9
+ Project-URL: Changelog, https://github.com/Alshahriar-07/seedcode-cli/releases
10
+ Author-email: Al Shahriar Sowan <github@eagox.studio>
11
+ License-Expression: MIT
12
+ License-File: LICENSE
13
+ Keywords: agent,ai,chat,cli,coding-assistant,ollama,seedcode,terminal
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Environment :: Console
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development
21
+ Classifier: Topic :: Terminals
22
+ Requires-Python: >=3.12
23
+ Requires-Dist: httpx>=0.27.0
24
+ Requires-Dist: openai>=1.40.0
25
+ Requires-Dist: prompt-toolkit>=3.0.43
26
+ Requires-Dist: pydantic>=2.6.0
27
+ Requires-Dist: rich>=13.7.0
28
+ Provides-Extra: browser
29
+ Requires-Dist: selenium>=4.18.0; extra == 'browser'
30
+ Requires-Dist: webdriver-manager>=4.0.1; extra == 'browser'
31
+ Provides-Extra: desktop
32
+ Requires-Dist: mss>=9.0.1; extra == 'desktop'
33
+ Requires-Dist: opencv-python>=4.9.0; extra == 'desktop'
34
+ Requires-Dist: pillow>=10.0.0; extra == 'desktop'
35
+ Requires-Dist: psutil>=5.9.0; extra == 'desktop'
36
+ Requires-Dist: pyautogui>=0.9.54; extra == 'desktop'
37
+ Requires-Dist: pygetwindow>=0.0.9; extra == 'desktop'
38
+ Requires-Dist: pytesseract>=0.3.10; extra == 'desktop'
39
+ Requires-Dist: uiautomation>=2.0.18; (sys_platform == 'win32') and extra == 'desktop'
40
+ Provides-Extra: dev
41
+ Requires-Dist: pytest-mock>=3.12.0; extra == 'dev'
42
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
43
+ Provides-Extra: vision
44
+ Requires-Dist: opencv-python>=4.9.0; extra == 'vision'
45
+ Requires-Dist: pytesseract>=0.3.10; extra == 'vision'
46
+ Description-Content-Type: text/markdown
47
+
48
+ # SeedCode CLI
49
+
50
+ > **Plant ideas. Grow code.**
51
+
52
+ SeedCode is a terminal-first AI coding assistant and desktop operator. It
53
+ combines streaming chat, project-aware coding tools, screen intelligence,
54
+ semantic UI actions, browser intelligence, and permission-gated computer
55
+ control in one focused workflow.
56
+
57
+ Use the model and provider that fit the task. Keep the work local when you
58
+ want to. Give the operator only the permissions it needs.
59
+
60
+ ## Why SeedCode
61
+
62
+ - **One workflow for code and computer tasks** — move from a code question to
63
+ a project edit, window inspection, browser extraction, or desktop action
64
+ without changing tools.
65
+ - **Provider-independent identity** — change providers or models without
66
+ losing SeedCode's local identity, settings, or memory.
67
+ - **Permission-aware by design** — read, workspace, and full-access modes
68
+ make control boundaries visible before an action runs.
69
+ - **Windows-ready packaging** — the self-contained installer includes the
70
+ application runtime and preserves the SeedCode brand.
71
+ - **Recoverable operations** — lifecycle checks, self-guard protection,
72
+ bounded retries, verification, and structured error handling keep failures
73
+ explicit instead of silently repeating actions.
74
+
75
+ ## Install
76
+
77
+ ### Windows installer
78
+
79
+ Download the latest `seedcode-cli-setup.exe` from the
80
+ [Releases page](https://github.com/Alshahriar-07/seedcode-cli/releases).
81
+ The installer:
82
+
83
+ - installs a self-contained `seedcode.exe`;
84
+ - adds SeedCode to the system `PATH`;
85
+ - creates Start Menu shortcuts;
86
+ - optionally creates a desktop shortcut; and
87
+ - does not require Python on the target machine.
88
+
89
+ ### PyPI
90
+
91
+ Requires **Python 3.12 or newer**:
92
+
93
+ ```bash
94
+ python -m pip install seedcode-cli
95
+ seedcode
96
+ ```
97
+
98
+ ### WinGet
99
+
100
+ When the package is available in the Microsoft community repository:
101
+
102
+ ```powershell
103
+ winget install SeedCode.CLI
104
+ ```
105
+
106
+ The repository's manifests are in
107
+ [`winget/manifests/s/SeedCode/CLI/`](winget/manifests/s/SeedCode/CLI/).
108
+
109
+ ## Quick start
110
+
111
+ Start the interactive application:
112
+
113
+ ```bash
114
+ seedcode
115
+ ```
116
+
117
+ The first-run flow helps you choose a provider, validate an API key, fetch
118
+ available models, and select a model. To check an installation without
119
+ starting the UI:
120
+
121
+ ```bash
122
+ seedcode --version
123
+ seedcode --help
124
+ ```
125
+
126
+ SeedCode supports:
127
+
128
+ | Provider | Best for |
129
+ | --- | --- |
130
+ | [OpenRouter](https://openrouter.ai) | A broad catalogue of free and paid models |
131
+ | FreeModel Claude | Claude-family models through FreeModel |
132
+ | FreeModel Codex | GPT/Codex models through FreeModel |
133
+ | [AeroLink](https://aerolink.lat) | Anthropic-compatible gateway access |
134
+ | [Ollama](https://ollama.com) | Local, key-free models |
135
+
136
+ API keys can be entered through the guided setup or supplied through
137
+ environment variables:
138
+
139
+ ```bash
140
+ export OPENROUTER_API_KEY="sk-or-..."
141
+ export FREEMODEL_API_KEY="fe_oa_..."
142
+ export AEROLINK_API_KEY="..."
143
+ ```
144
+
145
+ On Windows PowerShell, use `$env:OPENROUTER_API_KEY = "..."`.
146
+
147
+ ## Operator capabilities
148
+
149
+ Assist Mode unifies AI reasoning with controlled computer actions. The
150
+ operator stack includes:
151
+
152
+ ### Screen Intelligence Engine
153
+
154
+ - captures and inspects the current screen;
155
+ - resolves windows and controls through a detection ladder;
156
+ - combines accessibility metadata, geometry, OCR, and image refinement; and
157
+ - verifies the target before an action is committed.
158
+
159
+ ### Semantic UI actions
160
+
161
+ Actions target the meaning of an element rather than a brittle coordinate.
162
+ The resolver can work with accessible names, roles, text, window context, and
163
+ visual evidence before dispatching keyboard or mouse input.
164
+
165
+ ### Desktop application control
166
+
167
+ SeedCode can discover installed applications, inspect open windows, launch
168
+ known applications, and verify process/window state. Application installation
169
+ is permission-gated and uses the trusted `winget` path.
170
+
171
+ ### Web Intelligence
172
+
173
+ The browser engine supports browser discovery, DevTools/CDP connectivity,
174
+ page extraction, pop-up handling, and browser-oriented operator skills. Web
175
+ extraction requires the existing DevTools/CDP browser connection; it does not
176
+ silently create an uncontrolled browser session.
177
+
178
+ ### Memory and identity
179
+
180
+ - conversation history is saved locally;
181
+ - persistent memory can retain useful operator context;
182
+ - memory is stored per local SeedCode profile;
183
+ - identity remains stable when the active model or provider changes; and
184
+ - provider credentials remain isolated from one another.
185
+
186
+ ## Assist Mode and permissions
187
+
188
+ Inside SeedCode, enable the operator with:
189
+
190
+ ```text
191
+ /assist on
192
+ ```
193
+
194
+ `/agent` and `/desktop` remain compatibility aliases. Inspect the current
195
+ boundary with:
196
+
197
+ ```text
198
+ /permission
199
+ /computer
200
+ /tools
201
+ ```
202
+
203
+ Permission modes:
204
+
205
+ | Mode | Behavior |
206
+ | --- | --- |
207
+ | `read_only` | Inspect files, screens, windows, and state without mutations |
208
+ | `workspace` | Allow approved changes inside the active workspace |
209
+ | `full_access` | Allow broader computer and filesystem actions after confirmation |
210
+
211
+ Use the narrowest mode that can complete the task. Mutating actions are
212
+ subject to permission checks, lifecycle state, verification, and retry
213
+ limits.
214
+
215
+ ## Command reference
216
+
217
+ | Command | Purpose |
218
+ | --- | --- |
219
+ | `/help` | Search available commands |
220
+ | `/provider` | Switch the active AI provider |
221
+ | `/apikey` | Add, replace, remove, or validate a provider key |
222
+ | `/model` | Browse and select the provider's model catalogue |
223
+ | `/config` | Show current configuration |
224
+ | `/settings` | Open settings or change a named setting |
225
+ | `/assist` | Enable or disable Assist Mode |
226
+ | `/permission` | View or set the Assist permission mode |
227
+ | `/computer` | Show Computer Engine status and permissions |
228
+ | `/screenshot` | Capture a screenshot |
229
+ | `/windows` | List open windows |
230
+ | `/tools` | List tools available in Assist Mode |
231
+ | `/index` | Show a compact project tree |
232
+ | `/files` | Search project files |
233
+ | `/history` | Browse saved sessions |
234
+ | `/doctor` | Diagnose configuration, network, and provider health |
235
+ | `/theme` | Change the terminal theme |
236
+ | `/shortcuts` | Show keyboard shortcuts |
237
+ | `/reset` | Forget the current conversation context |
238
+ | `/clear` | Clear the screen |
239
+ | `/version` | Show the SeedCode version |
240
+ | `/exit` | Leave the current chat |
241
+
242
+ Useful keyboard shortcuts include `Ctrl+K` for the command palette,
243
+ `Ctrl+P` for project file search, `Ctrl+R` for history, `Ctrl+,` for
244
+ settings, and `Ctrl+/` for the shortcut reference.
245
+
246
+ ## Configuration and local data
247
+
248
+ SeedCode stores local state under:
249
+
250
+ ```text
251
+ ~/.seedcode/
252
+ ├── config.json provider and application settings
253
+ ├── history/ saved conversation sessions
254
+ ├── memory/ persistent local memory
255
+ └── logs/ rotating diagnostic logs
256
+ ```
257
+
258
+ Configuration and credentials are kept locally. Provider entries are isolated,
259
+ and environment variables take precedence over stored API keys. Logs are
260
+ designed for diagnostics and do not record API keys or message content.
261
+
262
+ The `doctor` command can check configuration, connectivity, provider health,
263
+ and available computer capabilities:
264
+
265
+ ```text
266
+ /doctor
267
+ ```
268
+
269
+ ## Platform support
270
+
271
+ - **Windows:** full desktop operator support, including UI automation, OCR,
272
+ application discovery, installer workflow, and browser integration.
273
+ - **Linux/macOS:** terminal chat, provider integrations, project tools, and
274
+ local configuration.
275
+ - **Browser extraction:** requires the user's existing DevTools/CDP browser
276
+ connection.
277
+
278
+ The desktop extra installs the computer-control dependencies:
279
+
280
+ ```bash
281
+ python -m pip install "seedcode-cli[desktop]"
282
+ ```
283
+
284
+ Optional WebDriver support is available for workflows that genuinely need an
285
+ isolated browser profile:
286
+
287
+ ```bash
288
+ python -m pip install "seedcode-cli[browser]"
289
+ ```
290
+
291
+ ## Development
292
+
293
+ Clone the repository and install an editable development environment:
294
+
295
+ ```bash
296
+ git clone https://github.com/Alshahriar-07/seedcode-cli.git
297
+ cd seedcode-cli
298
+ python -m pip install -e ".[dev]"
299
+ ```
300
+
301
+ The public entry points are:
302
+
303
+ ```bash
304
+ seedcode
305
+ python -m seedcode
306
+ seedcode --help
307
+ ```
308
+
309
+ ### Windows release build
310
+
311
+ The existing Windows pipeline generates branding assets, packages a
312
+ self-contained executable with PyInstaller, and compiles the Inno Setup
313
+ installer:
314
+
315
+ ```bat
316
+ scripts\windows\build.bat
317
+ ```
318
+
319
+ The build requires Python 3.12+, the project dependencies, PyInstaller, and
320
+ Inno Setup 6 (`ISCC.exe`). Build details and installer behavior are documented
321
+ in [`scripts/windows/README.md`](scripts/windows/README.md).
322
+
323
+ ### Python distributions
324
+
325
+ ```bash
326
+ python -m pip install build twine
327
+ python -m build
328
+ python -m twine check dist/*
329
+ ```
330
+
331
+ ## Release workflow
332
+
333
+ The version has one source of truth:
334
+ [`seedcode/__init__.py`](seedcode/__init__.py). Release automation uses the
335
+ same version for package metadata, the CLI, installer metadata, GitHub
336
+ releases, and WinGet manifests.
337
+
338
+ The release workflow:
339
+
340
+ 1. builds and validates Python distributions;
341
+ 2. builds the branded Windows installer;
342
+ 3. computes the installer checksum;
343
+ 4. generates WinGet manifests; and
344
+ 5. publishes the release assets.
345
+
346
+ ## Security model
347
+
348
+ SeedCode favors explicit capability boundaries:
349
+
350
+ - credentials stay local and provider-scoped;
351
+ - computer actions pass through permission checks;
352
+ - application installation uses `winget`;
353
+ - action targets are resolved and verified before dispatch;
354
+ - lifecycle/self-guard checks prevent unsafe operation states; and
355
+ - retry limits prevent uncontrolled repetition.
356
+
357
+ No automation system is risk-free. Review permissions before enabling Assist
358
+ Mode, especially when working in an unfamiliar project or with sensitive
359
+ applications.
360
+
361
+ ## Credits
362
+
363
+ - **Created by:** Al Shahriar Sowan
364
+ - **Publisher:** Eagox Studio
365
+
366
+ ## License
367
+
368
+ MIT — see [`LICENSE`](LICENSE).
@@ -0,0 +1,114 @@
1
+ seedcode/__init__.py,sha256=VqHZ-9er2K4YWG6jiZxdK-ycUEiuqGTPfp9H0oIxOYI,470
2
+ seedcode/__main__.py,sha256=9I_beEkqu4_-BYMjYp7DpyZrjDNrH2vcBFZjBnEQQtc,290
3
+ seedcode/app.py,sha256=5mC1NerSEjtIyPObvE0QD_85cEKsWS0d32tfhafI7Bk,19161
4
+ seedcode/cli.py,sha256=e9Wl2anbeYjuzQtwS7bK5mmRJEtkZstyBHPyUQwoZiA,2982
5
+ seedcode/apps/__init__.py,sha256=FfFJodhA1BNivPvCvh376sEAWW-Le8wpd1Bu7GlXMiI,1226
6
+ seedcode/apps/discovery.py,sha256=eqaVHszBKVUd-4kgKwOTDy24rcWVphMpoIFSjU0YfX8,9243
7
+ seedcode/apps/installer.py,sha256=HVztV2hh_z1p2eME9UnrublD_5R3RUcS0j0HuaScnU8,6151
8
+ seedcode/apps/launcher.py,sha256=ly1oBmw9RTMMqpWijhlrpj4OAgeurInt0ja18Y4uYaY,5789
9
+ seedcode/apps/verifier.py,sha256=QLLe9N2RqXsondu9cN4XNuN8qH811lHaFjBBuePqc84,4028
10
+ seedcode/assets/logo.txt,sha256=y-3fFHMCrrit1-RC8cp7D2KN0G2-LjoJUxPuYGbOkUE,1304
11
+ seedcode/commands/__init__.py,sha256=BWjhoJ-EryHdOzX1Z4xE0NUZkK-oIkvMz1hRY3Q-hQ0,2399
12
+ seedcode/commands/about.py,sha256=vYCXi7AVR3VNMww1cL4sDobCcQQasKoPqql9f0ASwMo,1283
13
+ seedcode/commands/agent.py,sha256=noUUMWfw9FrahEYu9ESilXoZyESRR5iLb0pfjg8Lu3c,3418
14
+ seedcode/commands/assist.py,sha256=gj2Gfrgipfn6cEhcIuDWhiNItRHVZBYCx0V3iQD0vwU,7662
15
+ seedcode/commands/clear.py,sha256=E9JxM9LiFCpFtjyfip0-Sc7ZKNJuKW2NgtKWOGNXfx8,647
16
+ seedcode/commands/desktop.py,sha256=Na5A_g-U4DYWMu3Get3Q8v-MyFD2Raw3315AgDUjWes,3538
17
+ seedcode/commands/doctor.py,sha256=wwBu8f61eEIxauXO89bljrBkODhirl8paAO9cfLy29E,5347
18
+ seedcode/commands/help.py,sha256=99EFduRAmAjv8ykc0Lb3z6xCHtZ3yZYj9y7F4DNZNRc,1985
19
+ seedcode/commands/history.py,sha256=sEgnhiAMPCwtiGxb9ttlVV_wfeZ7GlNsZQCRiaiue48,13219
20
+ seedcode/commands/palette.py,sha256=V4TthorBJnmNir2mJePsIT4rf4MCmNO08unTzls_jMA,4072
21
+ seedcode/commands/provider.py,sha256=sOFcjB6iC2PFOzHaIq_flyDMY7N9I3LUSNKzA7eVMbM,15781
22
+ seedcode/commands/theme.py,sha256=JR9qYPYDlXScv0QZ7fTy-WlMrYYWEtNeF41m72h-5Lg,2502
23
+ seedcode/computer/__init__.py,sha256=Y7gRnUvKT3oSJnQuoOhVIczheFWstbzTV4G1dkJK-_o,3099
24
+ seedcode/computer/browser.py,sha256=lJxX5MPYaC4wrrAX85Gtlh1Q1n_suc-2-7NHw-qc_28,10072
25
+ seedcode/computer/browser_cdp.py,sha256=viYTNEYl5vabyCL5S3UPzddU3pM2QZeJPeYDyoe_czY,20402
26
+ seedcode/computer/browser_engine.py,sha256=y4_N0IQDrVLQlsrVmq-SjyOj41IxGXeyOmFue1g9qac,23073
27
+ seedcode/computer/browser_extract.py,sha256=7oRcWQS5KO7RpXGmlQX144j1A02tcISFd_YZxUxn9Uc,10467
28
+ seedcode/computer/browser_popups.py,sha256=ftum7fb0HPG4P7Tb-99_oo3PU1HaRmoWR_EYyImgy2A,13730
29
+ seedcode/computer/browser_selenium.py,sha256=L9si2wb7unpa26_irQFj98YFh36qLE464_m1u2U0tGE,7334
30
+ seedcode/computer/browser_skills.py,sha256=1SwQfgdWgVJTbYRiP8IsDEXIVyi2rGyESdKGeLrj3ZI,9067
31
+ seedcode/computer/catalog.py,sha256=KYZwcMgrVWV1AIx4JsxnRcyh-pBIc7r49ag6tAz2S2U,8998
32
+ seedcode/computer/controller.py,sha256=QI1NXLW34Awv-dQJEaBB_zK5aOQylQXl8GjllU2K7XE,13846
33
+ seedcode/computer/dispatcher.py,sha256=-LtnuvppJVYDhHs0ZVyhVOT01_iZ6ZKIQw5peGTHSnA,11536
34
+ seedcode/computer/dpi.py,sha256=POAvYLtRiNNgVmymsLPBO-vgxWqa_8FtiAPHi7pw3L8,6566
35
+ seedcode/computer/engine.py,sha256=jtqUt6unJSGkRFzGIpgUPl2SwbEYVMBO96csVPy5FB4,4229
36
+ seedcode/computer/keyboard.py,sha256=h7R3jpFq-NgDTce78OjWPurEMJ5Lm46S-pSAE1lm-P8,3914
37
+ seedcode/computer/logbook.py,sha256=wXrkIAEf-EFO8hjoubl-LbcxlQNSOa1Tw2XXuwr5LJk,3735
38
+ seedcode/computer/mouse.py,sha256=TpWIdaIEH1uHJxHeYu2PsmrRAeQMsmYk9JlbAKHYKCU,1502
39
+ seedcode/computer/ocr.py,sha256=lslRTeCKSfrgTdJnIacOVRHtjdUnRYhZ_JoMgBmbTNM,7492
40
+ seedcode/computer/operator_skills.py,sha256=Kor4lN48JV7kFl0dASnDiJjCaKYhtnaHvFkZU-nI0EM,20331
41
+ seedcode/computer/permissions.py,sha256=Xcql042KtT7whEWNWuDKquNLIFLcqY1PeA1I3C2N9YY,8299
42
+ seedcode/computer/recovery.py,sha256=ke69GPvLGbfRVea9EnXzEz9EE4M2V6I9r4VXnTWE8Vw,4431
43
+ seedcode/computer/registry.py,sha256=pJqYZvtFSL8i0rcz4XedH6ZYYqWUfdKxD5WzeTWTAOw,3812
44
+ seedcode/computer/resolver.py,sha256=0l22-7_F14R_b2SCV3KWyH9LExdTs4JnLXM-TmEJOEc,17817
45
+ seedcode/computer/screen.py,sha256=KNl_gkPk3gaZiMXXZp5R7h_LTInKqmWTXDLyQmxkFm4,3790
46
+ seedcode/computer/screen_state.py,sha256=v0I4ICqckZzD9mXkwuldltegoM1zjBKi8QoPwXcqvkk,17124
47
+ seedcode/computer/selfguard.py,sha256=pckXAFNs-Oe8Y8q5h_zWSI9WCzdTCCe8Hgk8TVBZIhE,6990
48
+ seedcode/computer/semantic.py,sha256=AqBaWxzd4ExEZaYITPX1TpAq0lp1KX5XgvV6M8O_cGo,4203
49
+ seedcode/computer/skills.py,sha256=EWG-EE5sTMcbHzfGSH0XR_fzegaVdN-RBqLdMBZODzk,4994
50
+ seedcode/computer/state.py,sha256=v8VPRvEonXQzW44SmY2oDtJd2VOjeAYoFG589b0VUCk,7919
51
+ seedcode/computer/verifier.py,sha256=93YqvHnUuyw7dYLncn2ltEyzUBHFvTeOOYF_KqA7WzM,6923
52
+ seedcode/computer/vision.py,sha256=2gifFFwj4wr4kiGi7_XMdOdxDY4opdGa_1z4xjJ0pF0,12116
53
+ seedcode/computer/windows.py,sha256=j8Y6CzaO5o6MbLCZraCfS6qLqnSTX9PzlLooTw5OETg,7503
54
+ seedcode/config/__init__.py,sha256=tdZHEjPYUDZXCog7sPmdJXYfOMexLNHnkcpqmDEb-zw,275
55
+ seedcode/config/defaults.py,sha256=29a2q_sWSdKj_5H6AxZpxxtshoFPv0Ij7D1_oGthhaA,880
56
+ seedcode/config/manager.py,sha256=cJWB9ONvK3HqSS9gTkiZlMVKUuuBVnh0HZfYZ5tx5Ts,2210
57
+ seedcode/core/__init__.py,sha256=lpISiNFU_wV4XVX_stkNhLrmlag3uzP_Pvcz0uB0UFg,613
58
+ seedcode/core/agent.py,sha256=kIobsJZ2RYK9qTcBIP7E2dZY6qic_HFU2w4MUuNmWPQ,21916
59
+ seedcode/core/chat.py,sha256=zq-Ed3RI1KdcnkZZe86plw6Sxk2H1CeqJmhLUVshmZc,5050
60
+ seedcode/core/client.py,sha256=kHQKH7ngf3bKHb5udMDcfbHDqy21o-1oWokZc8EuGKM,283
61
+ seedcode/core/errors.py,sha256=RBAJYaPb5jXTyW5mmZgLI_z5eFfZMRrGyVJgwiGn2Os,7321
62
+ seedcode/core/identity.py,sha256=Fi9A9Wy5OLH3mJPh3LWOM1tX4rbMIP_w9dsTVegrRwM,3357
63
+ seedcode/core/identity_store.py,sha256=4WRMiccfuXQtJcpchccv_XxCVG1oYofavBZxedU5wSk,4205
64
+ seedcode/core/lifecycle.py,sha256=RcFPL0AYJHUjNjhtuZ5B-OB_hcgFslHUkQ2x89oC_iI,9340
65
+ seedcode/core/limits.py,sha256=nbsIDz7tGJDWfVETTIOGJTgxxsp6cge9Sw3qBesOMtA,1431
66
+ seedcode/core/models.py,sha256=dZrayCYYSJSegESQo9ipQpTeKwaOvB3beSu5p9RGgp4,14809
67
+ seedcode/core/project.py,sha256=xRckwCLmJ2H7XtFcYqYqssdR3U9ydv1Ls8OPV_pC5U4,3270
68
+ seedcode/core/streaming.py,sha256=r48G0l7FcMTw4bdNffNvpuFTdcA-mqgRVtaNOWltpnE,624
69
+ seedcode/core/providers/__init__.py,sha256=go_wuDO33rCCLfsGNTH85x2yjTg_YZY7D8LE6fz4WpM,1937
70
+ seedcode/core/providers/aerolink.py,sha256=EXK9GRSDXDd-AS-Tpjs4b5EN0iP_qRimSLfFAoNDTto,13207
71
+ seedcode/core/providers/base.py,sha256=0mddHLzfLEr3_-T46cE_Dg574ND6Xks0VeB5laZoap8,8241
72
+ seedcode/core/providers/freemodel.py,sha256=VOfFUm3Bvzetlf_Lq3GBKZicDRWYwFH4b5C7I2DcowI,38151
73
+ seedcode/core/providers/ollama.py,sha256=IMgcFLTZke75eFBrhuXMYAly7lUvWEuhDaepIvvJWnk,10480
74
+ seedcode/core/providers/openrouter.py,sha256=7dzVWnrsV9rsZOXzASaL28fkSYF92GO4IXEMEBQWY1o,15160
75
+ seedcode/memory/__init__.py,sha256=-y0n2r6VoHzi9qmtwKzNi3FUzFYqVAZB4pxg5xo0YzI,289
76
+ seedcode/memory/manager.py,sha256=Pu_4ZalhVuuFCRXacfYG6zF7wIXA6DcEpO-sCwGlIsc,1651
77
+ seedcode/memory/storage.py,sha256=NpQ4_HXk_de4mL-5aIm4ZM8dEAuetQ1_tIZ3paqin5s,1344
78
+ seedcode/memory/store.py,sha256=B_OEPyUUK6427QHVZ7Yyi8CrJvh3WaX49JPbP2mCBEQ,9778
79
+ seedcode/tools/__init__.py,sha256=ITOq4YRbirRSTatsdrf6emq8CYAyyWmSYkXCO24L6l4,1105
80
+ seedcode/tools/base.py,sha256=wn80FswW_HZtrnaOrxqzOZKviUGkPDhts_qJ7gt2xzs,6061
81
+ seedcode/tools/desktop.py,sha256=RGlTGRG55ApwdFs5GbjrGIui-qnbJeYVF9VBG2Qb1dQ,13811
82
+ seedcode/tools/filesystem.py,sha256=12QXeOgyYDD_NpSjHogYCDk7hRsa2knXd6BI8hXtyUA,11365
83
+ seedcode/tools/git.py,sha256=6noNn85DGFt0qSVaXwhIwQVDmGioxc7xJ6ovRuo-tGU,2788
84
+ seedcode/tools/patch.py,sha256=w6ys4RxorDqdb3Um-lSjMI6Tcu3RGj3CbBc2n4Lb6_U,6121
85
+ seedcode/tools/permissions.py,sha256=3ByMIoNeuyL8IBLs6-YUepNvnPdQszsswuRSLf31uq0,11831
86
+ seedcode/tools/search.py,sha256=yYJkcrmmA11Trs9OSQxeVU-4gUN-GjTlTqoJSuEPP_o,4596
87
+ seedcode/tools/terminal.py,sha256=4P15Ptp3t6t2shqndFSAcbtVri-ocUQ3EsKGlyZv7Ao,6878
88
+ seedcode/tools/textio.py,sha256=MiigCyE4HyvPEOHX46-3vac0ay61TAl-HvAGLMQNaYE,2051
89
+ seedcode/ui/__init__.py,sha256=YH3CzUrt6tcK3wi0vUv5rZrGBVhXnnUT-6v52cWVx3s,6197
90
+ seedcode/ui/badges.py,sha256=wNQinJssf141t-FYzIF8RoGced_rg9WqAIFgxmxrxDk,2190
91
+ seedcode/ui/banner.py,sha256=mrs-6H_XCm8IamGcXZllOihLcohUVysN1S4J3Jqvg5k,3683
92
+ seedcode/ui/dashboard.py,sha256=UDmCrjPmyQHUhQQ4yr598IUZcMu6D_jkyiwuY1qLv-w,8267
93
+ seedcode/ui/dialog.py,sha256=4XtkwqdnY80Cx5tMn0O6Zw89P9OdV9MCrfJaJTgSkNM,1758
94
+ seedcode/ui/fuzzy.py,sha256=AZ7mPJDrhcHnB9KxkOScdisk5jX-neU-58bEoQdKmks,4301
95
+ seedcode/ui/layout.py,sha256=Uaspf0F_7ivi8AdGzfrMG2YH5Ow4TKTg-mbPY9U7PRY,1695
96
+ seedcode/ui/menu.py,sha256=PST0K223PWIGnzzorEE5UmBNhEMTnThVnKFa5nrXA-U,1550
97
+ seedcode/ui/palette.py,sha256=hZl84OjN4wB72loYm2G8v6Vc9CIncUSeXW1coEfvDmo,1065
98
+ seedcode/ui/progress.py,sha256=Xf-xLDYfrNtJmNNVTNNc90DMyp-_Z-KoIBmSFo4Tnp0,1407
99
+ seedcode/ui/prompts.py,sha256=eB2AezHDwRD8XvcnzigZ8jV7b7u2Y8ZGZ7MaVhcP8m8,572
100
+ seedcode/ui/renderer.py,sha256=U-rkFTYAv-OeNjAGH1oJQVIwAxyVZipTDarlCc31iZA,1015
101
+ seedcode/ui/searchbox.py,sha256=g-eeAtelWqZ_enVnd3S6k6ELGu1VxlvLJuXx2Tj9XRw,2155
102
+ seedcode/ui/selector.py,sha256=qRlwjWDGbYkyDTL1RZpX_BrNlDnw4LYuOfQQmBSey2s,18691
103
+ seedcode/ui/statusbar.py,sha256=lT2wqL-7eYqhPThj86SMeF5nPBr7dkf67zRDYddMFlA,1436
104
+ seedcode/ui/textbox.py,sha256=-xDEr6vTvKroO5A-aYbQiYDAAzOfkjA4FLwofxi6KgQ,1738
105
+ seedcode/ui/theme.py,sha256=KbXVMRAKZ5SA73kowml5HO4R0ZzBpFmVC35NF6IelVo,6098
106
+ seedcode/ui/tree.py,sha256=DTu0TtDlakdCUxwjZPQ1GRpqEeoDximiU0g-OTQRAW0,2971
107
+ seedcode/utils/__init__.py,sha256=yz9mgpXx3qmMQDKcEACktzjFO3xFeBYROTOxNaPBDWU,416
108
+ seedcode/utils/helpers.py,sha256=vhYlqhuFd-ebMIUe7GBmB0rlFnGC3cNwykSB8plCfio,3078
109
+ seedcode/utils/logger.py,sha256=xfaRw7wCegs8OhKVfJSMRCVMRa7PyJ2iG_4oQwe0ePo,2078
110
+ seedcode_cli-6.1.5.dist-info/METADATA,sha256=pjI9nWsFyTJUWDaBtk4HpOXnQk0jclaf-3NzsFsxKE8,11778
111
+ seedcode_cli-6.1.5.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
112
+ seedcode_cli-6.1.5.dist-info/entry_points.txt,sha256=5f7jCtkJTTkxG47y4iKXV2hPtBcpeef6GKHhLvuhjao,47
113
+ seedcode_cli-6.1.5.dist-info/licenses/LICENSE,sha256=OvHjrIm9pyF0D4pCvIAXSj7Dt5nBXge9jlQHIeNoCHM,1074
114
+ seedcode_cli-6.1.5.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ seedcode = seedcode.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Al shahriar sowan
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.