fix(ext): handle stopped lifecycle state

This commit is contained in:
Simon
2026-06-11 19:53:30 +08:00
parent e270ba15b5
commit edb769b826
4 changed files with 21 additions and 15 deletions

View File

@@ -131,7 +131,7 @@ export type Execute = (task: string, config: ExecuteConfig) => Promise<Execution
`AgentStatus`
```typescript
type AgentStatus = 'idle' | 'running' | 'completed' | 'error'
type AgentStatus = 'idle' | 'running' | 'completed' | 'error' | 'stopped'
```
`AgentActivity`