一键导入
task-master-viewer
Launch a Streamlit GUI for Task Master tasks.json editing. Use when users want a visual interface instead of CLI/MCP commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Launch a Streamlit GUI for Task Master tasks.json editing. Use when users want a visual interface instead of CLI/MCP commands.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Complete workflow for migrating database tables, views, and stored procedures to dbt projects on Snowflake. Orchestrates discovery, planning, placeholder creation, view/procedure conversion, testing, and deployment. Delegates platform-specific syntax translation to source-specific skills.
Convert Google BigQuery DDL to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or stored procedures from BigQuery to dbt code, generating schema.yml files with tests and documentation, or migrating BigQuery SQL to follow dbt best practices.
Convert IBM DB2 DDL to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or stored procedures from DB2 to dbt code, generating schema.yml files with tests and documentation, or migrating DB2 SQL to follow dbt best practices.
Convert Hive/Spark/Databricks DDL to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or UDFs from Hive, Spark, or Databricks to dbt code, generating schema.yml files with tests and documentation, or migrating HiveQL to follow dbt best practices.
Convert Microsoft SQL Server/Azure Synapse T-SQL DDL to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or stored procedures from SQL Server to dbt code, generating schema.yml files with tests and documentation, or migrating T-SQL to follow dbt best practices.
Convert Oracle DDL to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or stored procedures from Oracle to dbt code, generating schema.yml files with tests and documentation, or migrating Oracle PL/SQL to follow dbt best practices.
| name | task-master-viewer |
| description | Launch a Streamlit GUI for Task Master tasks.json editing. Use when users want a visual interface instead of CLI/MCP commands. |
Visual GUI for managing Task Master tasks.json files.
Use when:
Don't use when:
task-master list, etc.)python -c "import streamlit" 2>/dev/null && echo "✓ Installed" || pip install -U streamlit
cd .claude/skills/task-master-viewer && streamlit run app.py
Output:
Local URL: http://localhost:8501
App opens automatically in user's browser.
✓ Task Master editor is open at http://localhost:8501
To stop: Close browser tab and press Ctrl+C
File Location: .claude/skills/task-master-viewer/app.py
Dependencies: streamlit (only requirement)
Default Path: PROJECT_ROOT/.taskmaster/tasks/tasks.json
Port: 8501 (auto-increments if busy)
Theme: Snowflake brand colors in .streamlit/config.toml
Data Format: Standard Task Master JSON with tagged task lists
Foreground (default):
# User presses Ctrl+C
Kill Process:
pkill -f "streamlit run"
Background (if needed):
cd .claude/skills/task-master-viewer
nohup streamlit run app.py > /dev/null 2>&1 &
echo $! > streamlit.pid
# To stop
kill $(cat streamlit.pid)
| Issue | Solution |
|---|---|
| "Address already in use" | pkill -f "streamlit run" then restart |
| "Module 'streamlit' not found" | pip install streamlit |
| Wrong directory error | Must run from .claude/skills/task-master-viewer/ |
| File not found | User sets path in sidebar settings |
Do:
Don't:
Works alongside:
User: "Can I see my tasks visually?"
Agent:
Installing Streamlit... ✓
Launching Task Master editor... ✓
Editor is open at http://localhost:8501
All instructions are in the app interface.
To stop: Close browser tab and press Ctrl+C.