Spaces:
Sleeping
Sleeping
| { | |
| "start": { | |
| "check": "is_task", | |
| "No": { | |
| "action": "add_to_evernote", | |
| "input": "task_topic" | |
| }, | |
| "Yes": { | |
| "action": "add_to_todoist", | |
| "input": "task_topic", | |
| "next": { | |
| "check": "task_category", | |
| "Blogs/Papers": { | |
| "action": "find_reference", | |
| "input": "task_topic", | |
| "output": "reference", | |
| "next": { | |
| "action": "generate_summary", | |
| "input": "reference", | |
| "output": "summary", | |
| "next": { | |
| "action": "suggest_relevance", | |
| "input": "summary" | |
| } | |
| } | |
| }, | |
| "Tools": { | |
| "action": "tool_research", | |
| "output": "tool_analysis", | |
| "next": { | |
| "check": "tool_type", | |
| "Competitive": { | |
| "action": "generate_comparison_table", | |
| "input": "tool_analysis" | |
| }, | |
| "Integration": { | |
| "action": "generate_integration_memo", | |
| "input": "tool_analysis" | |
| } | |
| } | |
| }, | |
| "Issues": { | |
| "action": "analyze_issue", | |
| "output": "issue_analysis", | |
| "next": { | |
| "action": "generate_issue_memo", | |
| "input": "issue_analysis" | |
| } | |
| }, | |
| "Brainstorming": { | |
| "action": "list_ideas", | |
| "output": "ideas", | |
| "next": { | |
| "action": "construct_matrix", | |
| "input": "ideas", | |
| "output": "matrix", | |
| "next": { | |
| "action": "prioritize_ideas", | |
| "input": "matrix", | |
| "output": "prioritized_ideas", | |
| "next": { | |
| "action": "setup_action_plan", | |
| "input": "prioritized_ideas" | |
| } | |
| } | |
| } | |
| }, | |
| "Others": { | |
| "action": "unsupported_task" | |
| } | |
| } | |
| } | |
| } | |
| } |