equa-spec 0.7.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.
Files changed (84) hide show
  1. equa_spec-0.7.0.dist-info/METADATA +134 -0
  2. equa_spec-0.7.0.dist-info/RECORD +84 -0
  3. equa_spec-0.7.0.dist-info/WHEEL +4 -0
  4. equa_spec-0.7.0.dist-info/entry_points.txt +2 -0
  5. equa_spec-0.7.0.dist-info/licenses/LICENSE +22 -0
  6. specify_cli/__init__.py +3024 -0
  7. specify_cli/_data/__init__.py +1 -0
  8. specify_cli/_data/scripts/bash/analyze-domain.sh +218 -0
  9. specify_cli/_data/scripts/bash/check-concurrent-runs.sh +133 -0
  10. specify_cli/_data/scripts/bash/check-prerequisites.sh +166 -0
  11. specify_cli/_data/scripts/bash/close-spec.sh +178 -0
  12. specify_cli/_data/scripts/bash/common.sh +356 -0
  13. specify_cli/_data/scripts/bash/create-new-feature.sh +313 -0
  14. specify_cli/_data/scripts/bash/generate-scorecard.sh +559 -0
  15. specify_cli/_data/scripts/bash/lint-config-refs.sh +44 -0
  16. specify_cli/_data/scripts/bash/pipeline-state.sh +347 -0
  17. specify_cli/_data/scripts/bash/run-baseline-tests.sh +207 -0
  18. specify_cli/_data/scripts/bash/run-closure-checks.sh +206 -0
  19. specify_cli/_data/scripts/bash/score-docs-ci.sh +115 -0
  20. specify_cli/_data/scripts/bash/setup-plan.sh +61 -0
  21. specify_cli/_data/scripts/bash/speckit-bootstrap.sh +140 -0
  22. specify_cli/_data/scripts/bash/speckit-common.sh +230 -0
  23. specify_cli/_data/scripts/bash/speckit-link.sh +221 -0
  24. specify_cli/_data/scripts/bash/speckit-pin.sh +109 -0
  25. specify_cli/_data/scripts/bash/speckit-sync.sh +82 -0
  26. specify_cli/_data/scripts/bash/update-agent-context.sh +829 -0
  27. specify_cli/_data/scripts/powershell/analyze-domain.ps1 +240 -0
  28. specify_cli/_data/scripts/powershell/check-concurrent-runs.ps1 +124 -0
  29. specify_cli/_data/scripts/powershell/check-prerequisites.ps1 +148 -0
  30. specify_cli/_data/scripts/powershell/close-spec.ps1 +161 -0
  31. specify_cli/_data/scripts/powershell/common.ps1 +254 -0
  32. specify_cli/_data/scripts/powershell/create-new-feature.ps1 +305 -0
  33. specify_cli/_data/scripts/powershell/generate-scorecard.ps1 +353 -0
  34. specify_cli/_data/scripts/powershell/lint-config-refs.ps1 +43 -0
  35. specify_cli/_data/scripts/powershell/pipeline-state.ps1 +325 -0
  36. specify_cli/_data/scripts/powershell/run-baseline-tests.ps1 +182 -0
  37. specify_cli/_data/scripts/powershell/run-closure-checks.ps1 +159 -0
  38. specify_cli/_data/scripts/powershell/score-docs-ci.ps1 +103 -0
  39. specify_cli/_data/scripts/powershell/setup-plan.ps1 +61 -0
  40. specify_cli/_data/scripts/powershell/speckit-bootstrap.ps1 +84 -0
  41. specify_cli/_data/scripts/powershell/speckit-common.ps1 +104 -0
  42. specify_cli/_data/scripts/powershell/speckit-link.ps1 +101 -0
  43. specify_cli/_data/scripts/powershell/speckit-pin.ps1 +68 -0
  44. specify_cli/_data/scripts/powershell/speckit-sync.ps1 +52 -0
  45. specify_cli/_data/scripts/powershell/update-agent-context.ps1 +463 -0
  46. specify_cli/_data/templates/agent-file-template.md +28 -0
  47. specify_cli/_data/templates/audit-trail-template.md +48 -0
  48. specify_cli/_data/templates/checklist-template.md +40 -0
  49. specify_cli/_data/templates/closure-report-template.md +60 -0
  50. specify_cli/_data/templates/commands/analyze-domain.md +124 -0
  51. specify_cli/_data/templates/commands/analyze.md +187 -0
  52. specify_cli/_data/templates/commands/checklist.md +298 -0
  53. specify_cli/_data/templates/commands/clarify.md +184 -0
  54. specify_cli/_data/templates/commands/close.md +304 -0
  55. specify_cli/_data/templates/commands/constitution.md +84 -0
  56. specify_cli/_data/templates/commands/create-pull-request.md +243 -0
  57. specify_cli/_data/templates/commands/diagnose.md +249 -0
  58. specify_cli/_data/templates/commands/docs.md +200 -0
  59. specify_cli/_data/templates/commands/implement.md +212 -0
  60. specify_cli/_data/templates/commands/pipeline.md +1062 -0
  61. specify_cli/_data/templates/commands/plan.md +106 -0
  62. specify_cli/_data/templates/commands/specify.md +304 -0
  63. specify_cli/_data/templates/commands/tasks.md +203 -0
  64. specify_cli/_data/templates/commands/taskstoissues.md +33 -0
  65. specify_cli/_data/templates/commands/test.md +369 -0
  66. specify_cli/_data/templates/config-template.yml +39 -0
  67. specify_cli/_data/templates/constitution-template.md +66 -0
  68. specify_cli/_data/templates/diagnose-template.md +123 -0
  69. specify_cli/_data/templates/examples/override-example.md +73 -0
  70. specify_cli/_data/templates/micro-constitution-template.md +43 -0
  71. specify_cli/_data/templates/plan-template.md +104 -0
  72. specify_cli/_data/templates/scorecard-template.md +43 -0
  73. specify_cli/_data/templates/spec-template.md +118 -0
  74. specify_cli/_data/templates/tasks-template.md +251 -0
  75. specify_cli/_data/templates/vscode-settings.json +14 -0
  76. specify_cli/_package_data.py +64 -0
  77. specify_cli/_pipeline.py +545 -0
  78. specify_cli/domain_analysis.py +659 -0
  79. specify_cli/domain_config.py +392 -0
  80. specify_cli/error_handling.py +392 -0
  81. specify_cli/extensions.py +1814 -0
  82. specify_cli/interactive_domain_analysis.py +631 -0
  83. specify_cli/mcp_enhancements.py +66 -0
  84. specify_cli/template_populator.py +314 -0
