SuperCharge Claude Code v1.0.0 - Complete Customization Package
Features: - 30+ Custom Skills (cognitive, development, UI/UX, autonomous agents) - RalphLoop autonomous agent integration - Multi-AI consultation (Qwen) - Agent management system with sync capabilities - Custom hooks for session management - MCP servers integration - Plugin marketplace setup - Comprehensive installation script Components: - Skills: always-use-superpowers, ralph, brainstorming, ui-ux-pro-max, etc. - Agents: 100+ agents across engineering, marketing, product, etc. - Hooks: session-start-superpowers, qwen-consult, ralph-auto-trigger - Commands: /brainstorm, /write-plan, /execute-plan - MCP Servers: zai-mcp-server, web-search-prime, web-reader, zread - Binaries: ralphloop wrapper Installation: ./supercharge.sh
This commit is contained in:
5
plugins/claude-code-safety-net/dist/core/analyze/analyze-command.d.ts
vendored
Normal file
5
plugins/claude-code-safety-net/dist/core/analyze/analyze-command.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
import { type AnalyzeOptions, type AnalyzeResult, type Config } from '../../types.ts';
|
||||
export type InternalOptions = AnalyzeOptions & {
|
||||
config: Config;
|
||||
};
|
||||
export declare function analyzeCommandInternal(command: string, depth: number, options: InternalOptions): AnalyzeResult | null;
|
||||
1
plugins/claude-code-safety-net/dist/core/analyze/constants.d.ts
vendored
Normal file
1
plugins/claude-code-safety-net/dist/core/analyze/constants.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare const DISPLAY_COMMANDS: ReadonlySet<string>;
|
||||
1
plugins/claude-code-safety-net/dist/core/analyze/dangerous-text.d.ts
vendored
Normal file
1
plugins/claude-code-safety-net/dist/core/analyze/dangerous-text.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare function dangerousInText(text: string): string | null;
|
||||
6
plugins/claude-code-safety-net/dist/core/analyze/find.d.ts
vendored
Normal file
6
plugins/claude-code-safety-net/dist/core/analyze/find.d.ts
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export declare function analyzeFind(tokens: readonly string[]): string | null;
|
||||
/**
|
||||
* Check if find command has -delete action (not as argument to another option).
|
||||
* Handles cases like "find -name -delete" where -delete is a filename pattern.
|
||||
*/
|
||||
export declare function findHasDelete(tokens: readonly string[]): boolean;
|
||||
2
plugins/claude-code-safety-net/dist/core/analyze/interpreters.d.ts
vendored
Normal file
2
plugins/claude-code-safety-net/dist/core/analyze/interpreters.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export declare function extractInterpreterCodeArg(tokens: readonly string[]): string | null;
|
||||
export declare function containsDangerousCode(code: string): boolean;
|
||||
9
plugins/claude-code-safety-net/dist/core/analyze/parallel.d.ts
vendored
Normal file
9
plugins/claude-code-safety-net/dist/core/analyze/parallel.d.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface ParallelAnalyzeContext {
|
||||
cwd: string | undefined;
|
||||
originalCwd: string | undefined;
|
||||
paranoidRm: boolean | undefined;
|
||||
allowTmpdirVar: boolean;
|
||||
analyzeNested: (command: string) => string | null;
|
||||
}
|
||||
export declare function analyzeParallel(tokens: readonly string[], context: ParallelAnalyzeContext): string | null;
|
||||
export declare function extractParallelChildCommand(tokens: readonly string[]): string[];
|
||||
1
plugins/claude-code-safety-net/dist/core/analyze/rm-flags.d.ts
vendored
Normal file
1
plugins/claude-code-safety-net/dist/core/analyze/rm-flags.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare function hasRecursiveForceFlags(tokens: readonly string[]): boolean;
|
||||
8
plugins/claude-code-safety-net/dist/core/analyze/segment.d.ts
vendored
Normal file
8
plugins/claude-code-safety-net/dist/core/analyze/segment.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import { type AnalyzeOptions, type Config } from '../../types.ts';
|
||||
export type InternalOptions = AnalyzeOptions & {
|
||||
config: Config;
|
||||
effectiveCwd: string | null | undefined;
|
||||
analyzeNested: (command: string) => string | null;
|
||||
};
|
||||
export declare function analyzeSegment(tokens: string[], depth: number, options: InternalOptions): string | null;
|
||||
export declare function segmentChangesCwd(segment: readonly string[]): boolean;
|
||||
1
plugins/claude-code-safety-net/dist/core/analyze/shell-wrappers.d.ts
vendored
Normal file
1
plugins/claude-code-safety-net/dist/core/analyze/shell-wrappers.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare function extractDashCArg(tokens: readonly string[]): string | null;
|
||||
1
plugins/claude-code-safety-net/dist/core/analyze/tmpdir.d.ts
vendored
Normal file
1
plugins/claude-code-safety-net/dist/core/analyze/tmpdir.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare function isTmpdirOverriddenToNonTemp(envAssignments: Map<string, string>): boolean;
|
||||
14
plugins/claude-code-safety-net/dist/core/analyze/xargs.d.ts
vendored
Normal file
14
plugins/claude-code-safety-net/dist/core/analyze/xargs.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface XargsAnalyzeContext {
|
||||
cwd: string | undefined;
|
||||
originalCwd: string | undefined;
|
||||
paranoidRm: boolean | undefined;
|
||||
allowTmpdirVar: boolean;
|
||||
}
|
||||
export declare function analyzeXargs(tokens: readonly string[], context: XargsAnalyzeContext): string | null;
|
||||
interface XargsParseResult {
|
||||
childTokens: string[];
|
||||
replacementToken: string | null;
|
||||
}
|
||||
export declare function extractXargsChildCommandWithInfo(tokens: readonly string[]): XargsParseResult;
|
||||
export declare function extractXargsChildCommand(tokens: readonly string[]): string[];
|
||||
export {};
|
||||
Reference in New Issue
Block a user