specsmith 0.3.6.dev182__py3-none-any.whl → 0.3.6.dev185__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.
- specsmith/upgrader.py +20 -10
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/METADATA +16 -6
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/RECORD +7 -7
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/WHEEL +0 -0
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/entry_points.txt +0 -0
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/licenses/LICENSE +0 -0
- {specsmith-0.3.6.dev182.dist-info → specsmith-0.3.6.dev185.dist-info}/top_level.txt +0 -0
specsmith/upgrader.py
CHANGED
|
@@ -235,17 +235,27 @@ def _sync_full(
|
|
|
235
235
|
except ValueError:
|
|
236
236
|
pass
|
|
237
237
|
|
|
238
|
-
# 3. VCS CI configs —
|
|
238
|
+
# 3. VCS CI configs — create only if missing (never overwrite user CI)
|
|
239
239
|
if config.vcs_platform:
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
240
|
+
ci_exists = (
|
|
241
|
+
(
|
|
242
|
+
list((root / ".github" / "workflows").glob("*.yml"))
|
|
243
|
+
if (root / ".github" / "workflows").is_dir()
|
|
244
|
+
else []
|
|
245
|
+
)
|
|
246
|
+
or (root / ".gitlab-ci.yml").exists()
|
|
247
|
+
or (root / "bitbucket-pipelines.yml").exists()
|
|
248
|
+
)
|
|
249
|
+
if not ci_exists:
|
|
250
|
+
try:
|
|
251
|
+
from specsmith.vcs import get_platform
|
|
252
|
+
|
|
253
|
+
platform = get_platform(config.vcs_platform)
|
|
254
|
+
files = platform.generate_all(config, root)
|
|
255
|
+
for f in files:
|
|
256
|
+
synced.append(str(f.relative_to(root)) + " (created)")
|
|
257
|
+
except ValueError:
|
|
258
|
+
pass
|
|
249
259
|
|
|
250
260
|
# 4. Community files — create only if missing
|
|
251
261
|
for tmpl_name, output_rel in _build_community_files(config):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: specsmith
|
|
3
|
-
Version: 0.3.6.
|
|
3
|
+
Version: 0.3.6.dev185
|
|
4
4
|
Summary: Applied Epistemic Engineering toolkit — AEE agent sessions, execution profiles, FPGA/HDL governance, tool installer, 50+ CLI commands.
|
|
5
5
|
Author: BitConcepts
|
|
6
6
|
License-Expression: MIT
|
|
@@ -224,12 +224,15 @@ The **specsmith AEE Workbench** VS Code extension is the flagship client:
|
|
|
224
224
|
|
|
225
225
|
## Supporting specsmith
|
|
226
226
|
|
|
227
|
-
|
|
227
|
+
specsmith is open source and built by a small team. Every bit of support helps:
|
|
228
228
|
|
|
229
|
-
- **[
|
|
230
|
-
- **
|
|
231
|
-
- **
|
|
232
|
-
- **
|
|
229
|
+
- ⭐ **Star** [specsmith](https://github.com/BitConcepts/specsmith) and [specsmith-vscode](https://github.com/BitConcepts/specsmith-vscode) on GitHub
|
|
230
|
+
- 📣 **Tell your friends and colleagues** — word of mouth is our best marketing
|
|
231
|
+
- 🐛 **Report bugs** via [GitHub Issues](https://github.com/BitConcepts/specsmith/issues) — even small ones help
|
|
232
|
+
- 💡 **Suggest features** via [GitHub Discussions](https://github.com/BitConcepts/specsmith/discussions) — we read every suggestion
|
|
233
|
+
- 🔧 **Fix bugs and contribute** — see [CONTRIBUTING.md](CONTRIBUTING.md); PRs welcome
|
|
234
|
+
- 📝 **Write about specsmith** — blog posts, tutorials, and talks help the community grow
|
|
235
|
+
- ❤️ **[Sponsor BitConcepts](https://github.com/sponsors/BitConcepts)** — directly funds development
|
|
233
236
|
|
|
234
237
|
---
|
|
235
238
|
|
|
@@ -344,6 +347,13 @@ Use cases: linguistics research, compliance pipelines, AI alignment, patent pros
|
|
|
344
347
|
|
|
345
348
|
---
|
|
346
349
|
|
|
350
|
+
## The specsmith Bootstrap
|
|
351
|
+
|
|
352
|
+
specsmith governs itself — the specsmith repo is a specsmith-managed project. Run `specsmith audit`
|
|
353
|
+
in this repo to check its governance health. This means every feature we add to specsmith is
|
|
354
|
+
immediately dogfooded on specsmith itself. The [VS Code extension](https://github.com/BitConcepts/specsmith-vscode)
|
|
355
|
+
is developed alongside it as the flagship client.
|
|
356
|
+
|
|
347
357
|
## Documentation
|
|
348
358
|
|
|
349
359
|
**[specsmith.readthedocs.io](https://specsmith.readthedocs.io)** — Full manual: AEE primer,
|
|
@@ -40,7 +40,7 @@ specsmith/toolrules.py,sha256=Zi5IZ5Sjd-n8eAGVAxXmV5-rIWQrDlhRhTq_yRTOuqw,24657
|
|
|
40
40
|
specsmith/tools.py,sha256=7QgL7r8pFNSuefD4ulVwuOmfA7dC8Dt0s1YKQmGyG9w,15448
|
|
41
41
|
specsmith/trace.py,sha256=XuS-miv4WHt6yCniyytjZcIvgnjZj-DRxDQMHy6eNTc,10397
|
|
42
42
|
specsmith/updater.py,sha256=BWtXK47tIhmpw4zvy0UtlAoL314fZIZWbZ50FFOkBPo,6063
|
|
43
|
-
specsmith/upgrader.py,sha256=
|
|
43
|
+
specsmith/upgrader.py,sha256=8-8_fy6a8exaaSlAmbCQ1zEqLpwSQptPEehDvv1ClCc,14289
|
|
44
44
|
specsmith/validator.py,sha256=nJDzD0a6JmShuZi0mADxNVhjN_n93Kpjj4WySbYlGco,10627
|
|
45
45
|
specsmith/vcs_commands.py,sha256=QZnrhR9d7l2_vKKTf8BvlTOYehTJkJuRcyXIvDXcnIg,10336
|
|
46
46
|
specsmith/wireframes.py,sha256=hU3ohcylJAe3yZvo4oGu_2QG5sa3_lLZOgEO3o4vywU,2763
|
|
@@ -140,9 +140,9 @@ specsmith/vcs/base.py,sha256=IzyC3xtO8npaNbGZoAzgQyc9iSKleJFnp4GA0otTJfU,4098
|
|
|
140
140
|
specsmith/vcs/bitbucket.py,sha256=U5cGqpybuPngjpu5GDM8aTZPm9bvZf1099OSBwU_Lro,5014
|
|
141
141
|
specsmith/vcs/github.py,sha256=OVTLs9egmM_Smrxm4-Lo525Pi59x0PDMOOwqNNiM7lA,11995
|
|
142
142
|
specsmith/vcs/gitlab.py,sha256=fDYYoDBic0KBnD_QWYf_K3GmdZOEartLXhzNXf4D4-0,5136
|
|
143
|
-
specsmith-0.3.6.
|
|
144
|
-
specsmith-0.3.6.
|
|
145
|
-
specsmith-0.3.6.
|
|
146
|
-
specsmith-0.3.6.
|
|
147
|
-
specsmith-0.3.6.
|
|
148
|
-
specsmith-0.3.6.
|
|
143
|
+
specsmith-0.3.6.dev185.dist-info/licenses/LICENSE,sha256=jCLkf20ZMVU47ykbfIxw-5eukhnaeIsxSflw07hVNlY,1074
|
|
144
|
+
specsmith-0.3.6.dev185.dist-info/METADATA,sha256=UcsQ8SHtWwlvJUaU4YTpHFO_kbqRyRPWgfOVwVp8Ydk,14573
|
|
145
|
+
specsmith-0.3.6.dev185.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
146
|
+
specsmith-0.3.6.dev185.dist-info/entry_points.txt,sha256=X_zb8_KvBONFGgkQYKIbW1UtWd3Ck7E11l3SyHO7omA,49
|
|
147
|
+
specsmith-0.3.6.dev185.dist-info/top_level.txt,sha256=wu2UpLt3wnh0TwSBmoox7kOMoGfzD6mUs22ihAcEx4E,20
|
|
148
|
+
specsmith-0.3.6.dev185.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|