@tyyyho/treg 0.1.21 → 0.1.25
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.
- package/README.md +2 -1
- package/README.npm.md +2 -1
- package/README.zh-hant.md +9 -1
- package/dist/init-project/init-prompts.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# @tyyyho/treg
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Treg (Regulatory T Cell) injects an "immune system" into existing repositories.
|
|
4
|
+
It keeps code quality and consistency stable during fast human-AI collaboration by enforcing a clean, maintainable, and extensible engineering baseline.
|
|
4
5
|
|
|
5
6
|
Scope:
|
|
6
7
|
|
package/README.npm.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# @tyyyho/treg
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Treg (Regulatory T Cell) injects an "immune system" into existing repositories.
|
|
4
|
+
It keeps code quality and consistency stable during fast human-AI collaboration by enforcing a clean, maintainable, and extensible engineering baseline.
|
|
4
5
|
|
|
5
6
|
Scope:
|
|
6
7
|
|
package/README.zh-hant.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# @tyyyho/treg(繁體中文)
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/%40tyyyho%2Ftreg)
|
|
4
|
+
[](https://www.npmjs.com/package/%40tyyyho%2Ftreg)
|
|
5
|
+
[](https://www.npmjs.com/package/%40tyyyho%2Ftreg)
|
|
6
|
+

|
|
7
|
+
|
|
3
8
|
[English README](./README.md)
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
Treg(Regulatory T Cell)是一個為專案注入「免疫系統」的 CLI 工具。
|
|
11
|
+
當人與 AI 協作並快速迭代時,程式碼容易失去秩序與一致性;`treg` 的角色就像生物中的 T 細胞,負責維持系統平衡、抑制混亂,確保專案在快速迭代中仍然保持乾淨、可維護與可擴展。
|
|
12
|
+
|
|
13
|
+
透過一次性的初始化,`treg` 會為既有專案建立一套穩定的工程基線,例如 TypeScript、ESLint、Prettier、Husky 以及規範化設定,讓開發流程具備基本的「免疫防護」,避免錯誤與風格混亂在專案中持續累積。
|
|
6
14
|
它只處理基礎設施設定:
|
|
7
15
|
|
|
8
16
|
- lint
|
|
@@ -124,7 +124,7 @@ export async function collectInitPrompts(defaults) {
|
|
|
124
124
|
let aiTools = [];
|
|
125
125
|
let skills = featureSelection.skills;
|
|
126
126
|
if (skills) {
|
|
127
|
-
aiTools = await promptMultiChoice("5) AI tools", AI_TOOL_CHOICES,
|
|
127
|
+
aiTools = await promptMultiChoice("5) AI tools", AI_TOOL_CHOICES, []);
|
|
128
128
|
if (aiTools.length === 0) {
|
|
129
129
|
skills = false;
|
|
130
130
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tyyyho/treg",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI tool
|
|
3
|
+
"version": "0.1.25",
|
|
4
|
+
"description": "Treg (Regulatory T Cell) is a CLI tool that injects an engineering \"immune system\" into existing projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|