@bryan-thompson/inspector-assessment-cli 1.14.1 → 1.15.0
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/build/assess-full.js +15 -1
- package/package.json +1 -1
package/build/assess-full.js
CHANGED
|
@@ -251,8 +251,13 @@ function buildConfig(options) {
|
|
|
251
251
|
manifestValidation: true,
|
|
252
252
|
portability: true,
|
|
253
253
|
externalAPIScanner: !!options.sourceCodePath,
|
|
254
|
+
temporal: !options.skipTemporal, // Enable by default with --full, skip with --skip-temporal
|
|
254
255
|
};
|
|
255
256
|
}
|
|
257
|
+
// Temporal/rug pull detection configuration
|
|
258
|
+
if (options.temporalInvocations) {
|
|
259
|
+
config.temporalInvocations = options.temporalInvocations;
|
|
260
|
+
}
|
|
256
261
|
if (options.claudeEnabled) {
|
|
257
262
|
config.claudeCode = {
|
|
258
263
|
enabled: true,
|
|
@@ -604,6 +609,12 @@ function parseArgs() {
|
|
|
604
609
|
case "--no-resume":
|
|
605
610
|
options.noResume = true;
|
|
606
611
|
break;
|
|
612
|
+
case "--temporal-invocations":
|
|
613
|
+
options.temporalInvocations = parseInt(args[++i], 10);
|
|
614
|
+
break;
|
|
615
|
+
case "--skip-temporal":
|
|
616
|
+
options.skipTemporal = true;
|
|
617
|
+
break;
|
|
607
618
|
case "--help":
|
|
608
619
|
case "-h":
|
|
609
620
|
printHelp();
|
|
@@ -657,11 +668,13 @@ Options:
|
|
|
657
668
|
--no-resume Force fresh start, clear any existing state
|
|
658
669
|
--claude-enabled Enable Claude Code integration for intelligent analysis
|
|
659
670
|
--full Enable all assessment modules (default)
|
|
671
|
+
--temporal-invocations <n> Number of invocations per tool for rug pull detection (default: 25)
|
|
672
|
+
--skip-temporal Skip temporal/rug pull testing (faster assessment)
|
|
660
673
|
--json Output only JSON path (no console summary)
|
|
661
674
|
--verbose, -v Enable verbose logging
|
|
662
675
|
--help, -h Show this help message
|
|
663
676
|
|
|
664
|
-
Assessment Modules (
|
|
677
|
+
Assessment Modules (12 total):
|
|
665
678
|
• Functionality - Tests all tools work correctly
|
|
666
679
|
• Security - Prompt injection & vulnerability testing
|
|
667
680
|
• Documentation - README completeness checks
|
|
@@ -673,6 +686,7 @@ Assessment Modules (11 total):
|
|
|
673
686
|
• Prohibited Libs - Dependency security checks
|
|
674
687
|
• Manifest - MCPB manifest.json validation
|
|
675
688
|
• Portability - Cross-platform compatibility
|
|
689
|
+
• Temporal - Rug pull/temporal behavior change detection
|
|
676
690
|
|
|
677
691
|
Examples:
|
|
678
692
|
mcp-assess-full my-server
|
package/package.json
CHANGED