@vima_tech/telos 1.4.0
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 +179 -0
- package/README.zh.md +180 -0
- package/bin/telos.js +477 -0
- package/package.json +37 -0
- package/scripts/auto-distill.sh +154 -0
- package/scripts/available.json +11 -0
- package/scripts/bridge-to-coder.sh +139 -0
- package/scripts/feedback-hook.sh +157 -0
- package/scripts/telos-install.sh +329 -0
- package/skills/_kernel/distillation.md +311 -0
- package/skills/_kernel/skill-extraction.md +227 -0
- package/skills/_template/domain.md +93 -0
- package/skills/_template/feedback-questions.sh +9 -0
- package/skills/_template/skill.yaml +22 -0
- package/skills/req-mining/artifacts.md +185 -0
- package/skills/req-mining/domain.md +243 -0
- package/skills/req-mining/feedback-questions.sh +9 -0
- package/skills/req-mining/industry/erp.md +108 -0
- package/skills/req-mining/industry/retail.md +24 -0
- package/skills/req-mining/memory/failure-patterns.md +84 -0
- package/skills/req-mining/skill.yaml +45 -0
- package/templates/state.json +91 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"project_id": "",
|
|
3
|
+
"project_name": "",
|
|
4
|
+
"skill": "req-mining",
|
|
5
|
+
"client_industry": "",
|
|
6
|
+
"client_name": "",
|
|
7
|
+
"created_at": "",
|
|
8
|
+
"updated_at": "",
|
|
9
|
+
|
|
10
|
+
"current_phase": "goal_confirmation",
|
|
11
|
+
"turn_count": 0,
|
|
12
|
+
"phase_turn_counts": {
|
|
13
|
+
"goal_confirmation": 0,
|
|
14
|
+
"scene_restoration": 0,
|
|
15
|
+
"constraint_probing": 0,
|
|
16
|
+
"acceptance_definition": 0
|
|
17
|
+
},
|
|
18
|
+
|
|
19
|
+
"prototype_fidelity": null,
|
|
20
|
+
"prototype_fidelity_locked": false,
|
|
21
|
+
|
|
22
|
+
"exit_conditions": {
|
|
23
|
+
"goal_confirmation": {
|
|
24
|
+
"true_goal_stated": false,
|
|
25
|
+
"decision_maker_identified": false,
|
|
26
|
+
"history_checked": false
|
|
27
|
+
},
|
|
28
|
+
"scene_restoration": {
|
|
29
|
+
"scenarios_count": 0,
|
|
30
|
+
"roles_identified": false,
|
|
31
|
+
"current_process_understood": false,
|
|
32
|
+
"flow_completeness_checked": false
|
|
33
|
+
},
|
|
34
|
+
"constraint_probing": {
|
|
35
|
+
"budget_locked": false,
|
|
36
|
+
"timeline_locked": false,
|
|
37
|
+
"deployment_confirmed": false,
|
|
38
|
+
"user_scale_confirmed": false,
|
|
39
|
+
"security_confirmed": false,
|
|
40
|
+
"parking_lot_high_risk_cleared": false
|
|
41
|
+
},
|
|
42
|
+
"acceptance_definition": {
|
|
43
|
+
"functional_criteria_count": 0,
|
|
44
|
+
"nonfunctional_criteria_count": 0,
|
|
45
|
+
"out_of_scope_listed": false,
|
|
46
|
+
"parking_lot_cleared": false
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"confirmed_info": {
|
|
51
|
+
"true_goal": null,
|
|
52
|
+
"expressed_goal": null,
|
|
53
|
+
"decision_maker": null,
|
|
54
|
+
"client_type": null,
|
|
55
|
+
"has_previous_project": null,
|
|
56
|
+
"previous_project_result": null,
|
|
57
|
+
"budget_range": {
|
|
58
|
+
"min": null,
|
|
59
|
+
"max": null,
|
|
60
|
+
"currency": "CNY",
|
|
61
|
+
"locked": false
|
|
62
|
+
},
|
|
63
|
+
"timeline": null,
|
|
64
|
+
"deployment_type": null,
|
|
65
|
+
"mobile_required": null,
|
|
66
|
+
"user_scale": null,
|
|
67
|
+
"roles": [],
|
|
68
|
+
"must_have": [],
|
|
69
|
+
"should_have": [],
|
|
70
|
+
"wont_have": [],
|
|
71
|
+
"integrations": [],
|
|
72
|
+
"security_requirements": [],
|
|
73
|
+
"acceptance_criteria": []
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
"parking_lot": [],
|
|
77
|
+
|
|
78
|
+
"contradictions": [],
|
|
79
|
+
|
|
80
|
+
"uncovered_decisions": [],
|
|
81
|
+
|
|
82
|
+
"skills_loaded": [],
|
|
83
|
+
|
|
84
|
+
"distilled": false,
|
|
85
|
+
"distilled_at": null,
|
|
86
|
+
|
|
87
|
+
"dialog_summary": null,
|
|
88
|
+
|
|
89
|
+
"artifacts_generated": false,
|
|
90
|
+
"artifacts_path": null
|
|
91
|
+
}
|