@pcircle/claude-code-buddy-mcp 2.3.10 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/HookIntegration.d.ts +5 -1
- package/dist/core/HookIntegration.d.ts.map +1 -1
- package/dist/core/HookIntegration.js +73 -46
- package/dist/core/HookIntegration.js.map +1 -1
- package/dist/core/TestOutputParser.d.ts +20 -0
- package/dist/core/TestOutputParser.d.ts.map +1 -0
- package/dist/core/TestOutputParser.js +144 -0
- package/dist/core/TestOutputParser.js.map +1 -0
- package/dist/mcp/resources/best-practices.md +67 -0
- package/dist/mcp/resources/examples.md +56 -0
- package/dist/mcp/resources/quick-reference.md +73 -0
- package/dist/mcp/resources/usage-guide.md +92 -0
- package/dist/memory/ProjectAutoTracker.d.ts +13 -0
- package/dist/memory/ProjectAutoTracker.d.ts.map +1 -1
- package/dist/memory/ProjectAutoTracker.js +89 -5
- package/dist/memory/ProjectAutoTracker.js.map +1 -1
- package/package.json +3 -2
- package/plugin.json +1 -1
- package/dist/__benchmarks__/performance-fixes.bench.d.ts +0 -8
- package/dist/__benchmarks__/performance-fixes.bench.d.ts.map +0 -1
- package/dist/__benchmarks__/performance-fixes.bench.js +0 -213
- package/dist/__benchmarks__/performance-fixes.bench.js.map +0 -1
- package/dist/core/BackgroundExecutorConstants.d.ts +0 -8
- package/dist/core/BackgroundExecutorConstants.d.ts.map +0 -1
- package/dist/core/BackgroundExecutorConstants.js +0 -8
- package/dist/core/BackgroundExecutorConstants.js.map +0 -1
- package/dist/evolution/LearningManagerConstants.d.ts +0 -55
- package/dist/evolution/LearningManagerConstants.d.ts.map +0 -1
- package/dist/evolution/LearningManagerConstants.js +0 -55
- package/dist/evolution/LearningManagerConstants.js.map +0 -1
- package/dist/evolution/PerformanceTrackerConstants.d.ts +0 -5
- package/dist/evolution/PerformanceTrackerConstants.d.ts.map +0 -1
- package/dist/evolution/PerformanceTrackerConstants.js +0 -5
- package/dist/evolution/PerformanceTrackerConstants.js.map +0 -1
- package/dist/orchestrator/GlobalResourcePoolConstants.d.ts +0 -22
- package/dist/orchestrator/GlobalResourcePoolConstants.d.ts.map +0 -1
- package/dist/orchestrator/GlobalResourcePoolConstants.js +0 -22
- package/dist/orchestrator/GlobalResourcePoolConstants.js.map +0 -1
- package/dist/orchestrator/TaskAnalyzerConstants.d.ts +0 -16
- package/dist/orchestrator/TaskAnalyzerConstants.d.ts.map +0 -1
- package/dist/orchestrator/TaskAnalyzerConstants.js +0 -16
- package/dist/orchestrator/TaskAnalyzerConstants.js.map +0 -1
- package/dist/templates/git-education-templates.d.ts +0 -26
- package/dist/templates/git-education-templates.d.ts.map +0 -1
- package/dist/templates/git-education-templates.js +0 -455
- package/dist/templates/git-education-templates.js.map +0 -1
- package/dist/utils/SecureKeyStore.d.ts +0 -10
- package/dist/utils/SecureKeyStore.d.ts.map +0 -1
- package/dist/utils/SecureKeyStore.js +0 -32
- package/dist/utils/SecureKeyStore.js.map +0 -1
- package/dist/utils/cost-tracker.d.ts +0 -34
- package/dist/utils/cost-tracker.d.ts.map +0 -1
- package/dist/utils/cost-tracker.js +0 -92
- package/dist/utils/cost-tracker.js.map +0 -1
- package/dist/utils/validation.d.ts +0 -7
- package/dist/utils/validation.d.ts.map +0 -1
- package/dist/utils/validation.js +0 -62
- package/dist/utils/validation.js.map +0 -1
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
export declare const QUALITY_THRESHOLDS: {
|
|
2
|
-
readonly HIGH: 0.8;
|
|
3
|
-
readonly LOW: 0.5;
|
|
4
|
-
readonly MIN_ACCEPTABLE: 0.7;
|
|
5
|
-
};
|
|
6
|
-
export declare const COST_OPTIMIZATION: {
|
|
7
|
-
readonly REDUCTION_TARGET: 0.8;
|
|
8
|
-
readonly VARIATION_PERCENT: 0.1;
|
|
9
|
-
readonly VARIATION_MIN_ABSOLUTE: 0.01;
|
|
10
|
-
readonly TARGET_REDUCTION: 0.2;
|
|
11
|
-
};
|
|
12
|
-
export declare const LEARNING_PARAMETERS: {
|
|
13
|
-
readonly CONFIDENCE_INCREMENT: 0.02;
|
|
14
|
-
readonly STATISTICAL_BASELINE_SAMPLES: 30;
|
|
15
|
-
readonly CONFIDENCE_PER_OBSERVATION: 0.3;
|
|
16
|
-
};
|
|
17
|
-
export declare const COMPLEXITY_THRESHOLDS: {
|
|
18
|
-
readonly LOW_MS: 5000;
|
|
19
|
-
readonly MEDIUM_MS: 15000;
|
|
20
|
-
};
|
|
21
|
-
export declare const STATISTICAL_PARAMETERS: {
|
|
22
|
-
readonly P95_MIN_SAMPLE_SIZE: 20;
|
|
23
|
-
readonly P95_PERCENTILE: 0.95;
|
|
24
|
-
readonly P95_TIMEOUT_MULTIPLIER: 1.5;
|
|
25
|
-
};
|
|
26
|
-
export declare const MEMORY_LIMITS: {
|
|
27
|
-
readonly MAX_SAVED_AGENTS: 100;
|
|
28
|
-
readonly MAX_PATTERNS_PER_AGENT: 100;
|
|
29
|
-
readonly MAX_FEEDBACK_PER_AGENT: 500;
|
|
30
|
-
};
|
|
31
|
-
export declare const PATTERN_EXTRACTION: {
|
|
32
|
-
readonly MIN_OBSERVATIONS: 10;
|
|
33
|
-
readonly MIN_CONFIDENCE: 0.7;
|
|
34
|
-
readonly SUCCESS_RATE_THRESHOLD: 0.8;
|
|
35
|
-
readonly FAILURE_RATE_THRESHOLD: 0.3;
|
|
36
|
-
readonly ANTI_PATTERN_OBSERVATION_DIVISOR: 2;
|
|
37
|
-
readonly OPTIMIZATION_OBSERVATION_DIVISOR: 2;
|
|
38
|
-
};
|
|
39
|
-
export declare const TEST_DEFAULTS: {
|
|
40
|
-
readonly SUCCESS_RATING: 4;
|
|
41
|
-
readonly FAILURE_RATING: 2;
|
|
42
|
-
};
|
|
43
|
-
export declare const PATTERN_KEYWORDS: {
|
|
44
|
-
readonly ERROR_HANDLING: readonly string[];
|
|
45
|
-
readonly VALIDATION: readonly string[];
|
|
46
|
-
readonly DOCUMENTATION: readonly string[];
|
|
47
|
-
readonly TYPE_ANNOTATIONS: readonly string[];
|
|
48
|
-
};
|
|
49
|
-
export declare const PATTERN_DESCRIPTIONS: {
|
|
50
|
-
readonly ERROR_HANDLING: "always add error handling to async functions";
|
|
51
|
-
readonly VALIDATION: "always include input validation";
|
|
52
|
-
readonly DOCUMENTATION: "always include comprehensive documentation";
|
|
53
|
-
readonly TYPE_ANNOTATIONS: "always add type annotations";
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=LearningManagerConstants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LearningManagerConstants.d.ts","sourceRoot":"","sources":["../../src/evolution/LearningManagerConstants.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,kBAAkB;;;;CAOrB,CAAC;AAOX,eAAO,MAAM,iBAAiB;;;;;CASpB,CAAC;AAOX,eAAO,MAAM,mBAAmB;;;;CAOtB,CAAC;AAOX,eAAO,MAAM,qBAAqB;;;CAMxB,CAAC;AAOX,eAAO,MAAM,sBAAsB;;;;CAOzB,CAAC;AAOX,eAAO,MAAM,aAAa;;;;CAOhB,CAAC;AAOX,eAAO,MAAM,kBAAkB;;;;;;;CAarB,CAAC;AAOX,eAAO,MAAM,aAAa;;;CAKhB,CAAC;AAOX,eAAO,MAAM,gBAAgB;6BACwB,SAAS,MAAM,EAAE;yBAC7B,SAAS,MAAM,EAAE;4BACT,SAAS,MAAM,EAAE;+BACpB,SAAS,MAAM,EAAE;CACrD,CAAC;AAOX,eAAO,MAAM,oBAAoB;;;;;CAKvB,CAAC"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
export const QUALITY_THRESHOLDS = {
|
|
2
|
-
HIGH: 0.8,
|
|
3
|
-
LOW: 0.5,
|
|
4
|
-
MIN_ACCEPTABLE: 0.7,
|
|
5
|
-
};
|
|
6
|
-
export const COST_OPTIMIZATION = {
|
|
7
|
-
REDUCTION_TARGET: 0.8,
|
|
8
|
-
VARIATION_PERCENT: 0.1,
|
|
9
|
-
VARIATION_MIN_ABSOLUTE: 0.01,
|
|
10
|
-
TARGET_REDUCTION: 0.2,
|
|
11
|
-
};
|
|
12
|
-
export const LEARNING_PARAMETERS = {
|
|
13
|
-
CONFIDENCE_INCREMENT: 0.02,
|
|
14
|
-
STATISTICAL_BASELINE_SAMPLES: 30,
|
|
15
|
-
CONFIDENCE_PER_OBSERVATION: 0.3,
|
|
16
|
-
};
|
|
17
|
-
export const COMPLEXITY_THRESHOLDS = {
|
|
18
|
-
LOW_MS: 5000,
|
|
19
|
-
MEDIUM_MS: 15000,
|
|
20
|
-
};
|
|
21
|
-
export const STATISTICAL_PARAMETERS = {
|
|
22
|
-
P95_MIN_SAMPLE_SIZE: 20,
|
|
23
|
-
P95_PERCENTILE: 0.95,
|
|
24
|
-
P95_TIMEOUT_MULTIPLIER: 1.5,
|
|
25
|
-
};
|
|
26
|
-
export const MEMORY_LIMITS = {
|
|
27
|
-
MAX_SAVED_AGENTS: 100,
|
|
28
|
-
MAX_PATTERNS_PER_AGENT: 100,
|
|
29
|
-
MAX_FEEDBACK_PER_AGENT: 500,
|
|
30
|
-
};
|
|
31
|
-
export const PATTERN_EXTRACTION = {
|
|
32
|
-
MIN_OBSERVATIONS: 10,
|
|
33
|
-
MIN_CONFIDENCE: 0.7,
|
|
34
|
-
SUCCESS_RATE_THRESHOLD: 0.8,
|
|
35
|
-
FAILURE_RATE_THRESHOLD: 0.3,
|
|
36
|
-
ANTI_PATTERN_OBSERVATION_DIVISOR: 2,
|
|
37
|
-
OPTIMIZATION_OBSERVATION_DIVISOR: 2,
|
|
38
|
-
};
|
|
39
|
-
export const TEST_DEFAULTS = {
|
|
40
|
-
SUCCESS_RATING: 4,
|
|
41
|
-
FAILURE_RATING: 2,
|
|
42
|
-
};
|
|
43
|
-
export const PATTERN_KEYWORDS = {
|
|
44
|
-
ERROR_HANDLING: ['error handling', 'try-catch'],
|
|
45
|
-
VALIDATION: ['validation', 'input'],
|
|
46
|
-
DOCUMENTATION: ['documentation', 'comment'],
|
|
47
|
-
TYPE_ANNOTATIONS: ['type', 'annotation'],
|
|
48
|
-
};
|
|
49
|
-
export const PATTERN_DESCRIPTIONS = {
|
|
50
|
-
ERROR_HANDLING: 'always add error handling to async functions',
|
|
51
|
-
VALIDATION: 'always include input validation',
|
|
52
|
-
DOCUMENTATION: 'always include comprehensive documentation',
|
|
53
|
-
TYPE_ANNOTATIONS: 'always add type annotations',
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=LearningManagerConstants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LearningManagerConstants.js","sourceRoot":"","sources":["../../src/evolution/LearningManagerConstants.ts"],"names":[],"mappings":"AAaA,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAEhC,IAAI,EAAE,GAAG;IAET,GAAG,EAAE,GAAG;IAER,cAAc,EAAE,GAAG;CACX,CAAC;AAOX,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAE/B,gBAAgB,EAAE,GAAG;IAErB,iBAAiB,EAAE,GAAG;IAEtB,sBAAsB,EAAE,IAAI;IAE5B,gBAAgB,EAAE,GAAG;CACb,CAAC;AAOX,MAAM,CAAC,MAAM,mBAAmB,GAAG;IAEjC,oBAAoB,EAAE,IAAI;IAE1B,4BAA4B,EAAE,EAAE;IAEhC,0BAA0B,EAAE,GAAG;CACvB,CAAC;AAOX,MAAM,CAAC,MAAM,qBAAqB,GAAG;IAEnC,MAAM,EAAE,IAAI;IAEZ,SAAS,EAAE,KAAK;CAER,CAAC;AAOX,MAAM,CAAC,MAAM,sBAAsB,GAAG;IAEpC,mBAAmB,EAAE,EAAE;IAEvB,cAAc,EAAE,IAAI;IAEpB,sBAAsB,EAAE,GAAG;CACnB,CAAC;AAOX,MAAM,CAAC,MAAM,aAAa,GAAG;IAE3B,gBAAgB,EAAE,GAAG;IAErB,sBAAsB,EAAE,GAAG;IAE3B,sBAAsB,EAAE,GAAG;CACnB,CAAC;AAOX,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAEhC,gBAAgB,EAAE,EAAE;IAEpB,cAAc,EAAE,GAAG;IAEnB,sBAAsB,EAAE,GAAG;IAE3B,sBAAsB,EAAE,GAAG;IAE3B,gCAAgC,EAAE,CAAC;IAEnC,gCAAgC,EAAE,CAAC;CAC3B,CAAC;AAOX,MAAM,CAAC,MAAM,aAAa,GAAG;IAE3B,cAAc,EAAE,CAAC;IAEjB,cAAc,EAAE,CAAC;CACT,CAAC;AAOX,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,cAAc,EAAE,CAAC,gBAAgB,EAAE,WAAW,CAAsB;IACpE,UAAU,EAAE,CAAC,YAAY,EAAE,OAAO,CAAsB;IACxD,aAAa,EAAE,CAAC,eAAe,EAAE,SAAS,CAAsB;IAChE,gBAAgB,EAAE,CAAC,MAAM,EAAE,YAAY,CAAsB;CACrD,CAAC;AAOX,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,cAAc,EAAE,8CAA8C;IAC9D,UAAU,EAAE,iCAAiC;IAC7C,aAAa,EAAE,4CAA4C;IAC3D,gBAAgB,EAAE,6BAA6B;CACvC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PerformanceTrackerConstants.d.ts","sourceRoot":"","sources":["../../src/evolution/PerformanceTrackerConstants.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,qBAAqB;;;CAKxB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PerformanceTrackerConstants.js","sourceRoot":"","sources":["../../src/evolution/PerformanceTrackerConstants.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,qBAAqB,GAAG;IAEnC,qBAAqB,EAAE,IAAI;IAE3B,iBAAiB,EAAE,KAAK;CAChB,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export declare const DEFAULT_RESOURCE_LIMITS: {
|
|
2
|
-
readonly MAX_CONCURRENT_E2E: 1;
|
|
3
|
-
readonly MAX_CONCURRENT_BUILDS: 2;
|
|
4
|
-
};
|
|
5
|
-
export declare const TIMEOUT_CONFIG: {
|
|
6
|
-
readonly E2E_WAIT_MS: 300000;
|
|
7
|
-
readonly BUILD_WAIT_MS: 600000;
|
|
8
|
-
};
|
|
9
|
-
export declare const DEADLOCK_DETECTION: {
|
|
10
|
-
readonly CHECK_INTERVAL_MS: 60000;
|
|
11
|
-
readonly STALE_THRESHOLD_MS: 1800000;
|
|
12
|
-
};
|
|
13
|
-
export declare const SYSTEM_RESOURCE_THRESHOLDS: {
|
|
14
|
-
readonly CPU_THRESHOLD_PERCENT: 80;
|
|
15
|
-
readonly MEMORY_THRESHOLD_PERCENT: 85;
|
|
16
|
-
};
|
|
17
|
-
export declare const THREAD_DEFAULTS: {
|
|
18
|
-
readonly STRATEGY: "balanced";
|
|
19
|
-
readonly MIN_THREADS: 1;
|
|
20
|
-
readonly E2E_MAX_CONCURRENT: 0;
|
|
21
|
-
};
|
|
22
|
-
//# sourceMappingURL=GlobalResourcePoolConstants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalResourcePoolConstants.d.ts","sourceRoot":"","sources":["../../src/orchestrator/GlobalResourcePoolConstants.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,uBAAuB;;;CAK1B,CAAC;AAQX,eAAO,MAAM,cAAc;;;CAKjB,CAAC;AAQX,eAAO,MAAM,kBAAkB;;;CAKrB,CAAC;AAQX,eAAO,MAAM,0BAA0B;;;CAK7B,CAAC;AAOX,eAAO,MAAM,eAAe;;;;CAOlB,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export const DEFAULT_RESOURCE_LIMITS = {
|
|
2
|
-
MAX_CONCURRENT_E2E: 1,
|
|
3
|
-
MAX_CONCURRENT_BUILDS: 2,
|
|
4
|
-
};
|
|
5
|
-
export const TIMEOUT_CONFIG = {
|
|
6
|
-
E2E_WAIT_MS: 300000,
|
|
7
|
-
BUILD_WAIT_MS: 600000,
|
|
8
|
-
};
|
|
9
|
-
export const DEADLOCK_DETECTION = {
|
|
10
|
-
CHECK_INTERVAL_MS: 60000,
|
|
11
|
-
STALE_THRESHOLD_MS: 1800000,
|
|
12
|
-
};
|
|
13
|
-
export const SYSTEM_RESOURCE_THRESHOLDS = {
|
|
14
|
-
CPU_THRESHOLD_PERCENT: 80,
|
|
15
|
-
MEMORY_THRESHOLD_PERCENT: 85,
|
|
16
|
-
};
|
|
17
|
-
export const THREAD_DEFAULTS = {
|
|
18
|
-
STRATEGY: 'balanced',
|
|
19
|
-
MIN_THREADS: 1,
|
|
20
|
-
E2E_MAX_CONCURRENT: 0,
|
|
21
|
-
};
|
|
22
|
-
//# sourceMappingURL=GlobalResourcePoolConstants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalResourcePoolConstants.js","sourceRoot":"","sources":["../../src/orchestrator/GlobalResourcePoolConstants.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,uBAAuB,GAAG;IAErC,kBAAkB,EAAE,CAAC;IAErB,qBAAqB,EAAE,CAAC;CAChB,CAAC;AAQX,MAAM,CAAC,MAAM,cAAc,GAAG;IAE5B,WAAW,EAAE,MAAM;IAEnB,aAAa,EAAE,MAAM;CACb,CAAC;AAQX,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAEhC,iBAAiB,EAAE,KAAK;IAExB,kBAAkB,EAAE,OAAO;CACnB,CAAC;AAQX,MAAM,CAAC,MAAM,0BAA0B,GAAG;IAExC,qBAAqB,EAAE,EAAE;IAEzB,wBAAwB,EAAE,EAAE;CACpB,CAAC;AAOX,MAAM,CAAC,MAAM,eAAe,GAAG;IAE7B,QAAQ,EAAE,UAAmB;IAE7B,WAAW,EAAE,CAAC;IAEd,kBAAkB,EAAE,CAAC;CACb,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const TOKEN_ESTIMATION: {
|
|
2
|
-
readonly CHARS_PER_TOKEN: 0.3;
|
|
3
|
-
readonly SIMPLE_MULTIPLIER: 1.5;
|
|
4
|
-
readonly MEDIUM_MULTIPLIER: 3;
|
|
5
|
-
readonly COMPLEX_MULTIPLIER: 5;
|
|
6
|
-
};
|
|
7
|
-
export declare const WORD_COUNT_THRESHOLDS: {
|
|
8
|
-
readonly VERY_SHORT: 5;
|
|
9
|
-
readonly SIMPLE_TASK_LIMIT: 15;
|
|
10
|
-
readonly LONG_TASK: 20;
|
|
11
|
-
readonly VERY_LONG_DESCRIPTION: 100;
|
|
12
|
-
};
|
|
13
|
-
export declare const TASK_TYPE: {
|
|
14
|
-
readonly SUBSTRING_LENGTH: 50;
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=TaskAnalyzerConstants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TaskAnalyzerConstants.d.ts","sourceRoot":"","sources":["../../src/orchestrator/TaskAnalyzerConstants.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,gBAAgB;;;;;CASnB,CAAC;AAOX,eAAO,MAAM,qBAAqB;;;;;CASxB,CAAC;AAOX,eAAO,MAAM,SAAS;;CAGZ,CAAC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export const TOKEN_ESTIMATION = {
|
|
2
|
-
CHARS_PER_TOKEN: 0.3,
|
|
3
|
-
SIMPLE_MULTIPLIER: 1.5,
|
|
4
|
-
MEDIUM_MULTIPLIER: 3.0,
|
|
5
|
-
COMPLEX_MULTIPLIER: 5.0,
|
|
6
|
-
};
|
|
7
|
-
export const WORD_COUNT_THRESHOLDS = {
|
|
8
|
-
VERY_SHORT: 5,
|
|
9
|
-
SIMPLE_TASK_LIMIT: 15,
|
|
10
|
-
LONG_TASK: 20,
|
|
11
|
-
VERY_LONG_DESCRIPTION: 100,
|
|
12
|
-
};
|
|
13
|
-
export const TASK_TYPE = {
|
|
14
|
-
SUBSTRING_LENGTH: 50,
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=TaskAnalyzerConstants.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TaskAnalyzerConstants.js","sourceRoot":"","sources":["../../src/orchestrator/TaskAnalyzerConstants.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAE9B,eAAe,EAAE,GAAG;IAEpB,iBAAiB,EAAE,GAAG;IAEtB,iBAAiB,EAAE,GAAG;IAEtB,kBAAkB,EAAE,GAAG;CACf,CAAC;AAOX,MAAM,CAAC,MAAM,qBAAqB,GAAG;IAEnC,UAAU,EAAE,CAAC;IAEb,iBAAiB,EAAE,EAAE;IAErB,SAAS,EAAE,EAAE;IAEb,qBAAqB,EAAE,GAAG;CAClB,CAAC;AAOX,MAAM,CAAC,MAAM,SAAS,GAAG;IAEvB,gBAAgB,EAAE,EAAE;CACZ,CAAC"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export declare const GitEducationTemplates: {
|
|
2
|
-
whatIsVersionControl: string;
|
|
3
|
-
benefits: string;
|
|
4
|
-
noGitHubRequired: string;
|
|
5
|
-
quickTutorial: string;
|
|
6
|
-
commonScenarios: string;
|
|
7
|
-
automationLevels: string;
|
|
8
|
-
githubOptional: string;
|
|
9
|
-
};
|
|
10
|
-
export declare const SetupWizard: {
|
|
11
|
-
welcome: string;
|
|
12
|
-
step1_name: string;
|
|
13
|
-
step2_email: string;
|
|
14
|
-
step3_automation: string;
|
|
15
|
-
complete: string;
|
|
16
|
-
};
|
|
17
|
-
export declare const NotificationTemplates: {
|
|
18
|
-
smartReminder: (stats: {
|
|
19
|
-
files: number;
|
|
20
|
-
lines: number;
|
|
21
|
-
}, suggestion: string) => string;
|
|
22
|
-
semiAuto: (suggestion: string, fileCount: number) => string;
|
|
23
|
-
fullAuto: (message: string, fileCount: number) => string;
|
|
24
|
-
featureComplete: (featureName: string) => string;
|
|
25
|
-
};
|
|
26
|
-
//# sourceMappingURL=git-education-templates.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-education-templates.d.ts","sourceRoot":"","sources":["../../src/templates/git-education-templates.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,qBAAqB;;;;;;;;CAuWjC,CAAC;AAKF,eAAO,MAAM,WAAW;;;;;;CA4FvB,CAAC;AAKF,eAAO,MAAM,qBAAqB;2BAIT;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,cAAc,MAAM;2BAepD,MAAM,aAAa,MAAM;wBAW5B,MAAM,aAAa,MAAM;mCAUd,MAAM;CAMtC,CAAC"}
|