super-dev 2.0.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 (61) hide show
  1. super_dev/__init__.py +11 -0
  2. super_dev/analyzer/__init__.py +34 -0
  3. super_dev/analyzer/analyzer.py +440 -0
  4. super_dev/analyzer/detectors.py +511 -0
  5. super_dev/analyzer/models.py +285 -0
  6. super_dev/cli.py +3257 -0
  7. super_dev/config/__init__.py +11 -0
  8. super_dev/config/frontend.py +557 -0
  9. super_dev/config/manager.py +281 -0
  10. super_dev/creators/__init__.py +26 -0
  11. super_dev/creators/creator.py +134 -0
  12. super_dev/creators/document_generator.py +2473 -0
  13. super_dev/creators/frontend_builder.py +371 -0
  14. super_dev/creators/implementation_builder.py +789 -0
  15. super_dev/creators/prompt_generator.py +289 -0
  16. super_dev/creators/requirement_parser.py +354 -0
  17. super_dev/creators/spec_builder.py +195 -0
  18. super_dev/deployers/__init__.py +20 -0
  19. super_dev/deployers/cicd.py +1269 -0
  20. super_dev/deployers/delivery.py +229 -0
  21. super_dev/deployers/migration.py +1032 -0
  22. super_dev/design/__init__.py +74 -0
  23. super_dev/design/aesthetics.py +530 -0
  24. super_dev/design/charts.py +396 -0
  25. super_dev/design/codegen.py +379 -0
  26. super_dev/design/engine.py +528 -0
  27. super_dev/design/generator.py +395 -0
  28. super_dev/design/landing.py +422 -0
  29. super_dev/design/tech_stack.py +524 -0
  30. super_dev/design/tokens.py +269 -0
  31. super_dev/design/ux_guide.py +391 -0
  32. super_dev/exceptions.py +119 -0
  33. super_dev/experts/__init__.py +19 -0
  34. super_dev/experts/service.py +161 -0
  35. super_dev/integrations/__init__.py +7 -0
  36. super_dev/integrations/manager.py +264 -0
  37. super_dev/orchestrator/__init__.py +12 -0
  38. super_dev/orchestrator/engine.py +958 -0
  39. super_dev/orchestrator/experts.py +423 -0
  40. super_dev/orchestrator/knowledge.py +352 -0
  41. super_dev/orchestrator/quality.py +356 -0
  42. super_dev/reviewers/__init__.py +17 -0
  43. super_dev/reviewers/code_review.py +471 -0
  44. super_dev/reviewers/quality_gate.py +964 -0
  45. super_dev/reviewers/redteam.py +881 -0
  46. super_dev/skills/__init__.py +7 -0
  47. super_dev/skills/manager.py +307 -0
  48. super_dev/specs/__init__.py +44 -0
  49. super_dev/specs/generator.py +264 -0
  50. super_dev/specs/manager.py +428 -0
  51. super_dev/specs/models.py +348 -0
  52. super_dev/specs/validator.py +415 -0
  53. super_dev/utils/__init__.py +11 -0
  54. super_dev/utils/logger.py +133 -0
  55. super_dev/web/api.py +1402 -0
  56. super_dev-2.0.0.dist-info/METADATA +252 -0
  57. super_dev-2.0.0.dist-info/RECORD +61 -0
  58. super_dev-2.0.0.dist-info/WHEEL +5 -0
  59. super_dev-2.0.0.dist-info/entry_points.txt +2 -0
  60. super_dev-2.0.0.dist-info/licenses/LICENSE +21 -0
  61. super_dev-2.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,252 @@
