smithery.ai

taskflow

Build and run the full TaskFlow demo stack (Express backend + React frontend + mobile)

First seen Mar 24, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,308 B
  • docs SUMMARY.md 102 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

TaskFlow Demo

Build and run the full-stack demo that showcases dart_node's capabilities.

Run it

sh examples/run_taskflow.sh

This:

  1. Kills any existing processes on ports 3000 and 8080
  2. Builds backend, mobile, and frontend from Dart to JS
  3. Starts the Express backend on http://localhost:3000
  4. Starts the frontend dev server on http://localhost:8080/web/
  5. Traps Ctrl+C for clean shutdown

Ports

Service Port How
Backend API (Express) 3000 node examples/backend/build/server.js
Frontend (static) 8080 python3 -m http.server 8080
Mobile (Expo) cd examples/mobile/rn && npm run ios or npm run android

Prerequisites

Dependencies must be installed first. If the build fails, run:

./tools/pub_get.sh

Or use the Dev Container which runs post-create.sh automatically.

Manual start (individual services)

Backend only:

dart run tools/build/build.dart backend && node examples/backend/build/server.js

Frontend only:

cd examples/frontend && bash build.sh && python3 -m http.server 8080