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:
6259
frontend/node_modules/storybook/dist/telemetry/index.cjs
generated
vendored
Normal file
6259
frontend/node_modules/storybook/dist/telemetry/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
135
frontend/node_modules/storybook/dist/telemetry/index.d.ts
generated
vendored
Normal file
135
frontend/node_modules/storybook/dist/telemetry/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
import { TypescriptOptions, StorybookConfig, PackageJson } from 'storybook/internal/types';
|
||||
import { BinaryLike } from 'crypto';
|
||||
|
||||
type Agent = 'npm' | 'yarn' | 'yarn@berry' | 'pnpm' | 'pnpm@6' | 'bun' | 'deno';
|
||||
type AgentName = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'deno';
|
||||
interface DetectResult {
|
||||
/**
|
||||
* Agent name without the specifier.
|
||||
*
|
||||
* Can be `npm`, `yarn`, `pnpm`, `bun`, or `deno`.
|
||||
*/
|
||||
name: AgentName;
|
||||
/**
|
||||
* Agent specifier to resolve the command.
|
||||
*
|
||||
* May contain '@' to differentiate the version (e.g. 'yarn@berry').
|
||||
* Use `name` for the agent name without the specifier.
|
||||
*/
|
||||
agent: Agent;
|
||||
/**
|
||||
* Specific version of the agent, read from `packageManager` field in package.json.
|
||||
*/
|
||||
version?: string;
|
||||
}
|
||||
|
||||
declare const monorepoConfigs: {
|
||||
readonly Nx: "nx.json";
|
||||
readonly Turborepo: "turbo.json";
|
||||
readonly Lerna: "lerna.json";
|
||||
readonly Rush: "rush.json";
|
||||
readonly Lage: "lage.config.json";
|
||||
};
|
||||
type MonorepoType = keyof typeof monorepoConfigs | 'Workspaces' | undefined;
|
||||
|
||||
type EventType = 'boot' | 'dev' | 'build' | 'index' | 'upgrade' | 'multi-upgrade' | 'init' | 'init-step' | 'scaffolded-empty' | 'browser' | 'canceled' | 'error' | 'error-metadata' | 'version-update' | 'core-config' | 'remove' | 'save-story' | 'create-new-story-file' | 'create-new-story-file-search' | 'testing-module-watch-mode' | 'testing-module-completed-report' | 'testing-module-crash-report' | 'addon-test' | 'test-run';
|
||||
interface Dependency {
|
||||
version: string | undefined;
|
||||
versionSpecifier?: string;
|
||||
}
|
||||
interface StorybookAddon extends Dependency {
|
||||
options: any;
|
||||
}
|
||||
type StorybookMetadata = {
|
||||
storybookVersion?: string;
|
||||
storybookVersionSpecifier: string;
|
||||
generatedAt?: number;
|
||||
userSince?: number;
|
||||
language: 'typescript' | 'javascript';
|
||||
framework?: {
|
||||
name: string;
|
||||
options?: any;
|
||||
};
|
||||
builder?: string;
|
||||
renderer?: string;
|
||||
monorepo?: MonorepoType;
|
||||
packageManager?: {
|
||||
type: DetectResult['name'];
|
||||
version: DetectResult['version'];
|
||||
agent: DetectResult['agent'];
|
||||
};
|
||||
typescriptOptions?: Partial<TypescriptOptions>;
|
||||
addons?: Record<string, StorybookAddon>;
|
||||
storybookPackages?: Record<string, Dependency>;
|
||||
metaFramework?: {
|
||||
name: string;
|
||||
packageName: string;
|
||||
version: string;
|
||||
};
|
||||
testPackages?: Record<string, string | undefined>;
|
||||
hasRouterPackage?: boolean;
|
||||
hasStorybookEslint?: boolean;
|
||||
hasStaticDirs?: boolean;
|
||||
hasCustomWebpack?: boolean;
|
||||
hasCustomBabel?: boolean;
|
||||
features?: StorybookConfig['features'];
|
||||
refCount?: number;
|
||||
preview?: {
|
||||
usesGlobals?: boolean;
|
||||
};
|
||||
portableStoriesFileCount?: number;
|
||||
applicationFileCount?: number;
|
||||
};
|
||||
interface Payload {
|
||||
[key: string]: any;
|
||||
}
|
||||
interface Options {
|
||||
retryDelay: number;
|
||||
immediate: boolean;
|
||||
configDir?: string;
|
||||
enableCrashReports?: boolean;
|
||||
stripMetadata?: boolean;
|
||||
notify?: boolean;
|
||||
}
|
||||
interface TelemetryData {
|
||||
eventType: EventType;
|
||||
payload: Payload;
|
||||
metadata?: StorybookMetadata;
|
||||
}
|
||||
|
||||
declare const oneWayHash: (payload: BinaryLike) => string;
|
||||
|
||||
declare const metaFrameworks: Record<string, string>;
|
||||
declare const sanitizeAddonName: (name: string) => string;
|
||||
declare const computeStorybookMetadata: ({ packageJsonPath, packageJson, mainConfig, configDir, }: {
|
||||
packageJsonPath: string;
|
||||
packageJson: PackageJson;
|
||||
mainConfig?: StorybookConfig & Record<string, any>;
|
||||
configDir: string;
|
||||
}) => Promise<StorybookMetadata>;
|
||||
declare const getStorybookMetadata: (_configDir?: string) => Promise<StorybookMetadata>;
|
||||
|
||||
interface IErrorWithStdErrAndStdOut {
|
||||
stderr?: Buffer | string;
|
||||
stdout?: Buffer | string;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
declare function removeAnsiEscapeCodes(input?: string): string;
|
||||
declare function cleanPaths(str: string, separator?: string): string;
|
||||
declare function sanitizeError(error: Error, pathSeparator?: string): any;
|
||||
|
||||
interface UpgradeSummary {
|
||||
timestamp: number;
|
||||
eventType?: EventType;
|
||||
eventId?: string;
|
||||
sessionId?: string;
|
||||
}
|
||||
declare const getPrecedingUpgrade: (events?: any) => Promise<UpgradeSummary | undefined>;
|
||||
|
||||
declare const addToGlobalContext: (key: string, value: any) => void;
|
||||
|
||||
/** Is this story part of the CLI generated examples, including user-created stories in those files */
|
||||
declare const isExampleStoryId: (storyId: string) => boolean;
|
||||
declare const telemetry: (eventType: EventType, payload?: Payload, options?: Partial<Options>) => Promise<void>;
|
||||
|
||||
export { type Dependency, type EventType, type IErrorWithStdErrAndStdOut, type Options, type Payload, type StorybookAddon, type StorybookMetadata, type TelemetryData, addToGlobalContext, cleanPaths, computeStorybookMetadata, getPrecedingUpgrade, getStorybookMetadata, isExampleStoryId, metaFrameworks, oneWayHash, removeAnsiEscapeCodes, sanitizeAddonName, sanitizeError, telemetry };
|
||||
6304
frontend/node_modules/storybook/dist/telemetry/index.js
generated
vendored
Normal file
6304
frontend/node_modules/storybook/dist/telemetry/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user