Навыки trpc-scaffolder История аудитов
🏗️

История аудитов

trpc-scaffolder - 5 аудиты

Версия аудита 5

Последняя Низкий риск

Jan 16, 2026, 05:12 PM

This skill scaffolds tRPC routers and schemas using bash scripts with standard Unix utilities. All file operations are constrained to predefined project paths. Documentation backticks flagged as command execution are false positives. The '../..' patterns in scripts are controlled project-root navigation. No network calls or credential access. Safe for marketplace publication.

14
Просканировано файлов
1,977
Проанализировано строк
4
находки
claude
Проверено
Проблемы низкого риска (1)
Shell scripts use external Unix utilities
The skill uses bash scripts that invoke standard Unix utilities (find, grep, sed, mkdir, basename) for file operations. These commands are necessary for scaffolding functionality but execute external processes.

Версия аудита 4

Низкий риск

Jan 16, 2026, 05:12 PM

This skill scaffolds tRPC routers and schemas using bash scripts with standard Unix utilities. All file operations are constrained to predefined project paths. Documentation backticks flagged as command execution are false positives. The '../..' patterns in scripts are controlled project-root navigation. No network calls or credential access. Safe for marketplace publication.

14
Просканировано файлов
1,977
Проанализировано строк
4
находки
claude
Проверено
Проблемы низкого риска (1)
Shell scripts use external Unix utilities
The skill uses bash scripts that invoke standard Unix utilities (find, grep, sed, mkdir, basename) for file operations. These commands are necessary for scaffolding functionality but execute external processes.

Версия аудита 3

Низкий риск

Jan 10, 2026, 10:31 AM

This skill contains shell scripts for scaffolding tRPC routers and schemas. Scripts only operate within the project directory structure, use standard Unix utilities for file operations, and make no network calls. All file access is constrained to predefined project paths.

13
Просканировано файлов
1,610
Проанализировано строк
4
находки
claude
Проверено
Проблемы низкого риска (1)
Shell scripts execute external commands
The skill uses bash scripts that invoke standard Unix utilities including find, grep, sed, mkdir, and basename for file operations. While these commands are standard and necessary for the scaffolding functionality, scripts that execute external commands should be reviewed to ensure they operate only on expected paths. Relevant code from scripts/validate-trpc.sh (lines 34, 56, 62, 78, 92): ``` ROUTER_FILES=$(find "$ROUTERS_DIR" -name "*.ts" ! -name "_app.ts" -type f 2>/dev/null || true) if ! grep -q "import.*${router_name}Router.*from.*\\./${router_name}" "$APP_ROUTER"; then ```

Версия аудита 2

Низкий риск

Jan 10, 2026, 10:31 AM

This skill contains shell scripts for scaffolding tRPC routers and schemas. Scripts only operate within the project directory structure, use standard Unix utilities for file operations, and make no network calls. All file access is constrained to predefined project paths.

13
Просканировано файлов
1,610
Проанализировано строк
4
находки
claude
Проверено
Проблемы низкого риска (1)
Shell scripts execute external commands
The skill uses bash scripts that invoke standard Unix utilities including find, grep, sed, mkdir, and basename for file operations. While these commands are standard and necessary for the scaffolding functionality, scripts that execute external commands should be reviewed to ensure they operate only on expected paths. Relevant code from scripts/validate-trpc.sh (lines 34, 56, 62, 78, 92): ``` ROUTER_FILES=$(find "$ROUTERS_DIR" -name "*.ts" ! -name "_app.ts" -type f 2>/dev/null || true) if ! grep -q "import.*${router_name}Router.*from.*\\./${router_name}" "$APP_ROUTER"; then ```

Версия аудита 1

Низкий риск

Jan 10, 2026, 10:31 AM

This skill contains shell scripts for scaffolding tRPC routers and schemas. Scripts only operate within the project directory structure, use standard Unix utilities for file operations, and make no network calls. All file access is constrained to predefined project paths.

13
Просканировано файлов
1,610
Проанализировано строк
4
находки
claude
Проверено
Проблемы низкого риска (1)
Shell scripts execute external commands
The skill uses bash scripts that invoke standard Unix utilities including find, grep, sed, mkdir, and basename for file operations. While these commands are standard and necessary for the scaffolding functionality, scripts that execute external commands should be reviewed to ensure they operate only on expected paths. Relevant code from scripts/validate-trpc.sh (lines 34, 56, 62, 78, 92): ``` ROUTER_FILES=$(find "$ROUTERS_DIR" -name "*.ts" ! -name "_app.ts" -type f 2>/dev/null || true) if ! grep -q "import.*${router_name}Router.*from.*\\./${router_name}" "$APP_ROUTER"; then ```