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:
anthonyrawlins
2025-07-12 19:41:01 +10:00
parent 9a6a06da89
commit e89f2f4b7b
4980 changed files with 1501266 additions and 57 deletions

View File

@@ -0,0 +1,5 @@
import { DecoratorFunction } from 'storybook/internal/types';
declare const withControls: DecoratorFunction;
export { withControls };

View File

@@ -0,0 +1,8 @@
var n = Object.defineProperty;
var r = (t, o) => n(t, "name", { value: o, configurable: !0 });
// src/controls/decorator.ts
var a = /* @__PURE__ */ r((t, o) => t(o), "withControls");
export {
a as withControls
};

View File

@@ -0,0 +1,26 @@
"use strict";
var n = Object.defineProperty;
var e = Object.getOwnPropertyDescriptor;
var p = Object.getOwnPropertyNames;
var x = Object.prototype.hasOwnProperty;
var a = (t, o) => {
for (var s in o)
n(t, s, { get: o[s], enumerable: !0 });
}, A = (t, o, s, c) => {
if (o && typeof o == "object" || typeof o == "function")
for (let r of p(o))
!x.call(t, r) && r !== s && n(t, r, { get: () => o[r], enumerable: !(c = e(o, r)) || c.enumerable });
return t;
};
var D = (t) => A(n({}, "__esModule", { value: !0 }), t);
// src/controls/index.ts
var l = {};
a(l, {
ADDON_ID: () => d,
PARAM_KEY: () => f
});
module.exports = D(l);
// src/controls/constants.ts
var d = "addon-controls", f = "controls";

View File

@@ -0,0 +1,39 @@
declare const ADDON_ID: "addon-controls";
declare const PARAM_KEY: "controls";
interface ControlsParameters {
/**
* Controls configuration
*
* @see https://storybook.js.org/docs/essentials/controls#parameters-1
*/
controls: {
/** Remove the addon panel and disable the addon's behavior */
disable?: boolean;
/** Disable the ability to create or edit stories from the Controls panel */
disableSaveFromUI?: boolean;
/** Exclude specific properties from the Controls panel */
exclude?: string[] | RegExp;
/**
* Show the full documentation for each property in the Controls addon panel, including the
* description and default value.
*/
expanded?: boolean;
/** Exclude only specific properties in the Controls panel */
include?: string[] | RegExp;
/**
* Preset color swatches for the color picker control
*
* @example PresetColors: [{ color: '#ff4785', title: 'Coral' }, 'rgba(0, 159, 183, 1)',
* '#fe4a49']
*/
presetColors?: Array<string | {
color: string;
title?: string;
}>;
/** Controls sorting order */
sort?: 'none' | 'alpha' | 'requiredFirst';
};
}
export { ADDON_ID, type ControlsParameters, PARAM_KEY };

View File

@@ -0,0 +1,6 @@
// src/controls/constants.ts
var o = "addon-controls", t = "controls";
export {
o as ADDON_ID,
t as PARAM_KEY
};