@hongmaple0820/scale-engine 0.9.0 β 0.10.1
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.en.md +127 -179
- package/README.md +168 -1094
- package/dist/agents/AgentSourceLoader.js +1 -1
- package/dist/agents/AgentSourceLoader.js.map +1 -1
- package/dist/agents/types.d.ts +1 -1
- package/dist/api/cli.js +222 -6
- package/dist/api/cli.js.map +1 -1
- package/dist/api/quickstart.d.ts +23 -0
- package/dist/api/quickstart.js +57 -0
- package/dist/api/quickstart.js.map +1 -0
- package/dist/artifact/types.d.ts +5 -1
- package/dist/artifact/types.js.map +1 -1
- package/dist/capabilities/BrowserCapability.d.ts +30 -0
- package/dist/capabilities/BrowserCapability.js +73 -0
- package/dist/capabilities/BrowserCapability.js.map +1 -0
- package/dist/capabilities/CapabilityRegistry.d.ts +17 -0
- package/dist/capabilities/CapabilityRegistry.js +65 -0
- package/dist/capabilities/CapabilityRegistry.js.map +1 -0
- package/dist/capabilities/ComputerCapability.d.ts +28 -0
- package/dist/capabilities/ComputerCapability.js +40 -0
- package/dist/capabilities/ComputerCapability.js.map +1 -0
- package/dist/capabilities/InstalledSkillsIntegration.d.ts +66 -0
- package/dist/capabilities/InstalledSkillsIntegration.js +188 -0
- package/dist/capabilities/InstalledSkillsIntegration.js.map +1 -0
- package/dist/capabilities/SearchCapability.d.ts +46 -0
- package/dist/capabilities/SearchCapability.js +88 -0
- package/dist/capabilities/SearchCapability.js.map +1 -0
- package/dist/capabilities/index.d.ts +6 -0
- package/dist/capabilities/index.js +9 -0
- package/dist/capabilities/index.js.map +1 -0
- package/dist/capabilities/types.d.ts +92 -0
- package/dist/capabilities/types.js +7 -0
- package/dist/capabilities/types.js.map +1 -0
- package/dist/cli/liteCommands.js +1 -1
- package/dist/cli/liteCommands.js.map +1 -1
- package/dist/cli/phaseCommands.d.ts +42 -3
- package/dist/cli/phaseCommands.js +490 -149
- package/dist/cli/phaseCommands.js.map +1 -1
- package/dist/core/logger.js +9 -2
- package/dist/core/logger.js.map +1 -1
- package/dist/hooks/HookGeneratorEnhanced.js +84 -5
- package/dist/hooks/HookGeneratorEnhanced.js.map +1 -1
- package/dist/hooks/WorkflowHooksManager.d.ts +30 -0
- package/dist/hooks/WorkflowHooksManager.js +117 -0
- package/dist/hooks/WorkflowHooksManager.js.map +1 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.js +2 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/skills/SkillExecutor.d.ts +11 -1
- package/dist/skills/SkillExecutor.js +160 -5
- package/dist/skills/SkillExecutor.js.map +1 -1
- package/dist/workflow/EvidenceStore.d.ts +20 -0
- package/dist/workflow/EvidenceStore.js +48 -0
- package/dist/workflow/EvidenceStore.js.map +1 -0
- package/dist/workflow/ReviewAnalyzer.d.ts +33 -0
- package/dist/workflow/ReviewAnalyzer.js +264 -0
- package/dist/workflow/ReviewAnalyzer.js.map +1 -0
- package/dist/workflow/ReviewStore.d.ts +32 -0
- package/dist/workflow/ReviewStore.js +42 -0
- package/dist/workflow/ReviewStore.js.map +1 -0
- package/dist/workflow/VerificationCommands.d.ts +23 -0
- package/dist/workflow/VerificationCommands.js +125 -0
- package/dist/workflow/VerificationCommands.js.map +1 -0
- package/dist/workflow/WorkflowEngine.d.ts +62 -0
- package/dist/workflow/WorkflowEngine.js +151 -0
- package/dist/workflow/WorkflowEngine.js.map +1 -0
- package/dist/workflow/cognitive/AmbiguityScorer.d.ts +17 -0
- package/dist/workflow/cognitive/AmbiguityScorer.js +107 -0
- package/dist/workflow/cognitive/AmbiguityScorer.js.map +1 -0
- package/dist/workflow/cognitive/ConsensusPlanner.d.ts +26 -0
- package/dist/workflow/cognitive/ConsensusPlanner.js +141 -0
- package/dist/workflow/cognitive/ConsensusPlanner.js.map +1 -0
- package/dist/workflow/cognitive/SocraticQuestioner.d.ts +33 -0
- package/dist/workflow/cognitive/SocraticQuestioner.js +276 -0
- package/dist/workflow/cognitive/SocraticQuestioner.js.map +1 -0
- package/dist/workflow/execution/RalphEngine.d.ts +36 -0
- package/dist/workflow/execution/RalphEngine.js +123 -0
- package/dist/workflow/execution/RalphEngine.js.map +1 -0
- package/dist/workflow/execution/UltraworkEngine.d.ts +43 -0
- package/dist/workflow/execution/UltraworkEngine.js +135 -0
- package/dist/workflow/execution/UltraworkEngine.js.map +1 -0
- package/dist/workflow/gates/GateSystem.d.ts +130 -0
- package/dist/workflow/gates/GateSystem.js +788 -0
- package/dist/workflow/gates/GateSystem.js.map +1 -0
- package/dist/workflow/index.d.ts +12 -0
- package/dist/workflow/index.js +14 -0
- package/dist/workflow/index.js.map +1 -0
- package/dist/workflow/quality/HonestDelivery.d.ts +19 -0
- package/dist/workflow/quality/HonestDelivery.js +77 -0
- package/dist/workflow/quality/HonestDelivery.js.map +1 -0
- package/dist/workflow/quality/KarpathyEvaluator.d.ts +18 -0
- package/dist/workflow/quality/KarpathyEvaluator.js +76 -0
- package/dist/workflow/quality/KarpathyEvaluator.js.map +1 -0
- package/dist/workflow/types.d.ts +146 -0
- package/dist/workflow/types.js +4 -0
- package/dist/workflow/types.js.map +1 -0
- package/dist/workflows/DAGBuilder.js +1 -1
- package/dist/workflows/DAGBuilder.js.map +1 -1
- package/dist/workflows/WorkflowOrchestrator.js +1 -1
- package/dist/workflows/WorkflowOrchestrator.js.map +1 -1
- package/dist/workflows/index.js +1 -1
- package/dist/workflows/index.js.map +1 -1
- package/package.json +3 -3
package/README.en.md
CHANGED
|
@@ -1,220 +1,168 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://img.shields.io/badge/version-0.
|
|
2
|
+
<img src="https://img.shields.io/badge/version-0.10.1-orange?style=flat-square" alt="version" />
|
|
3
|
+
<img src="https://img.shields.io/badge/platforms-11-blue?style=flat-square" alt="platforms" />
|
|
3
4
|
<img src="https://img.shields.io/badge/agents-12-blue?style=flat-square" alt="agents" />
|
|
4
5
|
<img src="https://img.shields.io/badge/workflows-10-green?style=flat-square" alt="workflows" />
|
|
5
6
|
<img src="https://img.shields.io/badge/detectors-9-red?style=flat-square" alt="detectors" />
|
|
6
|
-
<img src="https://img.shields.io/badge/tests-
|
|
7
|
-
<img src="https://img.shields.io/badge/npm-0.
|
|
7
|
+
<img src="https://img.shields.io/badge/tests-461-passing-brightgreen?style=flat-square" alt="tests" />
|
|
8
|
+
<img src="https://img.shields.io/badge/npm-0.10.1-cb3837?style=flat-square&logo=npm" alt="npm" />
|
|
8
9
|
</p>
|
|
9
10
|
|
|
10
|
-
# SCALE Engine v0.
|
|
11
|
+
# SCALE Engine v0.10.1
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
>
|
|
14
|
-
> AI Engineering Scaffold Engine β Enforce engineering constraints physically, not via prompt "self-discipline"
|
|
13
|
+
SCALE Engine is an AI engineering workflow runtime for agentic coding tools. It turns prompt-level engineering rules into stateful workflow gates, persisted evidence, review records, and release checks.
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
Repository: https://github.com/hongmaple0820/scale-engine
|
|
16
|
+
Mirror: https://gitee.com/hongmaple/scale-engine
|
|
17
|
+
npm: https://www.npmjs.com/package/@hongmaple0820/scale-engine
|
|
18
|
+
Language: [English](README.en.md) | [Chinese](README.md)
|
|
17
19
|
|
|
18
|
-
##
|
|
20
|
+
## Why It Exists
|
|
19
21
|
|
|
20
|
-
|
|
21
|
-
|----------|-----|
|
|
22
|
-
| **GitHub** | https://github.com/hongmaple0820/scale-engine |
|
|
23
|
-
| **Gitee (Mirror)** | https://gitee.com/hongmaple/scale-engine |
|
|
24
|
-
| **npm** | https://www.npmjs.com/package/@hongmaple0820/scale-engine |
|
|
22
|
+
Prompt instructions are advisory. Production engineering needs mechanisms:
|
|
25
23
|
|
|
26
|
-
|
|
24
|
+
- A model can claim tests passed; SCALE stores verification evidence.
|
|
25
|
+
- A model can skip review; SCALE blocks `ship` without persisted review records.
|
|
26
|
+
- A model can stage unrelated files; SCALE now stages only reviewed files.
|
|
27
|
+
- A model can lose workflow state; SCALE stores artifacts and FSM transitions under `.scale`.
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
## Current Release
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
v0.10.1 hardens the phase-aligned delivery workflow:
|
|
31
32
|
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
33
|
+
- `define -> plan -> build -> verify -> review -> ship`
|
|
34
|
+
- FSM-backed artifacts for specs, plans, and tasks
|
|
35
|
+
- persisted gate evidence and review records
|
|
36
|
+
- deterministic review scanner blocks empty `catch`, `@ts-ignore`, focused tests, dangerous shell/Git commands, and security-sensitive changes without G7 evidence
|
|
37
|
+
- built-in G7 security scanning records explainable file/line evidence, blocks CRITICAL by default, and can block HIGH findings in strict mode
|
|
38
|
+
- optional strict TDD evidence gate with `--tdd-evidence` and `--tdd-strict`
|
|
39
|
+
- `ship --no-commit` delivery reports
|
|
40
|
+
- review-gated release commits
|
|
41
|
+
- 11 platform adapters and 12 professional agent profiles
|
|
42
|
+
- Exa/search capability integration
|
|
43
|
+
- 461 Vitest tests passing after scoped ship, TDD evidence, review scanner, and G7 security scan hardening
|
|
39
44
|
|
|
40
|
-
|
|
45
|
+
## Installation
|
|
41
46
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
SCALE Engine is an **AI Engineering Scaffold** that provides physical constraint layers for AI Agents (Claude Code, Codex CLI, OpenCode, Cursor, Gemini CLI, etc.), ensuring engineering standards are enforced through mechanisms, not prompt instructions.
|
|
47
|
-
|
|
48
|
-
### Why Do You Need It?
|
|
49
|
-
|
|
50
|
-
The core contradiction of AI coding:
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
β Prompt says "run tests" β AI can fake it
|
|
54
|
-
β Prompt says "don't hardcode keys" β AI can ignore rules
|
|
55
|
-
β Prompt says "don't brute retry" β AI can retry indefinitely
|
|
56
|
-
β Prompt says "plan before code" β AI can skip planning
|
|
47
|
+
```bash
|
|
48
|
+
npm install -g @hongmaple0820/scale-engine
|
|
49
|
+
scale --version
|
|
57
50
|
```
|
|
58
51
|
|
|
59
|
-
|
|
52
|
+
Node.js 20 or newer is required.
|
|
60
53
|
|
|
61
|
-
|
|
54
|
+
## Phase Workflow
|
|
62
55
|
|
|
56
|
+
```bash
|
|
57
|
+
scale define "Scoped release workflow" \
|
|
58
|
+
--description "Implement a TypeScript CLI workflow with verification evidence, review records, rollback constraints, and release safety checks." \
|
|
59
|
+
--success-criteria "verify evidence is persisted,review evidence is persisted,ship blocks unreviewed files"
|
|
60
|
+
|
|
61
|
+
scale plan <spec-id> --rollback "Revert the release commit and remove generated artifacts"
|
|
62
|
+
scale build <plan-id> --description "Implement scoped release workflow"
|
|
63
|
+
scale verify <task-id>
|
|
64
|
+
scale review <task-id>
|
|
65
|
+
scale ship <task-id> --message "feat(workflow): add scoped release workflow"
|
|
63
66
|
```
|
|
64
|
-
β
Stop Hook checks "no tests run" β AI physically cannot skip
|
|
65
|
-
β
PreTool Hook blocks dangerous commands β AI physically cannot execute
|
|
66
|
-
β
FSM controls workflow states β AI physically cannot skip steps
|
|
67
|
-
β
Role Gate limits tool permissions β AI physically cannot overstep
|
|
68
|
-
β
Detectors catch abnormal behaviors β AI physically cannot hide
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
### How Does It Work?
|
|
72
|
-
|
|
73
|
-
SCALE Engine implements AI engineering through **Six Layers**:
|
|
74
67
|
|
|
75
|
-
|
|
76
|
-
|-------|----------------|----------------|
|
|
77
|
-
| **L1 Context** | Context Building | Token budget + Philosophy injection + Scenario awareness |
|
|
78
|
-
| **L2 Guardrails** | Safety Guardrails | 9 Detectors + Role Gate + Cascade escalation |
|
|
79
|
-
| **L3 Observability** | Observability | EventBus + BehaviorTracker + Pattern detection |
|
|
80
|
-
| **L4 Orchestration** | Task Orchestration | TaskEngine + Effects + 10 Workflows |
|
|
81
|
-
| **L5 Memory** | Knowledge Memory | KnowledgeBase + Decay algorithm + Skill discovery |
|
|
82
|
-
| **L6 Evolution** | Self-Evolution | DefectβLessonβRuleβHook closed loop |
|
|
68
|
+
Use `scale ship <task-id> --no-commit` to generate the delivery report without creating a Git commit.
|
|
83
69
|
|
|
84
|
-
|
|
70
|
+
Strict TDD evidence can be enforced when needed:
|
|
85
71
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
```
|
|
89
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
90
|
-
β L6 Evolution β
|
|
91
|
-
β Defect β Lesson β Rule β Hook (Self-improvement closed loop) β
|
|
92
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
93
|
-
β L5 Memory β
|
|
94
|
-
β KnowledgeBase + Decay + TF-IDF Recall + Skill Discovery β
|
|
95
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
96
|
-
β L4 Orchestration β
|
|
97
|
-
β TaskEngine + FSM + 10 Workflows + Multi-Agent Collaboration β
|
|
98
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
99
|
-
β L3 Observability β
|
|
100
|
-
β EventBus + BehaviorTracker + 9 Detectors + Pattern Detection β
|
|
101
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
102
|
-
β L2 Guardrails β
|
|
103
|
-
β Role Gate + PreTool/PostTool Hooks + Cascade Escalation β
|
|
104
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
|
|
105
|
-
β L1 Context β
|
|
106
|
-
β Token Budget + Philosophy Injection + Scenario Awareness β
|
|
107
|
-
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
72
|
+
```bash
|
|
73
|
+
scale verify <task-id> --tdd-strict --tdd-evidence .scale/tdd/<task-id>.json
|
|
108
74
|
```
|
|
109
75
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
##
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
76
|
+
The TDD evidence JSON must include `red`, `green`, `refactor`, and `testFirst` set to `true`.
|
|
77
|
+
|
|
78
|
+
## Safety Model
|
|
79
|
+
|
|
80
|
+
SCALE Engine uses multiple enforcement layers:
|
|
81
|
+
|
|
82
|
+
| Layer | Purpose |
|
|
83
|
+
| --- | --- |
|
|
84
|
+
| FSM | Prevents invalid artifact lifecycle transitions |
|
|
85
|
+
| GateSystem | Runs build, lint, test, coverage, and security gates |
|
|
86
|
+
| EvidenceStore | Persists verification evidence for audit and release gating |
|
|
87
|
+
| ReviewStore | Persists deterministic review records |
|
|
88
|
+
| ReviewAnalyzer | Scans diffs for high-risk code, process debt, and missing security evidence |
|
|
89
|
+
| Detectors | Detects brute retry, premature completion, blame shifting, busy loops, and related failure modes |
|
|
90
|
+
| Ship gate | Requires passing verification and review evidence before release |
|
|
91
|
+
|
|
92
|
+
The `ship` command no longer stages the whole workspace. It stages only files covered by passing review records and blocks if new reviewable files appear after review.
|
|
93
|
+
|
|
94
|
+
G7 `SecurityGate` includes a lightweight built-in scan for hardcoded secrets, private keys, disabled TLS verification, `eval`/`Function`, raw HTML injection, dangerous shell commands, shell execution, and empty `catch` blocks. Compatibility mode blocks CRITICAL findings; strict mode also blocks HIGH findings.
|
|
95
|
+
|
|
96
|
+
## Supported Platforms
|
|
97
|
+
|
|
98
|
+
SCALE Engine includes adapters for 11 agent platforms, including Claude Code, Codex CLI, OpenCode, Cursor, Gemini CLI, OpenClaw, Hermes, Trae, WorkBuddy, VS Code Copilot CLI, and QCoder.
|
|
99
|
+
|
|
100
|
+
It also includes 12 professional agent profiles:
|
|
101
|
+
|
|
102
|
+
- frontend
|
|
103
|
+
- backend
|
|
104
|
+
- testing
|
|
105
|
+
- UI design
|
|
106
|
+
- operations
|
|
107
|
+
- product
|
|
108
|
+
- code review
|
|
109
|
+
- security
|
|
110
|
+
- database
|
|
111
|
+
- performance
|
|
112
|
+
- documentation
|
|
113
|
+
- architecture
|
|
114
|
+
|
|
115
|
+
## Project Layout
|
|
116
|
+
|
|
117
|
+
```text
|
|
118
|
+
src/api/cli.ts CLI entrypoint
|
|
119
|
+
src/cli/phaseCommands.ts DEFINE/PLAN/BUILD/VERIFY/REVIEW/SHIP
|
|
120
|
+
src/workflow/gates/ Quality gates and persisted evidence
|
|
121
|
+
src/workflow/ReviewAnalyzer.ts Deterministic review analysis
|
|
122
|
+
src/workflow/ReviewStore.ts Review record persistence
|
|
123
|
+
src/workflow/EvidenceStore.ts Gate evidence persistence
|
|
124
|
+
src/artifact/ Artifact store and FSM definitions
|
|
125
|
+
src/guardrails/ Detector and gateway logic
|
|
126
|
+
src/evolution/ Defect/Lesson/Rule/Hook evolution layer
|
|
127
|
+
tests/ Vitest test suites
|
|
139
128
|
```
|
|
140
129
|
|
|
141
|
-
|
|
130
|
+
## Development
|
|
142
131
|
|
|
143
132
|
```bash
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
scale workflow list
|
|
133
|
+
npm install
|
|
134
|
+
npm run build
|
|
135
|
+
npx vitest run
|
|
136
|
+
npm pack --dry-run
|
|
149
137
|
```
|
|
150
138
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
```typescript
|
|
154
|
-
import { AgentPool, AgentDispatcher, KnowledgeBase } from '@hongmaple0820/scale-engine'
|
|
139
|
+
Targeted workflow tests:
|
|
155
140
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
141
|
+
```bash
|
|
142
|
+
npx vitest run tests/workflow/phaseCli.test.ts
|
|
143
|
+
npx vitest run tests/workflow/reviewAnalyzer.test.ts tests/workflow/reviewStore.test.ts tests/workflow/gateSystem.test.ts
|
|
159
144
|
```
|
|
160
145
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
## π CHANGELOG
|
|
164
|
-
|
|
165
|
-
### v0.8.0 (2026-05-08)
|
|
166
|
-
|
|
167
|
-
- Multi-Agent Collaboration System (12 profiles, AgentPool, Dispatcher, Channel, Coordinator)
|
|
168
|
-
- TF-IDF Memory Recall
|
|
169
|
-
- SessionStart Hook, AutoDefectCreator, BehaviorTracker.autoEvolve
|
|
170
|
-
- Karpathy Anti-Patterns
|
|
171
|
-
- Tests: 410 passed (32 files)
|
|
172
|
-
|
|
173
|
-
### v0.7.1 (2026-05-06)
|
|
174
|
-
|
|
175
|
-
- SessionStart hook, AutoDefectCreator, ContextBuilder enhancements
|
|
176
|
-
- Tests: 323 passed
|
|
177
|
-
|
|
178
|
-
### v0.6.0 (2026-04-29)
|
|
179
|
-
|
|
180
|
-
- SQLiteKnowledgeBase, FSM concurrency locks, ScopeCreepDetector
|
|
146
|
+
## Release Notes
|
|
181
147
|
|
|
182
|
-
### v0.
|
|
148
|
+
### v0.10.1
|
|
183
149
|
|
|
184
|
-
-
|
|
150
|
+
- Hardened `ship` so release commits stage only files covered by passing review records.
|
|
151
|
+
- Added `ship --no-commit` delivery reports for reviewable output without creating a Git commit.
|
|
152
|
+
- Added optional strict TDD evidence verification with `--tdd-evidence` and `--tdd-strict`.
|
|
153
|
+
- Added richer command evidence metadata: working directory, timestamps, stdout/stderr tails, and output hashes.
|
|
154
|
+
- Hardened deterministic review scanning for empty `catch`, `@ts-ignore`, focused tests, dangerous shell/Git commands, and security-sensitive changes without G7 evidence.
|
|
155
|
+
- Hardened built-in G7 security scanning with explainable file/line evidence and compatibility vs strict blocking modes.
|
|
156
|
+
- Added CLI/unit regression tests for `review -> ship`, unreviewed-file blocking, and security-scanner false-positive boundaries.
|
|
157
|
+
- Verified `npm run build`, full Vitest suite, and `npm pack --dry-run` before release.
|
|
185
158
|
|
|
186
|
-
|
|
159
|
+
### v0.10.0
|
|
187
160
|
|
|
188
|
-
|
|
161
|
+
- Added phase-aligned workflow commands with FSM integration.
|
|
162
|
+
- Added persisted verification evidence and review records.
|
|
163
|
+
- Published `@hongmaple0820/scale-engine@0.10.0`.
|
|
164
|
+
- Verified `npm run build`, full Vitest suite, and `npm pack --dry-run` before release.
|
|
189
165
|
|
|
190
|
-
|
|
166
|
+
## License
|
|
191
167
|
|
|
192
|
-
|
|
193
|
-
|----------|-----|
|
|
194
|
-
| **GitHub** | https://github.com/hongmaple0820/scale-engine |
|
|
195
|
-
| **Gitee (Mirror)** | https://gitee.com/hongmaple/scale-engine |
|
|
196
|
-
| **npm** | https://www.npmjs.com/package/@hongmaple0820/scale-engine |
|
|
197
|
-
|
|
198
|
-
### WeChat
|
|
199
|
-
|
|
200
|
-
- **Public Account**: Search "ιΈΏζ«ζζ―ζ "
|
|
201
|
-
- **Group Chat**: Add **mapleCx330** to join discussion group
|
|
202
|
-
- **Email**: 2496155694@qq.com
|
|
203
|
-
|
|
204
|
-
### Knowledge Planet (Β₯99/year)
|
|
205
|
-
|
|
206
|
-
- Exclusive skill packs and configuration templates
|
|
207
|
-
- Deep case study breakdowns
|
|
208
|
-
- 1v1 Q&A with community experts
|
|
209
|
-
- Early access to new features
|
|
210
|
-
|
|
211
|
-
> Join: https://t.zsxq.com/6T5Eq
|
|
212
|
-
|
|
213
|
-
---
|
|
214
|
-
|
|
215
|
-
### β€οΈ Support Open Source
|
|
216
|
-
|
|
217
|
-
<p align="center">
|
|
218
|
-
<img src="/image/wxPay.jpg" alt="WeChat Pay" width="150" />
|
|
219
|
-
<img src="/image/zfb.jpg" alt="Alipay" width="150" />
|
|
220
|
-
</p>
|
|
168
|
+
MIT
|