@@ -0,0 +1,134 @@
1
+ Metadata-Version: 2.4
2
+ Name: equa-spec
3
+ Version: 0.7.0
4
+ Summary: Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD).
5
+ License: MIT
6
+ License-File: LICENSE
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Topic :: Software Development :: Code Generators
16
+ Classifier: Topic :: Software Development :: Quality Assurance
17
+ Requires-Python: >=3.11
18
+ Requires-Dist: click>=8.1
19
+ Requires-Dist: httpx[socks]
20
+ Requires-Dist: packaging>=23.0
21
+ Requires-Dist: platformdirs
22
+ Requires-Dist: pyyaml>=6.0
23
+ Requires-Dist: readchar
24
+ Requires-Dist: rich
25
+ Requires-Dist: truststore>=0.10.4
26
+ Requires-Dist: typer
27
+ Provides-Extra: mcp
28
+ Requires-Dist: fastmcp>=1.0.0; extra == 'mcp'
29
+ Requires-Dist: gitpython>=3.1.0; extra == 'mcp'
30
+ Requires-Dist: pydantic>=2.0.0; extra == 'mcp'
31
+ Provides-Extra: test
32
+ Requires-Dist: pytest-cov>=4.0; extra == 'test'
33
+ Requires-Dist: pytest>=7.0; extra == 'test'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Spec Kit
37
+
38
+ **A CLI and template system for Specification-Driven Development (SDD)**
39
+
40
+ Bootstrap projects with structured specifications, implementation plans, and task breakdowns that AI coding agents can execute.
41
+
42
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
43
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
44
+ [![Cross-Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey)](#)
45
+
46
+ ---
47
+
48
+ ## What is Spec Kit?
49
+
50
+ Spec Kit provides a methodology and toolchain where **specifications drive implementation**, not the other way around. Instead of writing code and documenting after the fact, you define what you want in structured specs, and AI agents generate implementation from those specs.
51
+
52
+ The core workflow:
53
+
54
+ 1. **`/speckit.constitution`** — Define project principles and architectural constraints *(once per project)*
55
+ 2. **`/speckit.specify`** — Describe a feature in natural language, get a structured specification
56
+ 3. **`/speckit.plan`** — Generate a technical implementation plan from the spec
57
+ 4. **`/speckit.tasks`** — Break the plan into dependency-ordered, executable tasks
58
+ 5. **`/speckit.implement`** — Execute the task list
59
+
60
+ See the [pipeline diagram](docs/pipeline.md) for all 10 steps including optional quality gates (`/speckit.clarify`, `/speckit.analyze`, `/speckit.test`).
61
+
62
+ ## Key Features
63
+
64
+ - **Template System** — Structured templates for specs, plans, tasks, checklists, and project constitutions
65
+ - **Multi-Agent Support** — Works with Claude Code, GitHub Copilot, Gemini CLI, Cursor, Codex, Windsurf, and 12+ other AI agents
66
+ - **Domain Analysis** — Extract business entities, rules, and integration patterns from JSON/CSV data files
67
+ - **Extension System** — Plugin architecture with manifest schema, official + community catalogs
68
+ - **Cross-Platform** — Every automation script has both Bash and PowerShell variants
69
+ - **MCP Server** — Expose spec-kit tools via the Model Context Protocol
70
+
71
+ ## Quick Start
72
+
73
+ ### Prerequisites
74
+
75
+ - Git
76
+ - Access to `EQUAStart/spec-kit-template` (org member)
77
+ - An AI coding agent (Claude Code, Copilot, Gemini CLI, etc.)
78
+
79
+ ### Connect a Project (Recommended)
80
+
81
+ ```bash
82
+ # From your project root — adds .speckit/ submodule + creates symlinks
83
+ /path/to/spec-kit-template/scripts/bash/speckit-bootstrap.sh
84
+
85
+ # Or with explicit remote
86
+ speckit-bootstrap.sh --remote https://github.com/EQUAStart/spec-kit-template.git
87
+ ```
88
+
89
+ This adds the toolkit as a submodule and creates symlinks. **Your toolkit auto-syncs** with upstream on every `/speckit.*` command — no manual updates needed. See the [installation guide](docs/installation.md) to compare install methods.
90
+
91
+ ## Project Structure
92
+
93
+ ```
94
+ spec-kit-main/
95
+ ├── src/
96
+ │ ├── specify_cli/ # CLI application (Typer + Rich)
97
+ │ └── speckit_mcp/ # MCP server (FastMCP)
98
+ ├── templates/ # Master SDD templates
99
+ │ ├── spec-template.md # Feature specification
100
+ │ ├── plan-template.md # Implementation plan
101
+ │ ├── tasks-template.md # Task breakdown
102
+ │ ├── checklist-template.md # Quality checklist
103
+ │ ├── constitution-template.md # Project constitution
104
+ │ └── commands/ # AI agent slash commands
105
+ ├── extensions/ # Extension system + catalogs
106
+ ├── scripts/ # Bash + PowerShell automation
107
+ ├── sample-data/ # Example datasets (financial, ecommerce, CRM)
108
+ ├── tests/ # Pytest test suite
109
+ └── docs/ # Documentation (DocFX)
110
+ ```
111
+
112
+ ## The SDD Methodology
113
+
114
+ Spec Kit implements Specification-Driven Development — a methodology where specifications are the primary artifact and code is the generated output. See [spec-driven.md](spec-driven.md) for the full philosophy.
115
+
116
+ Core principles:
117
+ - **Specifications as the source of truth** — code serves specifications, not the other way around
118
+ - **Executable specifications** — precise enough to generate working systems
119
+ - **Constitutional governance** — immutable architectural principles (Articles I-IX) enforced through template gates
120
+ - **Test-first thinking** — test scenarios are part of the specification, not an afterthought
121
+
122
+ ## Documentation
123
+
124
+ - [Quick Start Guide](docs/quickstart.md) — Step-by-step SDD workflow
125
+ - [Installation](docs/installation.md) — Connecting to the shared toolkit
126
+ - [Adding to an Existing Project](docs/existing-project.md) — Bootstrapping, overrides, CI/CD
127
+ - [Upgrading & Syncing](docs/upgrade.md) — Auto-sync, pinning, troubleshooting
128
+ - [Local Development](docs/local-development.md) — Contributing and iterating locally
129
+ - [Domain Analysis Usage](extensions/specify-mcp/USAGE.md) — Automated entity extraction from data files
130
+ - [Extension Development](extensions/EXTENSION-DEVELOPMENT-GUIDE.md) — Building spec-kit extensions
131
+
132
+ ## License
133
+
134
+ This project is licensed under the MIT License — see [LICENSE](LICENSE) for details.
@@ -0,0 +1,84 @@
1
+ specify_cli/__init__.py,sha256=z7i7jD6T4XbIxIL9tgqxzzEzHDWZGeI6DtjDeFk3-pU,123963
2
+ specify_cli/_package_data.py,sha256=f35sasQxjYZNqh1vEgEXhv0YcXlmCCQmVZ6AHobZqmA,2156
3
+ specify_cli/_pipeline.py,sha256=dqYHb7Ktle0XKzYoiAHW7Rgr7PdSBJ0Ui4Af6aPb_20,20580
4
+ specify_cli/domain_analysis.py,sha256=NmhEtHQkKrHD9dUBhRrbKM2zxZAX_BVBQzHHccnBVDo,26151
5
+ specify_cli/domain_config.py,sha256=ZdBxg-BjqkFUlgw8jyR_47gvHbi93vZG0AjsblFXOaY,16472
6
+ specify_cli/error_handling.py,sha256=VsFNBTY-fUjwQE6h3KO8byYRTabDCrlnOiiUKKBMhjQ,14628
7
+ specify_cli/extensions.py,sha256=CWFbW6mBq7WVoiCKL0Y3qabaec3DnVbsW2lizhYmvtw,60710
8
+ specify_cli/interactive_domain_analysis.py,sha256=wP-S3B_sNwzksHYbxV1nPnKcwnUdV8fZou3NOYYHC5c,25278
9
+ specify_cli/mcp_enhancements.py,sha256=XGoRnEtQo97NapTfSEZgFjwTbcXseZlbaf0at1IKpeY,2193
10
+ specify_cli/template_populator.py,sha256=wvaBcX2uNqX_Qb4D73mq5E-IoOHGjo8AByPWcq6MPuk,12111
11
+ specify_cli/_data/__init__.py,sha256=_Ue-PpsBjV5mB9K11GlM2vhyOKIwHXuO4fgCdr8eorc,81
12
+ specify_cli/_data/templates/agent-file-template.md,sha256=Ve1DjC6GFETvIvRf5SOPPr8NwctuUwZ9cjL7v0zoKJI,464
13
+ specify_cli/_data/templates/audit-trail-template.md,sha256=zXUjzDM8-jBkHk2JyAwtHRn9CtRbS1OAGAMTgmynrJU,1647
14
+ specify_cli/_data/templates/checklist-template.md,sha256=MS7ugpHfqYSyH5Xd0Mp3jnofCzpkv8Rw15dio-P117g,1312
15
+ specify_cli/_data/templates/closure-report-template.md,sha256=QRyS8zEcgoCB99Xe696mvJZXU7Tp48uZEatvNx7bz_k,1872
16
+ specify_cli/_data/templates/config-template.yml,sha256=zrXAulR7vxKuD38Suv8mCyNIZjjcsVoxEYKyexbz8Lo,1341
17
+ specify_cli/_data/templates/constitution-template.md,sha256=AQW-OHWIa5IxFTHk-7DFGg4Y6HAuGLjhQfIAIsD6aWE,3373
18
+ specify_cli/_data/templates/diagnose-template.md,sha256=FwBwP9bwYSMDbLe666r9kGGsCvPSSt9ZUYc64OsqHeQ,3229
19
+ specify_cli/_data/templates/micro-constitution-template.md,sha256=CD57Tmw8Ab79xNXfPncgXX_8rWABDo1pnhc7tKPxxSs,1451
20
+ specify_cli/_data/templates/plan-template.md,sha256=hz6Esib-PSSv4oBGkxsg25u7khA2ZCjclYpRU0ntbmg,3708
21
+ specify_cli/_data/templates/scorecard-template.md,sha256=wZ8l7KpYEOb4Q0qzB9SiuETRUIsmhTjIKm6eM9QCbcI,1942
22
+ specify_cli/_data/templates/spec-template.md,sha256=ihSmpRzS93gQVw8YRkM__wnm3zO06lr6905iZd5C1po,4082
23
+ specify_cli/_data/templates/tasks-template.md,sha256=Xakqwfv1vi-QGKUGRJeZW_NZJ2HMtrOVFQPGPYUSl-g,9177
24
+ specify_cli/_data/templates/vscode-settings.json,sha256=xngtZ_x2uRKIA7AyR93QFdVCpXTugKT-CsokKap7_gg,351
25
+ specify_cli/_data/templates/commands/analyze-domain.md,sha256=dUtwlnJaupazVljtGgdiY9OCcr2_Wz1J4ndji-Xi2us,5185
26
+ specify_cli/_data/templates/commands/analyze.md,sha256=0w8PBQxwix2pe-robDT_9B6T6XFGKhw-9GHY6nG7G7I,7253
27
+ specify_cli/_data/templates/commands/checklist.md,sha256=VcFP1YImOM5LJtfTk59qOGsNi5bx_hqow8z2pH7AH6g,17075
28
+ specify_cli/_data/templates/commands/clarify.md,sha256=GrOcajRR1Gu7HDpuRX2spvZfxXgg6TSEflrYobfP4no,11413
29
+ specify_cli/_data/templates/commands/close.md,sha256=mglc0shxNjtz0wlbDHwHXKzYvnw9ZjbcuPIntPMpVNI,12526
30
+ specify_cli/_data/templates/commands/constitution.md,sha256=ieFN9n21-KUriAKm45a2nT5LrcRul96ASBCqr0OeDV4,5453
31
+ specify_cli/_data/templates/commands/create-pull-request.md,sha256=LyGBNB7xC5VXcZP2Sy8ZKu3A0KjomZMBR5FseQ4zzZg,8340
32
+ specify_cli/_data/templates/commands/diagnose.md,sha256=6h-IUP11B7Si2TPJIIEGuRkllIRzEMWFFAzywCjw5G0,11384
33
+ specify_cli/_data/templates/commands/docs.md,sha256=qb-QYEI_K6wueJN40KX0qi8rCRdM8AkrlZRlBj7UwCQ,8899
34
+ specify_cli/_data/templates/commands/implement.md,sha256=0czZOIp1UjJRG0eppo_27gY39Jtr38HqWolYIvXaae8,10884
35
+ specify_cli/_data/templates/commands/pipeline.md,sha256=ZlgbOrAHsmb9sTGcMWuPbz9KEYcuajLElwvZFg14u_o,37289
36
+ specify_cli/_data/templates/commands/plan.md,sha256=HMJIHHfAx8LBXX8nkCwKO-3sPGohX_up7Dx2Q1u4GL4,3978
37
+ specify_cli/_data/templates/commands/specify.md,sha256=RMnFPGnuTlorgyShVVZ1HjdJMoz_9l-YSkLYjKX7ipE,15213
38
+ specify_cli/_data/templates/commands/tasks.md,sha256=cz9ISjjZqq1vp89FTe8ZnRsgpvRwAi3_KDU9uJgg1GY,9081
39
+ specify_cli/_data/templates/commands/taskstoissues.md,sha256=NGNsZfpyBQwS6adNJtXZ2MegtEOHy4N9HyCepwye8wU,1187
40
+ specify_cli/_data/templates/commands/test.md,sha256=Bsl_IM5CL_sCgVxTGEAVPZ_EGoNb6D3cvoN_qA5R_so,13859
41
+ specify_cli/_data/templates/examples/override-example.md,sha256=OwFq-Nuo374yQUWXeiqZwQ4y6DTpNGo5Im7QkYoJcoY,2229
42
+ specify_cli/_data/scripts/bash/analyze-domain.sh,sha256=Q1IrK9NkPbayrLglGU-RbzLA08lf7X0fflpUq5PISD0,6819
43
+ specify_cli/_data/scripts/bash/check-concurrent-runs.sh,sha256=zgm4ivHUEp6sISls6DtBx-gLpk4kieByPnjGytVfwcg,4192
44
+ specify_cli/_data/scripts/bash/check-prerequisites.sh,sha256=uHhN2b3OA4lVrGmVUHTIGSKbFhmTGglOw4EPc5RyLro,4985
45
+ specify_cli/_data/scripts/bash/close-spec.sh,sha256=H8csK6Qeajw6jUx9nxMceFoxewFakglBlVQyaom2LMc,4728
46
+ specify_cli/_data/scripts/bash/common.sh,sha256=z77k89zLvGOPVweH3h7uuRu7WE4ESd3w3of-qiE-iDU,11690
47
+ specify_cli/_data/scripts/bash/create-new-feature.sh,sha256=V8D3yk9v99k0KTFNMhvFcZA7H7y4IosZH0MqbZkbcYo,10950
48
+ specify_cli/_data/scripts/bash/generate-scorecard.sh,sha256=mVf6suynOgIiStt8hm8I4C5Z3GvX14xTnNpj8ApQTwA,18604
49
+ specify_cli/_data/scripts/bash/lint-config-refs.sh,sha256=PxvpiiALUBefBCFxCdjhRmNBVvzIhfBDo9XHSt85zEM,1400
50
+ specify_cli/_data/scripts/bash/pipeline-state.sh,sha256=abEKwCq38fgalUmqgL2zTXJz1GUs99_SVsiAU4fsZOQ,10515
51
+ specify_cli/_data/scripts/bash/run-baseline-tests.sh,sha256=euZciG2lfLeG3z4lZXTZR8y9Ad3FZ_XkD_3sH-sugyg,5752
52
+ specify_cli/_data/scripts/bash/run-closure-checks.sh,sha256=lVQKWWbPWUEhOuCRqK5R8Ai-Fw74p4v3d1RO2GjV-1E,6897
53
+ specify_cli/_data/scripts/bash/score-docs-ci.sh,sha256=LXOlYD8LQa1-sFcsxBh1wUge80_2xD_zcvMGaKeDwQM,3511
54
+ specify_cli/_data/scripts/bash/setup-plan.sh,sha256=B53uNDgq8K4yDI2X7uOWrgBW6g_zYOVamXrf3fgc358,1627
55
+ specify_cli/_data/scripts/bash/speckit-bootstrap.sh,sha256=Ga_Pc9lMHHZ07tWjZlPCcBvuPRJ3P2plAWmvGYxebGE,4513
56
+ specify_cli/_data/scripts/bash/speckit-common.sh,sha256=1GSa6miDyIFXnwmgN6A7i7HhcdT8rHbK0wXHe63n1jU,6723
57
+ specify_cli/_data/scripts/bash/speckit-link.sh,sha256=81Z9MbgnZ4SUFzGc95pyE8_nX9VcJlgOnUA6HhCu8Bs,7234
58
+ specify_cli/_data/scripts/bash/speckit-pin.sh,sha256=X079cdWg9b--FYGvG6V5pxjWYjYmc0YEWT4GRhrbNq4,3162
59
+ specify_cli/_data/scripts/bash/speckit-sync.sh,sha256=V0BilQmO4yPsdvt5xDUZqpNnEF01-wJHyks04OENCvA,2331
60
+ specify_cli/_data/scripts/bash/update-agent-context.sh,sha256=UBod50me3NtlJvES4PSW1g0RbfEthJ58zIEkeRcKwT0,27015
61
+ specify_cli/_data/scripts/powershell/analyze-domain.ps1,sha256=V07r3hqVQXPDSylH2P-ySaF9L7Mo2bUNNhKBTGchoEo,6982
62
+ specify_cli/_data/scripts/powershell/check-concurrent-runs.ps1,sha256=6lpTMIdj1cPT-hEqAN74BMhrt3jIpVdZj0zgHLVtDAQ,3521
63
+ specify_cli/_data/scripts/powershell/check-prerequisites.ps1,sha256=vLN4BLB1fDd5m2WpMhwdP7e33cq2cDxVxbmhQskWa_E,4805
64
+ specify_cli/_data/scripts/powershell/close-spec.ps1,sha256=UkaXW9-Y6IFGK1zxfzTYyFNJ9bpGBBPBtBKaJZ4bTKE,4152
65
+ specify_cli/_data/scripts/powershell/common.ps1,sha256=y1G7p7ukVWiHYLPL_hUIHhkcE9kTVV5UdjoZ43kGUFY,7755
66
+ specify_cli/_data/scripts/powershell/create-new-feature.ps1,sha256=vQoYro1JdHCF3qoTfRe0bVMO9Zm7dwnKL8z2MS_Bv3g,10342
67
+ specify_cli/_data/scripts/powershell/generate-scorecard.ps1,sha256=hsFefDKby6zHYUakaC4D7yHjERjVcGT248So2lx505c,14003
68
+ specify_cli/_data/scripts/powershell/lint-config-refs.ps1,sha256=kb_2zG3WbrYtlZiPwF1LD2wLun1aEo8Hdnk7khDqkVI,1408
69
+ specify_cli/_data/scripts/powershell/pipeline-state.ps1,sha256=DrwTVPjXfTG-NytVO_z0ShUQjA74BNKPIFPharLXWRk,8553
70
+ specify_cli/_data/scripts/powershell/run-baseline-tests.ps1,sha256=j9NHIiECl6_igRmk9YBJYalmXibrstkRteJd_WnTCw0,4866
71
+ specify_cli/_data/scripts/powershell/run-closure-checks.ps1,sha256=rmuRDkTyEKiXwF4TfKP2BBeHmWwqIbIizX6YWSRKag8,5639
72
+ specify_cli/_data/scripts/powershell/score-docs-ci.ps1,sha256=-9bH1w9GHpbutPp4wQ3hh_XdctI7CiUOgQIuulzfpSo,3434
73
+ specify_cli/_data/scripts/powershell/setup-plan.ps1,sha256=b_OBIdTOP8p95B3am-J1Q7_Hv49j4R5tKFX84dkb4wo,1853
74
+ specify_cli/_data/scripts/powershell/speckit-bootstrap.ps1,sha256=jKi3qDynAcTEqcEgmdlJjfdnLMNAJMZcoJ4rQkltVAQ,2898
75
+ specify_cli/_data/scripts/powershell/speckit-common.ps1,sha256=TvGkjfUcVEcBsf0Hu-xAbZ_EdPa6ZxSDnmV04Go2inw,3374
76
+ specify_cli/_data/scripts/powershell/speckit-link.ps1,sha256=gKyq2fcrc0NM5Yls2bky1QE6liLfIB6rsqnA105LZ8w,4145
77
+ specify_cli/_data/scripts/powershell/speckit-pin.ps1,sha256=D_s896bvpE9TMfoos23_wqM6GvZ7tgpQcprY9HY933o,2279
78
+ specify_cli/_data/scripts/powershell/speckit-sync.ps1,sha256=1-AdpQxGkKbHc8dfFNCO5FPXybHUEjeVFgJOWGALNa4,1589
79
+ specify_cli/_data/scripts/powershell/update-agent-context.ps1,sha256=s3haqwWOmKeDJEmlmSDaW1fnfONQyNCrPvfKLKDi2jo,21345
80
+ equa_spec-0.7.0.dist-info/METADATA,sha256=eHfFrHVz20PKlPk9gJ42s9Zn8kkqjTJnJQtCJ_T75vk,6404
81
+ equa_spec-0.7.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
82
+ equa_spec-0.7.0.dist-info/entry_points.txt,sha256=zO7Jooxo-O6FCM02xdzsNB8WNakvnPDv5bpZr1P4Pmo,45
83
+ equa_spec-0.7.0.dist-info/licenses/LICENSE,sha256=1ZO1XiGXPh4Z6A3DtVqQj0dLJlMA-NNMVNG546WkpI8,1061
84
+ equa_spec-0.7.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ specify = specify_cli:main
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright GitHub, Inc.
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.
22
+