Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
14
frontend/node_modules/unicorn-magic/default.js
generated
vendored
Normal file
14
frontend/node_modules/unicorn-magic/default.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export async function delay({seconds, milliseconds} = {}) {
|
||||
let duration;
|
||||
if (typeof seconds === 'number') {
|
||||
duration = seconds * 1000;
|
||||
} else if (typeof milliseconds === 'number') {
|
||||
duration = milliseconds;
|
||||
} else {
|
||||
throw new TypeError('Expected an object with either `seconds` or `milliseconds`.');
|
||||
}
|
||||
|
||||
return new Promise(resolve => {
|
||||
setTimeout(resolve, duration);
|
||||
});
|
||||
}
|
||||
29
frontend/node_modules/unicorn-magic/index.d.ts
generated
vendored
Normal file
29
frontend/node_modules/unicorn-magic/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
Delay the promise for the given duration.
|
||||
|
||||
@example
|
||||
```
|
||||
import {delay} from 'unicorn-magic';
|
||||
|
||||
await delay({seconds: 1});
|
||||
|
||||
console.log('1 second later');
|
||||
```
|
||||
*/
|
||||
export function delay(duration: {seconds: number} | {milliseconds: number}): Promise<void>;
|
||||
|
||||
/**
|
||||
Convert a `URL` or path to a path.
|
||||
|
||||
**Not available in browsers.**
|
||||
|
||||
@example
|
||||
```
|
||||
import path from 'node:path';
|
||||
import {toPath} from 'unicorn-magic';
|
||||
|
||||
// `cwd` can be `URL` or a path string.
|
||||
const getUnicornPath = cwd => path.join(toPath(cwd), 'unicorn');
|
||||
```
|
||||
*/
|
||||
export function toPath(urlOrPath: URL | string): string;
|
||||
9
frontend/node_modules/unicorn-magic/license
generated
vendored
Normal file
9
frontend/node_modules/unicorn-magic/license
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
7
frontend/node_modules/unicorn-magic/node.js
generated
vendored
Normal file
7
frontend/node_modules/unicorn-magic/node.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import {fileURLToPath} from 'node:url';
|
||||
|
||||
export function toPath(urlOrPath) {
|
||||
return urlOrPath instanceof URL ? fileURLToPath(urlOrPath) : urlOrPath;
|
||||
}
|
||||
|
||||
export * from './default.js';
|
||||
49
frontend/node_modules/unicorn-magic/package.json
generated
vendored
Normal file
49
frontend/node_modules/unicorn-magic/package.json
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "unicorn-magic",
|
||||
"version": "0.1.0",
|
||||
"description": "Some useful utilities I often need",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/unicorn-magic",
|
||||
"funding": "https://github.com/sponsors/sindresorhus",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
"types": "./index.d.ts",
|
||||
"node": "./node.js",
|
||||
"default": "./default.js"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsc index.d.ts"
|
||||
},
|
||||
"files": [
|
||||
"node.js",
|
||||
"default.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"utilities",
|
||||
"util",
|
||||
"extras",
|
||||
"url",
|
||||
"path",
|
||||
"delay",
|
||||
"wait",
|
||||
"settimeout",
|
||||
"sleep"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^5.3.1",
|
||||
"in-range": "^3.0.0",
|
||||
"time-span": "^5.1.0",
|
||||
"typescript": "^5.2.2",
|
||||
"xo": "^0.56.0"
|
||||
}
|
||||
}
|
||||
25
frontend/node_modules/unicorn-magic/readme.md
generated
vendored
Normal file
25
frontend/node_modules/unicorn-magic/readme.md
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# unicorn-magic
|
||||
|
||||
> Some useful utilities I often need
|
||||
|
||||
*I'm not accepting requests.*
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install unicorn-magic
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import {delay} from 'unicorn-magic';
|
||||
|
||||
await delay({seconds: 1});
|
||||
|
||||
console.log('1 second later');
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
See [the types](index.d.ts).
|
||||
Reference in New Issue
Block a user