agentic-workflow-designer-vsc-extension
A visual studio code extension to build agentic workflow visually
File Explorer
- openai.yaml
- ADR-FORMAT.md
- CONTEXT-FORMAT.md
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- SKILL.md
- openai.yaml
- HTML-REPORT.md
- SKILL.md
- openai.yaml
- mocking.md
- SKILL.md
- tests.md
- builder.agent.md
- general.agent.md
- implementer.agent.md
- qa.agent.md
- reviewer.agent.md
- SKILL.md
- SKILL.md
- build-extension-full.workflow.yaml
- build-extension.workflow.yaml
- build-feature.workflow.yaml
- implement-feature.workflow.yaml
- implement.workflow.yaml
- loop-demo.workflow.yaml
- mother-project.workflow-project.yaml
- pr-skill-review.yml
- release-to-github.workflow.yaml
- launch.json
- tasks.json
- 0001-multi-workflow-project-view.md
- chat-integration-view.png
- edit-view.png
- outer-and-inner-loop.png
- outer-loop-annotations-spec.md
- add.svg
- library.svg
- new.svg
- pause.svg
- play.svg
- resume.svg
- save.svg
- stop.svg
- validate.svg
- add.svg
- library.svg
- new.svg
- pause.svg
- play.svg
- resume.svg
- save.svg
- stop.svg
- validate.svg
- workflow-icon.svg
- build-webview.js
- dev-rebuild.sh
- pr-skill-review.js
- watch-webview.js
- workflowChatParticipant.ts
- projectDesignerProvider.ts
- workflowDesignerProvider.ts
- workflow.ts
- executionDetails.ts
- workflowExplorer.ts
- agentInvoker.ts
- conditionEvaluator.ts
- executionContext.ts
- executionLogExporter.ts
- executionLogWriter.ts
- executionObserver.interface.ts
- executionObserver.ts
- runHistory.ts
- stateManager.ts
- workflowExecutor.ts
- workflowRuntime.ts
- projectSerializer.ts
- workflowValidator.ts
- yamlSerializer.ts
- extension.ts
- animation-config.test.ts
- annotation-node.test.ts
- approval-node.test.ts
- branch-routing.test.ts
- description-property.test.ts
- designer-runtime-ui.test.ts
- edge-features.test.ts
- edit-mode.test.ts
- execution-log-removal.test.js.map
- execution-log-removal.test.ts
- execution-log-writer.test.ts
- executor.test.ts
- export-logs.test.ts
- initial-state.test.ts
- label-node.test.ts
- loop-node.test.ts
- pause-resume.test.ts
- project-model.test.ts
- project-serializer.test.ts
- project-view.test.ts
- runtime.test.js.map
- runtime.test.ts
- selection-box.test.ts
- standalone-designer.test.ts
- state-mappings-ui.test.ts
- theme-adaptation.test.ts
- ui-regression.test.ts
- validation-diagnostics.test.ts
- designer.css
- designer.css
- designer.ts
- messagingHarness.ts
- testingHarness.ts
- tsconfig.json
- vscode-webview.d.ts
- vscodeHarness.ts
- standalone.html
- test.html
- .gitignore
- CONTEXT.md
- eslint.config.js
- implementation_plan.md
- jest.config.js
- LICENSE
- package-lock.json
- package.json
- product_requirements.md
- README.md
- skills-lock.json
- tsconfig.json
- vite.standalone.config.js
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
