-
Decompose all subtasks required to accomplish this task into a dependency graph of nodes.
-
Spawn agents to work through this dependency graph.
- Note:
wait_for_agenttool can be buggy—may need to call it multiple times.
- Note:
-
Manage/orchestrate Voicetree MCP agents to work through the dependency graph.
Your task is to decompose a task into a subtask dependency graph and add it to the markdown tree.
Sequential phases that depend on each other: Phase 1, Phase 2, Phase 3
- Dependent subtask = child of previous phase
Phase N+1is a child ofPhase N
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Manu Masson | |
| def or_f( a, b, ): | |
| if a > b: | |
| return a | |
| else: | |
| return b | |
| def and_f( a, b): | |
| if a < b: | |
| return a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| #include <math.h> | |
| #define MAX 256 | |
| #define PIXELS 512*512 | |
| #define ZOOM 6 | |
| #define CENTER_Y 0 | |
| #define CENTER_X 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * chessboard.c | |
| * create a 512x512 BMP of a chessboard, with user specified size (in pixels) | |
| * of the black and white squares on the board. bottom right square must be white. | |
| * | |
| * Created by Richard Buckland on 14/04/11, edited 5/4/14 | |
| * Licensed under Creative Commons BY 3.0. | |
| * | |
| */ | |
| #include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * doomsday.c | |
| * A program to test a function dayOfWeek which determines which | |
| * day of the week a particular date falls on. | |
| * (only for dates after the start of the Gregorian calendar). | |
| * | |
| * Program stub created by Richard Buckland on 17/03/14 | |
| * This program by YOUR-NAME-HERE | |
| * Freely licensed under Creative Commons CC-BY-3.0 | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="col-xs-12 col-md-offset-1 col-md-6"> | |
| <div class="chart animated animatedFadeInUp fadeInUp"> | |
| <div> | |
| with content.... | |
| . | |
| . | |
| . | |
| . | |
| . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function gdaxOpen(price, volume, coinTicker, type, orderID) { | |
| return new Promise((async(resolve, reject) => { | |
| function callback(err, response, data) { | |
| if (err) throw err; | |
| console.log('gdax response:, ERR:', err, "Ticker:", data.product_id, coinTicker, "Type: .. Price", data.side, type, price, "Response message:", data.message); | |
| // logger.write(`GDAX api call response: ${data}`); | |
| if (data.id) resolve(data.id); | |
| else { | |
| console.log(data); | |
| resolve(false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Enhanced Pokevision | |
| // @namespace pokevision.com | |
| // @author Justus | |
| // @include https://pokevision* | |
| // | |
| // @run-at document-ready | |
| // @include-jquery true | |
| // @version 1.0.1 | |
| // ==/UserScript== |