-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoclif.manifest.json
1 lines (1 loc) · 6.9 KB
/
oclif.manifest.json
1
{"version":"0.0.0","commands":{"random:rainbowify":{"id":"random:rainbowify","description":"Creates a rainbowified/party-fied gif from an image for slack","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"image":{"name":"image","type":"option","description":"Image to use","required":false,"multiple":false},"gif":{"name":"gif","type":"option","description":"Gif to use","required":false,"multiple":false,"exclusive":["colors"]},"useGifIntermediateFrames":{"name":"useGifIntermediateFrames","type":"boolean","description":"Whether or not to add intermediate frames to gifs to keep the fast rainbow effect. Can increase the size of the gif.","required":false,"allowNo":true,"exclusive":["image"]},"outDir":{"name":"outDir","type":"option","description":"Output file dir","required":false,"multiple":false,"default":"."},"colors":{"name":"colors","type":"option","description":"Number of colors to use","required":false,"multiple":false,"default":10},"delay":{"name":"delay","type":"option","description":"Frame delay for the gif","required":false,"multiple":false,"default":3},"saturation":{"name":"saturation","type":"option","description":"Saturation level to apply to each frame","required":false,"multiple":false,"default":50},"lighten":{"name":"lighten","type":"option","description":"Lightening level to apply to each frame","required":false,"multiple":false,"default":10},"size":{"name":"size","type":"option","description":"Squared size of the output image (scaled to fit)","required":false,"multiple":false,"default":128}},"args":[],"_globalFlags":{}},"adventofcode:2022:adventofcode-2022-command":{"id":"adventofcode:2022:adventofcode-2022-command","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{},"args":[]},"dev:git:switch-shortcut-branch":{"id":"dev:git:switch-shortcut-branch","description":"Switches to a branch by a shortcut name","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"token":{"name":"token","type":"option","required":true,"multiple":false}},"args":[],"_globalFlags":{}},"adventofcode:2022:day1:max-sum":{"id":"adventofcode:2022:day1:max-sum","description":"Given a list of groups of numbers, calculates the top groups with the highest total and returns their sum. https://adventofcode.com/2022/day/2","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing groups of numbers. Numbers are one per line and groups are separated by empty lines.","required":true,"multiple":false},"top":{"name":"top","type":"option","description":"The number of maximum values to take and sum together.","required":false,"multiple":false,"default":1}},"args":[],"_globalFlags":{}},"adventofcode:2022:day2:day2":{"id":"adventofcode:2022:day2:day2","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{},"args":[]},"adventofcode:2022:day2:rock-paper-scissors-2":{"id":"adventofcode:2022:day2:rock-paper-scissors-2","description":"Given a list of pairs of one player's rock, paper, scissors choices and the desired result, calculate the scores for each players. https://adventofcode.com/2022/day/2#part2","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing pairs of encoded rock, paper, scissors games. Each game is a line. One encoded letter representing player selection and one encoded letter representing the desired result per line","required":true,"multiple":false}},"args":[],"_globalFlags":{}},"adventofcode:2022:day2:rock-paper-scissors":{"id":"adventofcode:2022:day2:rock-paper-scissors","description":"Given a list of pairs of head to head rock paper scissors, calculate the score for both players. https://adventofcode.com/2022/day/2","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing pairs of encoded rock, paper, scissors games. Each game is a line. Two encoded letters representing player selections per line","required":true,"multiple":false}},"args":[],"_globalFlags":{}},"adventofcode:2022:day3:rucksack-duplicates":{"id":"adventofcode:2022:day3:rucksack-duplicates","description":"Given a list of items per rucksack, find the items that exist in both compartments and score them on priority: https://adventofcode.com/2022/day/3\nAlso finds the badge to label the rucksacks with. Rucksacks are grouped into sets of three and the badge can be identified as the only item contained in all three: https://adventofcode.com/2022/day/3#part2","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing the items in each rucksack. Each line is a rucksack, each letter is an item. Each rucksack has a variable number of compartments (but all have the same number).","required":true,"multiple":false},"compartmentsPerRucksack":{"name":"compartmentsPerRucksack","type":"option","char":"c","description":"The number of compartments per rucksack. Defaults to 2.","required":false,"multiple":false,"default":2}},"args":[],"_globalFlags":{}},"adventofcode:2022:day4:camp-cleanup-overlap":{"id":"adventofcode:2022:day4:camp-cleanup-overlap","description":"Given pairs of ranges of cleaning zones, find the number with overlapped sections: https://adventofcode.com/2022/day/4","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing pairs of numerical ranges. One pair per line.","required":true,"multiple":false}},"args":[],"_globalFlags":{}},"adventofcode:2022:day5:box-stacking":{"id":"adventofcode:2022:day5:box-stacking","description":"Runs a set of crane restacking instructions on an initial stacked box state: https://adventofcode.com/2022/day/5","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing the initial stacks and the crane instructions","required":true,"multiple":false},"boxesMoveOneAtATime":{"name":"boxesMoveOneAtATime","type":"boolean","required":false,"allowNo":true}},"args":[],"_globalFlags":{}},"adventofcode:2022:day6:unique-n-gram":{"id":"adventofcode:2022:day6:unique-n-gram","description":"Finds the first n-gram where all the characters are unique: https://adventofcode.com/2022/day/6","strict":true,"pluginName":"rk","pluginAlias":"rk","pluginType":"core","aliases":[],"flags":{"file":{"name":"file","type":"option","description":"A file containing sequences of characters, each sequence on its own line","required":true,"multiple":false},"n":{"name":"n","type":"option","description":"The size of the n-gram to detect","required":false,"multiple":false,"default":4}},"args":[],"_globalFlags":{}}}}