1
+ Metadata-Version: 2.4
2
+ Name: super-dev
3
+ Version: 2.0.0
4
+ Summary: 顶级 AI 开发战队 - God-Tier Development Team
5
+ Author-email: Excellent <11964948@qq.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/shangyankeji/super-dev
8
+ Project-URL: Documentation, https://github.com/shangyankeji/super-dev#readme
9
+ Project-URL: Repository, https://github.com/shangyankeji/super-dev
10
+ Project-URL: Issues, https://github.com/shangyankeji/super-dev/issues
11
+ Keywords: ai,development,agent,workflow,claude,cli
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development
19
+ Classifier: Topic :: Software Development :: Build Tools
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: rich>=13.0.0
24
+ Requires-Dist: pyyaml>=6.0.0
25
+ Requires-Dist: ddgs>=9.0.0
26
+ Requires-Dist: requests>=2.31.0
27
+ Requires-Dist: beautifulsoup4>=4.12.0
28
+ Requires-Dist: defusedxml>=0.7.1
29
+ Requires-Dist: openai>=1.0.0
30
+ Requires-Dist: tenacity>=8.2.0
31
+ Requires-Dist: fastapi>=0.110.0
32
+ Requires-Dist: uvicorn>=0.27.0
33
+ Requires-Dist: tomli>=2.0.0; python_version < "3.11"
34
+ Provides-Extra: dev
35
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
36
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
37
+ Requires-Dist: black>=23.0.0; extra == "dev"
38
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
39
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
40
+ Dynamic: license-file
41
+
42
+ # Super Dev
43
+
44
+ <div align="center">
45
+
46
+ # 顶级 AI 开发战队
47
+ ### God-Tier AI Development Team
48
+
49
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
50
+ [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/downloads/)
51
+ [![Type Checks](https://img.shields.io/badge/type%20checks-mypy-success)](https://mypy-lang.org/)
52
+ [![Lint](https://img.shields.io/badge/lint-ruff-success)](https://docs.astral.sh/ruff/)
53
+ [![CI](https://img.shields.io/badge/CI-GitHub%20Actions-success)](.github/workflows/ci.yml)
54
+
55
+ [English](README_EN.md) | 简体中文
56
+
57
+ </div>
58
+
59
+ ---
60
+
61
+ ## 版本
62
+
63
+ 当前版本:`2.0.0`
64
+
65
+ 当前分支质量基线(2026-03-01):
66
+
67
+ - `ruff check super_dev tests` 通过
68
+ - `mypy super_dev` 通过(55 个源文件)
69
+ - `pytest -q` 通过(199 passed)
70
+ - `bandit -ll -r super_dev` 通过(0 medium/high finding)
71
+ - `pip-audit .` 通过(0 vulnerability)
72
+
73
+ ---
74
+
75
+ ## 项目定位
76
+
77
+ `Super Dev` 是一个面向商业级交付的 AI 开发编排工具,核心目标是把「一句话需求」落地成可执行工程资产:
78
+
79
+ - 需求增强与情报补全
80
+ - PRD / 架构 / UIUX / 执行计划文档
81
+ - 前端可演示骨架 + 前后端实现骨架
82
+ - 红队审查 + 质量门禁
83
+ - 代码审查指南 + AI 提示词
84
+ - CI/CD + 部署修复模板 + 数据库迁移脚本 + 交付打包(manifest/report/zip)
85
+
86
+ ---
87
+
88
+ ## 核心能力
89
+
90
+ ### 1) 12 阶段流水线(第 0 到第 11 阶段)
91
+
92
+ `super-dev pipeline` 当前实际执行链路:
93
+
94
+ | 阶段 | 内容 |
95
+ |:---|:---|
96
+ | 第 0 阶段 | 需求增强(本地知识 + 联网检索,可离线) |
97
+ | 第 1 阶段 | 生成专业文档(PRD/架构/UIUX/执行路线图/前端蓝图) |
98
+ | 第 2 阶段 | 生成前端可演示骨架 |
99
+ | 第 3 阶段 | 创建 Spec 规范 |
100
+ | 第 4 阶段 | 生成前后端实现骨架(可跳过) |
101
+ | 第 5 阶段 | 红队审查(可跳过) |
102
+ | 第 6 阶段 | 质量门禁(可跳过,支持阈值覆盖) |
103
+ | 第 7 阶段 | 代码审查指南 |
104
+ | 第 8 阶段 | AI 提示词 |
105
+ | 第 9 阶段 | CI/CD 配置生成 |
106
+ | 第 10 阶段 | 部署修复模板(环境变量/检查清单) |
107
+ | 第 11 阶段 | 数据库迁移脚本 + 项目交付包 |
108
+
109
+ ### 2) Spec-Driven Development (SDD)
110
+
111
+ 内置 `.super-dev/specs`、`changes`、`archive` 结构,支持提案、任务拆解、归档和规范更新。
112
+
113
+ ### 3) 专家协作体系
114
+
115
+ 内置 PM / ARCHITECT / UI / UX / SECURITY / CODE / DBA / QA / DEVOPS / RCA 专家角色。
116
+
117
+ ### 4) 设计智能引擎
118
+
119
+ 支持设计搜索、设计系统生成、tokens、Landing 模式、图表推荐、UX 指南、技术栈最佳实践、组件代码生成。
120
+
121
+ ### 5) Web API / Studio
122
+
123
+ 提供 FastAPI 接口和可视化工作台,支持工作流启动、状态查询、配置读取、部署模板导出等能力。
124
+
125
+ ### 6) 跨平台兼容验收
126
+
127
+ CI 内置 `Platform Compatibility` 门禁,自动验证 Claude Code / Codex CLI / OpenCode / Antigravity / Cursor / Qoder / Trae / CodeBuddy 的 Skill 与规则集成路径。
128
+
129
+ ---
130
+
131
+ ## 安装
132
+
133
+ ### 方式 1:GitHub 直装(推荐)
134
+
135
+ ```bash
136
+ pip install git+https://github.com/shangyankeji/super-dev.git@v2.0.0
137
+ super-dev --version
138
+ ```
139
+
140
+ ### 方式 2:PyPI 安装
141
+
142
+ ```bash
143
+ pip install super-dev==2.0.0
144
+ super-dev --version
145
+ ```
146
+
147
+ ### 方式 3:源码开发安装
148
+
149
+ ```bash
150
+ git clone https://github.com/shangyankeji/super-dev.git
151
+ cd super-dev
152
+ pip install -e ".[dev]"
153
+ super-dev --version
154
+ ```
155
+
156
+ ---
157
+
158
+ ## 快速开始
159
+
160
+ ### 一句话执行完整流水线
161
+
162
+ ```bash
163
+ super-dev pipeline "构建一个带登录、订单、支付的电商后台" \
164
+ --platform web \
165
+ --frontend react \
166
+ --backend python \
167
+ --domain ecommerce \
168
+ --cicd github
169
+ ```
170
+
171
+ ### 常用命令
172
+
173
+ ```bash
174
+ # 项目初始化 / 分析
175
+ super-dev init my-project
176
+ super-dev analyze .
177
+
178
+ # 核心流水线
179
+ super-dev create "用户认证系统"
180
+ super-dev pipeline "用户认证系统"
181
+
182
+ # 规范管理
183
+ super-dev spec init
184
+ super-dev spec list
185
+ super-dev spec show <change_id>
186
+
187
+ # 设计引擎
188
+ super-dev design search "glass" --domain style
189
+ super-dev design generate --product saas --industry fintech
190
+ super-dev design tokens --primary "#3B82F6"
191
+
192
+ # 质量与部署
193
+ super-dev quality --type all
194
+ super-dev deploy --cicd github
195
+
196
+ # API / Studio
197
+ super-dev studio --port 8765
198
+ ```
199
+
200
+ ---
201
+
202
+ ## 预检与发布
203
+
204
+ 发布前建议始终执行:
205
+
206
+ ```bash
207
+ ./scripts/preflight.sh
208
+ ```
209
+
210
+ 预检覆盖:`ruff`、`mypy`、`pytest`、`delivery-smoke`、`bandit`、`pip-audit`、benchmark、build、twine check。
211
+
212
+ 发布文档:
213
+
214
+ - [发布指南](docs/PUBLISHING.md)
215
+ - [Release Runbook](docs/RELEASE_RUNBOOK.md)
216
+ - [快速开始](docs/QUICKSTART.md)
217
+
218
+ ---
219
+
220
+ ## 目录结构(关键)
221
+
222
+ ```text
223
+ super_dev/ # 核心源码
224
+ cli.py # CLI 入口
225
+ orchestrator/ # 工作流编排
226
+ creators/ # 文档/提示词/骨架生成
227
+ reviewers/ # 红队与质量门禁
228
+ deployers/ # CI/CD 与迁移脚本生成
229
+ design/ # 设计智能引擎
230
+ web/ # FastAPI 服务
231
+
232
+ output/ # 生成产物
233
+ scripts/ # 发布与预检脚本
234
+ docs/ # 使用与发布文档
235
+ ```
236
+
237
+ ---
238
+
239
+ ## 兼容矩阵(当前)
240
+
241
+ - 平台:`web`, `mobile`, `wechat`, `desktop`
242
+ - 前端:`react`, `vue`, `angular`, `svelte`
243
+ - 后端:`node`, `python`, `go`, `java`
244
+ - 领域:`fintech`, `ecommerce`, `medical`, `social`, `iot`, `education`, `auth`, `content`
245
+ - CI/CD:`github`, `gitlab`, `jenkins`, `azure`, `bitbucket`
246
+ - ORM/迁移:`Prisma`, `TypeORM`, `Sequelize`, `SQLAlchemy`, `Django`, `Mongoose`
247
+
248
+ ---
249
+
250
+ ## 许可证
251
+
252
+ MIT License
@@ -0,0 +1,61 @@
1
+ super_dev/__init__.py,sha256=TfZPTGCzmkFvi-0TYXQj3jvfU_sYcDW77czrm-_G0KQ,354
2
+ super_dev/cli.py,sha256=N6TKlZJPl2FeLHScawzZj9d175Uc_QZ-myYrPSmWwQ0,132032
3
+ super_dev/exceptions.py,sha256=q_CGKSJL4oVfKfACITmEETIpMAUGOFk8UvvMBVFE1dA,2961
4
+ super_dev/analyzer/__init__.py,sha256=jv_dMrti-ukEOADTYSTiWlqZOnvw5WKezEVNpwkvj_k,651
5
+ super_dev/analyzer/analyzer.py,sha256=NrgIxSap1gjMa7nV1VMeVFa-DNNe7l48tKJNOC0dKpc,14014
6
+ super_dev/analyzer/detectors.py,sha256=D6pKSA9if4Lk_kasWzCQBIDwomggYYmocjiLsTqJ_eQ,16097
7
+ super_dev/analyzer/models.py,sha256=LZOECVmge_FJFVt5VmtK6p-7i9WE65PXeGejxI0OMGc,8070
8
+ super_dev/config/__init__.py,sha256=bgw-P-gE8w7hQN6gcVXsVMf-KbI49tUCKGrd2_24UBc,192
9
+ super_dev/config/frontend.py,sha256=sdn4KBgH1VBMOY0rAdi6daw9DsS6O5E9E4CFUX2qpUw,18203
10
+ super_dev/config/manager.py,sha256=UIqGfkJ0jXevEtsSYAQddZwoDx4o42-oNqcrEtAcvPE,8463
11
+ super_dev/creators/__init__.py,sha256=uNNvtYhtk-kbGDsvGxkkPs9ZulBOcHO6yPHLfy9Luzc,773
12
+ super_dev/creators/creator.py,sha256=Zlc4_snPv7BzBhD4cPzrq0u0c0Cy44x7QSK3r_lYZh4,4654
13
+ super_dev/creators/document_generator.py,sha256=vKEqEzt2VB_eXF5Vv3kR49abkMZG4u-g00p0_AAlit0,66961
14
+ super_dev/creators/frontend_builder.py,sha256=fDPGo9fLBbgG7zW5teKcx5xl3OrZnOKndpmPiXGuP4g,9118
15
+ super_dev/creators/implementation_builder.py,sha256=532QAFxNu0B1MS4zogFdvnd8sHNYqcxey7NSNuK1MCw,30049
16
+ super_dev/creators/prompt_generator.py,sha256=ChUjoFT7YCAkpxSiLz5aA9SO4rgDtW1rlv_lzMD8DdI,7861
17
+ super_dev/creators/requirement_parser.py,sha256=EcKb20Rl-fsfYLqVHOSeTNqKkpa0iTNWLJR1tqI5XBI,13895
18
+ super_dev/creators/spec_builder.py,sha256=TsKzdosRkTQFnqTcNI-zNsVf68fKlKvmjD9b6IdhLtI,6917
19
+ super_dev/deployers/__init__.py,sha256=tBUh4BJkGEsln2nYdZ6WWd6tKk8YeBKLwYOJM2C9-b4,499
20
+ super_dev/deployers/cicd.py,sha256=ieUVbhF6WMl6NKpRMq4bTskzjM6bV4D61hum8heEKEE,35914
21
+ super_dev/deployers/delivery.py,sha256=jUCCdFxsgkc32P_hUv9cKf7qPiP70CGUHUL25UuYaI4,9054
22
+ super_dev/deployers/migration.py,sha256=SaupM0_ma9bQlmTRxd6KsqTTkHnwr4Ax43d9g45Gj0A,38390
23
+ super_dev/design/__init__.py,sha256=gQAD7OZjtHIbCPtgLdg_eJ3Evq8CIQBaaGxiI7blKnw,2093
24
+ super_dev/design/aesthetics.py,sha256=UPQiuw-SPO4MDoRQs2u1xldRqJx_ijy9Z4wGGJrAxpw,18603
25
+ super_dev/design/charts.py,sha256=EmWPyb8YAhTYlAnA99TGZvo_qjXytXelMdFL8a1wOao,14092
26
+ super_dev/design/codegen.py,sha256=0ezPkvtDqimcd0zkrtBsRZsclvWFNd8eozBXpzv_NO0,14092
27
+ super_dev/design/engine.py,sha256=2bOnAAK6-z20RkzcsvGvmauGDgvWQdHd5B-SYZjT1AE,19149
28
+ super_dev/design/generator.py,sha256=7kNYUDxy3Ur0r1YRlQD4vfnMaxVdTIddzH8iAM7-wUE,12226
29
+ super_dev/design/landing.py,sha256=Mj8FGP9KG2eTGZSINk5J_ovFkaqIQ4hAis1emXEehcY,15538
30
+ super_dev/design/tech_stack.py,sha256=72O17Mz4a-ItrwFIbm8yX37Vsd9DpqlXrzzkgKU9e8g,18448
31
+ super_dev/design/tokens.py,sha256=V7A6hluUVORbnlvbpyMOSr4METSvFLuklJSGeIi2TNo,8494
32
+ super_dev/design/ux_guide.py,sha256=uTfWgB4072cOw8pxU2G8832UtUQ0DdxoKNuHBYSSnkU,12026
33
+ super_dev/experts/__init__.py,sha256=WhIZsz2g3zCA3UaSYB4bdM5QgxZAuzXM6EiDxZy2Q30,385
34
+ super_dev/experts/service.py,sha256=JUCaHbwVSBdDb5ZD8DJ9lZ3x1NRM0SUGw5KKGOHcycQ,6388
35
+ super_dev/integrations/__init__.py,sha256=dPcajBlSdZPNeFdZqwUIFjBFhyh3PkhKOaQ9_eXdj04,105
36
+ super_dev/integrations/manager.py,sha256=Zjlaf2b4gC9etoHkTHczBj6OoKvF7VkBSrDOq3W3Xmc,9155
37
+ super_dev/orchestrator/__init__.py,sha256=zSB7J0Xxmt0NzcNjOHhd_Weu-RDmeX4JZg0tFkIOkV4,202
38
+ super_dev/orchestrator/engine.py,sha256=4ijDjzajg_cAiOCiu55Te8hs2OcyZXoGYJbo99QxjVE,37352
39
+ super_dev/orchestrator/experts.py,sha256=KhHKOhHClSX5kZuBIBpzLLN8h89n3T-d9BPwHZALq5E,14268
40
+ super_dev/orchestrator/knowledge.py,sha256=aBd-9zEBuObH0sxD9KQ5g-ax4sRTiwC7ojUP9cwjjXo,11892
41
+ super_dev/orchestrator/quality.py,sha256=RMCjRCquFqLPkffAadUebki15WKrhWr7FiZlfUgDMuM,11967
42
+ super_dev/reviewers/__init__.py,sha256=ICOp8rWkceO36KET21BeIIqqyrScRa3GreV3zYtGubo,389
43
+ super_dev/reviewers/code_review.py,sha256=W_kTmkWqwwzNC_9FfgX9YoUYkje0gVK3ZiBeEyaiPdc,11251
44
+ super_dev/reviewers/quality_gate.py,sha256=2nCWPx8dAhd2fU-qDXMn74F56jdl1vad0i9VOYyMj_8,36863
45
+ super_dev/reviewers/redteam.py,sha256=sX9H7M82enWxi5Iwfb9HGtf8btEYFW4zJR1fba6k31Q,34066
46
+ super_dev/skills/__init__.py,sha256=1rgFk7AwI8yDSjmw-Q4AZY8qdPAfmO7JGD1t64NSIq4,90
47
+ super_dev/skills/manager.py,sha256=3aXWIXGbX3i5Bail92BLI5JlPYNOmk-ZfMb1JE3A3Po,11005
48
+ super_dev/specs/__init__.py,sha256=CP19C2WnNuy6dTj2BOFnR49oUqyTdR1uRwP_wJ8NGD4,908
49
+ super_dev/specs/generator.py,sha256=qx0lOWbMfk3fGsLbIw1uF6B42nGTL-6FIe304AisKy4,8143
50
+ super_dev/specs/manager.py,sha256=I0_rA3J7XUKZcWIzghsvXdESaR34GEqV7dyCH2j4xP8,16639
51
+ super_dev/specs/models.py,sha256=k6HMIKlbyFp_4kaUWZ6Se6y19dCyv-Rjav06cLehbR8,10405
52
+ super_dev/specs/validator.py,sha256=dNX-mdt6025FXyMX6qFB4EAdjL0p_El4Sw-ZuJg8NJQ,13793
53
+ super_dev/utils/__init__.py,sha256=zWfG9Dd3Hi-160fqtqL1mLJB5YAKqQAmpynRew9N1EA,249
54
+ super_dev/utils/logger.py,sha256=9DxOYR6wccPYpA7VBZ4HA_FfaamfPT1jEwxYacNzm40,3847
55
+ super_dev/web/api.py,sha256=HV9IVQmV992vYGm2Bri7HsugEL0kgc9_QwQt3YCFRIA,47991
56
+ super_dev-2.0.0.dist-info/licenses/LICENSE,sha256=pl421XplIVLpnECVoZPsrOT7YBxCf7EWF9iUxS7GYe4,1066
57
+ super_dev-2.0.0.dist-info/METADATA,sha256=Z3KYJjf6ObVjh1CbJDImnHxlcvQTcLpgX7SoNoAEygg,7218
58
+ super_dev-2.0.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
59
+ super_dev-2.0.0.dist-info/entry_points.txt,sha256=wz1lWL2sLVgaV0NCs8HoI-XCn8_6g1No69RTIw3C7Iw,49
60
+ super_dev-2.0.0.dist-info/top_level.txt,sha256=4hY5l1EywA9o33J4gvAMHFaxTUEI9YnjnCyj1U6QaQs,10
61
+ super_dev-2.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ super-dev = super_dev.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Super Dev
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.
@@ -0,0 +1 @@
1
+ super_dev