@sequentialos/app-task-debugger
v1.0.0
Published
Task execution debugger with run history and repair/rerun capabilities
Downloads
8
Readme
@sequential/app-task-debugger
Task execution debugger with run history, rerun capabilities, and test execution environment.
Installation
npm install @sequential/app-task-debuggerFeatures
- Integrated with Sequential Desktop environment
- Hot reload support for development
- Real-time collaboration via Zellous SDK
- Persistent state management
Usage
This package is typically used as a desktop application. Load it in Sequential Desktop via the app registry.
import manifest from './app-task-debugger/manifest.json';
// App automatically registers in desktop environmentManifest
Apps must export a manifest.json file:
{{
"id": "app-task-debugger",
"name": "App Name",
"version": "1.0.0",
"icon": "📱",
"entry": "dist/index.html",
"capabilities": ["sequential-os"],
"window": {{
"defaultWidth": 800,
"defaultHeight": 600,
"resizable": true
}}
}}Architecture
- Frontend: Single-page application in
dist/index.html - State: Persisted to localStorage with automatic restore
- Communication: WebSocket and HTTP APIs with Sequential Desktop
- Components: Built with vanilla JS or imported from @sequential/desktop-ui-components
Related Packages
- @sequential/desktop-shell - Window manager and desktop UI
- @sequential/desktop-ui-components - Shared UI components
- @sequential/zellous-client-sdk - Collaboration SDK
License
MIT
