llm-content-creator 0.1.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/README.md +309 -0
- package/dist/application/workflow/SyncExecutor.d.ts +75 -0
- package/dist/application/workflow/SyncExecutor.d.ts.map +1 -0
- package/dist/application/workflow/SyncExecutor.js +370 -0
- package/dist/application/workflow/SyncExecutor.js.map +1 -0
- package/dist/application/workflow/types.d.ts +46 -0
- package/dist/application/workflow/types.d.ts.map +1 -0
- package/dist/application/workflow/types.js +7 -0
- package/dist/application/workflow/types.js.map +1 -0
- package/dist/config/index.d.ts +173 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +288 -0
- package/dist/config/index.js.map +1 -0
- package/dist/domain/entities/QualityCheck.d.ts +181 -0
- package/dist/domain/entities/QualityCheck.d.ts.map +1 -0
- package/dist/domain/entities/QualityCheck.js +39 -0
- package/dist/domain/entities/QualityCheck.js.map +1 -0
- package/dist/domain/entities/Result.d.ts +103 -0
- package/dist/domain/entities/Result.d.ts.map +1 -0
- package/dist/domain/entities/Result.js +15 -0
- package/dist/domain/entities/Result.js.map +1 -0
- package/dist/domain/entities/Task.d.ts +130 -0
- package/dist/domain/entities/Task.d.ts.map +1 -0
- package/dist/domain/entities/Task.js +64 -0
- package/dist/domain/entities/Task.js.map +1 -0
- package/dist/domain/entities/TaskStep.d.ts +160 -0
- package/dist/domain/entities/TaskStep.d.ts.map +1 -0
- package/dist/domain/entities/TaskStep.js +30 -0
- package/dist/domain/entities/TaskStep.js.map +1 -0
- package/dist/domain/entities/TokenUsage.d.ts +70 -0
- package/dist/domain/entities/TokenUsage.d.ts.map +1 -0
- package/dist/domain/entities/TokenUsage.js +42 -0
- package/dist/domain/entities/TokenUsage.js.map +1 -0
- package/dist/domain/entities/index.d.ts +11 -0
- package/dist/domain/entities/index.d.ts.map +1 -0
- package/dist/domain/entities/index.js +16 -0
- package/dist/domain/entities/index.js.map +1 -0
- package/dist/domain/repositories/QualityCheckRepository.d.ts +49 -0
- package/dist/domain/repositories/QualityCheckRepository.d.ts.map +1 -0
- package/dist/domain/repositories/QualityCheckRepository.js +5 -0
- package/dist/domain/repositories/QualityCheckRepository.js.map +1 -0
- package/dist/domain/repositories/ResultRepository.d.ts +43 -0
- package/dist/domain/repositories/ResultRepository.d.ts.map +1 -0
- package/dist/domain/repositories/ResultRepository.js +5 -0
- package/dist/domain/repositories/ResultRepository.js.map +1 -0
- package/dist/domain/repositories/TaskRepository.d.ts +240 -0
- package/dist/domain/repositories/TaskRepository.d.ts.map +1 -0
- package/dist/domain/repositories/TaskRepository.js +7 -0
- package/dist/domain/repositories/TaskRepository.js.map +1 -0
- package/dist/domain/workflow/CheckpointManager.d.ts +94 -0
- package/dist/domain/workflow/CheckpointManager.d.ts.map +1 -0
- package/dist/domain/workflow/CheckpointManager.js +224 -0
- package/dist/domain/workflow/CheckpointManager.js.map +1 -0
- package/dist/domain/workflow/ContentCreatorGraph.d.ts +17 -0
- package/dist/domain/workflow/ContentCreatorGraph.d.ts.map +1 -0
- package/dist/domain/workflow/ContentCreatorGraph.js +381 -0
- package/dist/domain/workflow/ContentCreatorGraph.js.map +1 -0
- package/dist/domain/workflow/State.d.ts +172 -0
- package/dist/domain/workflow/State.d.ts.map +1 -0
- package/dist/domain/workflow/State.js +184 -0
- package/dist/domain/workflow/State.js.map +1 -0
- package/dist/domain/workflow/index.d.ts +11 -0
- package/dist/domain/workflow/index.d.ts.map +1 -0
- package/dist/domain/workflow/index.js +15 -0
- package/dist/domain/workflow/index.js.map +1 -0
- package/dist/domain/workflow/nodes/BaseNode.d.ts +134 -0
- package/dist/domain/workflow/nodes/BaseNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/BaseNode.js +253 -0
- package/dist/domain/workflow/nodes/BaseNode.js.map +1 -0
- package/dist/domain/workflow/nodes/CheckImageNode.d.ts +43 -0
- package/dist/domain/workflow/nodes/CheckImageNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/CheckImageNode.js +254 -0
- package/dist/domain/workflow/nodes/CheckImageNode.js.map +1 -0
- package/dist/domain/workflow/nodes/CheckTextNode.d.ts +66 -0
- package/dist/domain/workflow/nodes/CheckTextNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/CheckTextNode.js +530 -0
- package/dist/domain/workflow/nodes/CheckTextNode.js.map +1 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.d.ts +44 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.js +272 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.js.map +1 -0
- package/dist/domain/workflow/nodes/OrganizeNode.d.ts +49 -0
- package/dist/domain/workflow/nodes/OrganizeNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/OrganizeNode.js +241 -0
- package/dist/domain/workflow/nodes/OrganizeNode.js.map +1 -0
- package/dist/domain/workflow/nodes/SearchNode.d.ts +48 -0
- package/dist/domain/workflow/nodes/SearchNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/SearchNode.js +151 -0
- package/dist/domain/workflow/nodes/SearchNode.js.map +1 -0
- package/dist/domain/workflow/nodes/WriteNode.d.ts +68 -0
- package/dist/domain/workflow/nodes/WriteNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/WriteNode.js +431 -0
- package/dist/domain/workflow/nodes/WriteNode.js.map +1 -0
- package/dist/domain/workflow/nodes/config/index.js +287 -0
- package/dist/domain/workflow/nodes/domain/entities/Task.js +68 -0
- package/dist/domain/workflow/nodes/domain/workflow/State.js +200 -0
- package/dist/domain/workflow/nodes/domain/workflow/nodes/BaseNode.js +328 -0
- package/dist/domain/workflow/nodes/domain/workflow/nodes/CheckTextNode.js +500 -0
- package/dist/domain/workflow/nodes/index.d.ts +13 -0
- package/dist/domain/workflow/nodes/index.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/index.js +13 -0
- package/dist/domain/workflow/nodes/index.js.map +1 -0
- package/dist/domain/workflow/nodes/infrastructure/logging/logger.js +275 -0
- package/dist/domain/workflow/nodes/services/llm/EnhancedLLMService.js +559 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/dist/infrastructure/cache/CacheService.d.ts +139 -0
- package/dist/infrastructure/cache/CacheService.d.ts.map +1 -0
- package/dist/infrastructure/cache/CacheService.js +419 -0
- package/dist/infrastructure/cache/CacheService.js.map +1 -0
- package/dist/infrastructure/cache/index.d.ts +5 -0
- package/dist/infrastructure/cache/index.d.ts.map +1 -0
- package/dist/infrastructure/cache/index.js +6 -0
- package/dist/infrastructure/cache/index.js.map +1 -0
- package/dist/infrastructure/database/BaseRepository.d.ts +98 -0
- package/dist/infrastructure/database/BaseRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/BaseRepository.js +178 -0
- package/dist/infrastructure/database/BaseRepository.js.map +1 -0
- package/dist/infrastructure/database/MemoryTaskRepository.d.ts +77 -0
- package/dist/infrastructure/database/MemoryTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/MemoryTaskRepository.js +309 -0
- package/dist/infrastructure/database/MemoryTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.d.ts +36 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.js +89 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.js.map +1 -0
- package/dist/infrastructure/database/PostgresTaskRepository.d.ts +94 -0
- package/dist/infrastructure/database/PostgresTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/PostgresTaskRepository.js +364 -0
- package/dist/infrastructure/database/PostgresTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/ResultRepository.d.ts +41 -0
- package/dist/infrastructure/database/ResultRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/ResultRepository.js +86 -0
- package/dist/infrastructure/database/ResultRepository.js.map +1 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.d.ts +101 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.js +548 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/index.d.ts +32 -0
- package/dist/infrastructure/database/index.d.ts.map +1 -0
- package/dist/infrastructure/database/index.js +72 -0
- package/dist/infrastructure/database/index.js.map +1 -0
- package/dist/infrastructure/logging/logger.d.ts +69 -0
- package/dist/infrastructure/logging/logger.d.ts.map +1 -0
- package/dist/infrastructure/logging/logger.js +169 -0
- package/dist/infrastructure/logging/logger.js.map +1 -0
- package/dist/infrastructure/monitoring/LoggingService.d.ts +109 -0
- package/dist/infrastructure/monitoring/LoggingService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/LoggingService.js +198 -0
- package/dist/infrastructure/monitoring/LoggingService.js.map +1 -0
- package/dist/infrastructure/monitoring/MetricsService.d.ts +112 -0
- package/dist/infrastructure/monitoring/MetricsService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/MetricsService.js +362 -0
- package/dist/infrastructure/monitoring/MetricsService.js.map +1 -0
- package/dist/infrastructure/monitoring/SentryService.d.ts +108 -0
- package/dist/infrastructure/monitoring/SentryService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/SentryService.js +282 -0
- package/dist/infrastructure/monitoring/SentryService.js.map +1 -0
- package/dist/infrastructure/monitoring/index.d.ts +7 -0
- package/dist/infrastructure/monitoring/index.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/index.js +10 -0
- package/dist/infrastructure/monitoring/index.js.map +1 -0
- package/dist/infrastructure/queue/TaskQueue.d.ts +110 -0
- package/dist/infrastructure/queue/TaskQueue.d.ts.map +1 -0
- package/dist/infrastructure/queue/TaskQueue.js +363 -0
- package/dist/infrastructure/queue/TaskQueue.js.map +1 -0
- package/dist/infrastructure/queue/index.d.ts +5 -0
- package/dist/infrastructure/queue/index.d.ts.map +1 -0
- package/dist/infrastructure/queue/index.js +5 -0
- package/dist/infrastructure/queue/index.js.map +1 -0
- package/dist/infrastructure/redis/connection.d.ts +61 -0
- package/dist/infrastructure/redis/connection.d.ts.map +1 -0
- package/dist/infrastructure/redis/connection.js +184 -0
- package/dist/infrastructure/redis/connection.js.map +1 -0
- package/dist/infrastructure/redis/index.d.ts +5 -0
- package/dist/infrastructure/redis/index.d.ts.map +1 -0
- package/dist/infrastructure/redis/index.js +5 -0
- package/dist/infrastructure/redis/index.js.map +1 -0
- package/dist/infrastructure/security/ApiKeyService.d.ts +103 -0
- package/dist/infrastructure/security/ApiKeyService.d.ts.map +1 -0
- package/dist/infrastructure/security/ApiKeyService.js +250 -0
- package/dist/infrastructure/security/ApiKeyService.js.map +1 -0
- package/dist/infrastructure/security/QuotaService.d.ts +87 -0
- package/dist/infrastructure/security/QuotaService.d.ts.map +1 -0
- package/dist/infrastructure/security/QuotaService.js +303 -0
- package/dist/infrastructure/security/QuotaService.js.map +1 -0
- package/dist/infrastructure/security/RateLimiter.d.ts +104 -0
- package/dist/infrastructure/security/RateLimiter.d.ts.map +1 -0
- package/dist/infrastructure/security/RateLimiter.js +331 -0
- package/dist/infrastructure/security/RateLimiter.js.map +1 -0
- package/dist/infrastructure/security/index.d.ts +7 -0
- package/dist/infrastructure/security/index.d.ts.map +1 -0
- package/dist/infrastructure/security/index.js +10 -0
- package/dist/infrastructure/security/index.js.map +1 -0
- package/dist/monitoring/index.d.ts +5 -0
- package/dist/monitoring/index.d.ts.map +1 -0
- package/dist/monitoring/index.js +5 -0
- package/dist/monitoring/index.js.map +1 -0
- package/dist/monitoring/server.d.ts +14 -0
- package/dist/monitoring/server.d.ts.map +1 -0
- package/dist/monitoring/server.js +99 -0
- package/dist/monitoring/server.js.map +1 -0
- package/dist/presentation/cli/commands/cancel.d.ts +8 -0
- package/dist/presentation/cli/commands/cancel.d.ts.map +1 -0
- package/dist/presentation/cli/commands/cancel.js +57 -0
- package/dist/presentation/cli/commands/cancel.js.map +1 -0
- package/dist/presentation/cli/commands/create.d.ts +8 -0
- package/dist/presentation/cli/commands/create.d.ts.map +1 -0
- package/dist/presentation/cli/commands/create.js +368 -0
- package/dist/presentation/cli/commands/create.js.map +1 -0
- package/dist/presentation/cli/commands/result.d.ts +8 -0
- package/dist/presentation/cli/commands/result.d.ts.map +1 -0
- package/dist/presentation/cli/commands/result.js +121 -0
- package/dist/presentation/cli/commands/result.js.map +1 -0
- package/dist/presentation/cli/commands/status.d.ts +8 -0
- package/dist/presentation/cli/commands/status.d.ts.map +1 -0
- package/dist/presentation/cli/commands/status.js +92 -0
- package/dist/presentation/cli/commands/status.js.map +1 -0
- package/dist/presentation/cli/index.d.ts +8 -0
- package/dist/presentation/cli/index.d.ts.map +1 -0
- package/dist/presentation/cli/index.js +32 -0
- package/dist/presentation/cli/index.js.map +1 -0
- package/dist/presentation/cli/utils/cleanup.d.ts +14 -0
- package/dist/presentation/cli/utils/cleanup.d.ts.map +1 -0
- package/dist/presentation/cli/utils/cleanup.js +62 -0
- package/dist/presentation/cli/utils/cleanup.js.map +1 -0
- package/dist/presentation/cli/utils/formatter.d.ts +28 -0
- package/dist/presentation/cli/utils/formatter.d.ts.map +1 -0
- package/dist/presentation/cli/utils/formatter.js +68 -0
- package/dist/presentation/cli/utils/formatter.js.map +1 -0
- package/dist/presentation/cli.d.ts +7 -0
- package/dist/presentation/cli.d.ts.map +1 -0
- package/dist/presentation/cli.js +8 -0
- package/dist/presentation/cli.js.map +1 -0
- package/dist/presentation/monitor-cli.d.ts +8 -0
- package/dist/presentation/monitor-cli.d.ts.map +1 -0
- package/dist/presentation/monitor-cli.js +44 -0
- package/dist/presentation/monitor-cli.js.map +1 -0
- package/dist/presentation/worker-cli.d.ts +8 -0
- package/dist/presentation/worker-cli.d.ts.map +1 -0
- package/dist/presentation/worker-cli.js +51 -0
- package/dist/presentation/worker-cli.js.map +1 -0
- package/dist/schedulers/TaskScheduler.d.ts +99 -0
- package/dist/schedulers/TaskScheduler.d.ts.map +1 -0
- package/dist/schedulers/TaskScheduler.js +233 -0
- package/dist/schedulers/TaskScheduler.js.map +1 -0
- package/dist/schedulers/index.d.ts +5 -0
- package/dist/schedulers/index.d.ts.map +1 -0
- package/dist/schedulers/index.js +5 -0
- package/dist/schedulers/index.js.map +1 -0
- package/dist/services/image/ImageService.d.ts +68 -0
- package/dist/services/image/ImageService.d.ts.map +1 -0
- package/dist/services/image/ImageService.js +166 -0
- package/dist/services/image/ImageService.js.map +1 -0
- package/dist/services/index.d.ts +8 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +12 -0
- package/dist/services/index.js.map +1 -0
- package/dist/services/llm/EnhancedLLMService.d.ts +148 -0
- package/dist/services/llm/EnhancedLLMService.d.ts.map +1 -0
- package/dist/services/llm/EnhancedLLMService.js +425 -0
- package/dist/services/llm/EnhancedLLMService.js.map +1 -0
- package/dist/services/llm/LLMService.d.ts +103 -0
- package/dist/services/llm/LLMService.d.ts.map +1 -0
- package/dist/services/llm/LLMService.js +212 -0
- package/dist/services/llm/LLMService.js.map +1 -0
- package/dist/services/quality/HardRuleChecker.d.ts +143 -0
- package/dist/services/quality/HardRuleChecker.d.ts.map +1 -0
- package/dist/services/quality/HardRuleChecker.js +353 -0
- package/dist/services/quality/HardRuleChecker.js.map +1 -0
- package/dist/services/quality/LLMEvaluator.d.ts +105 -0
- package/dist/services/quality/LLMEvaluator.d.ts.map +1 -0
- package/dist/services/quality/LLMEvaluator.js +312 -0
- package/dist/services/quality/LLMEvaluator.js.map +1 -0
- package/dist/services/quality/QualityCheckService.d.ts +112 -0
- package/dist/services/quality/QualityCheckService.d.ts.map +1 -0
- package/dist/services/quality/QualityCheckService.js +342 -0
- package/dist/services/quality/QualityCheckService.js.map +1 -0
- package/dist/services/quality/QualityService.d.ts +75 -0
- package/dist/services/quality/QualityService.d.ts.map +1 -0
- package/dist/services/quality/QualityService.js +360 -0
- package/dist/services/quality/QualityService.js.map +1 -0
- package/dist/services/quality/index.d.ts +7 -0
- package/dist/services/quality/index.d.ts.map +1 -0
- package/dist/services/quality/index.js +10 -0
- package/dist/services/quality/index.js.map +1 -0
- package/dist/services/search/SearchService.d.ts +79 -0
- package/dist/services/search/SearchService.d.ts.map +1 -0
- package/dist/services/search/SearchService.js +193 -0
- package/dist/services/search/SearchService.js.map +1 -0
- package/dist/workers/TaskWorker.d.ts +61 -0
- package/dist/workers/TaskWorker.d.ts.map +1 -0
- package/dist/workers/TaskWorker.js +256 -0
- package/dist/workers/TaskWorker.js.map +1 -0
- package/dist/workers/index.d.ts +5 -0
- package/dist/workers/index.d.ts.map +1 -0
- package/dist/workers/index.js +5 -0
- package/dist/workers/index.js.map +1 -0
- package/docs/DOCUMENTATION-ANALYSIS.md +190 -0
- package/docs/README.md +145 -0
- package/docs/SOURCE-CODE-ANALYSIS.md +1107 -0
- package/docs/architecture-complete.md +5524 -0
- package/docs/archive/implementation/implementation-analysis/README.md +244 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-context.md +483 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-plan.md +1242 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-tasks.md +777 -0
- package/docs/archive/phases/phase-1/phase-1-completion-summary.md +284 -0
- package/docs/archive/phases/phase-1/phase-1-implementation-guide.md +1380 -0
- package/docs/archive/phases/phase-2/phase-2a/phase-2a-completion-summary.md +443 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-completion-report.md +430 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-completion-summary.md +592 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-final-summary.md +371 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-preparation-complete.md +343 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-preparation.md +945 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-progress-update.md +366 -0
- package/docs/archive/phases/phase-3/phase-3-completion-summary.md +354 -0
- package/docs/archive/phases/phase-3/phase-3-development-plan.md +878 -0
- package/docs/archive/phases/phase-3/phase-3-quick-start.md +324 -0
- package/docs/archive/phases/phase-4/phase-4-completion-summary.md +708 -0
- package/docs/archive/phases/phase-4/phase-4-development-plan.md +740 -0
- package/docs/archive/phases/phase-4/phase-4-quick-start.md +632 -0
- package/docs/archive/phases/phase-4/phase-4-session-3-security-testing.md +484 -0
- package/docs/archive/phases/phase-4/phase-4-session-4-unit-tests.md +550 -0
- package/docs/archive/phases/phase-4/phase-4-session-5-security-tests.md +564 -0
- package/docs/archive/phases/phase-4/phase-4-session-6-cache-integration.md +456 -0
- package/docs/archive/phases/phase-4/phase-4-session-7-test-fixes.md +348 -0
- package/docs/archive/phases/phase-4/phase-4-session-8-taskqueue-fixes.md +323 -0
- package/docs/archive/phases/phase-4/phase-4-session-summary-continued.md +373 -0
- package/docs/archive/phases/phase-4/phase-4-session-summary.md +595 -0
- package/docs/archive/reports/progress-reports/PHASE_0_PROGRESS.md +242 -0
- package/docs/archive/reports/progress-reports/PHASE_0_SUMMARY.md +262 -0
- package/docs/archive/reports/progress-reports/PHASE_1_2_ISSUES.md +399 -0
- package/docs/archive/reports/progress-reports/PHASE_1_PROGRESS.md +388 -0
- package/docs/archive/reports/progress-reports/PHASE_3_PREPARATION.md +574 -0
- package/docs/archive/reports/progress-reports/current-progress-update.md +294 -0
- package/docs/archive/reports/progress-reports/final-summary.md +215 -0
- package/docs/archive/reports/progress-reports/implementation-summary.md +287 -0
- package/docs/archive/reports/progress-reports/project-progress-report.md +440 -0
- package/docs/archive/reports/progress-reports/project-progress.md +386 -0
- package/docs/archive/reports/test-reports/TEST-COVERAGE-REPORT.md +441 -0
- package/docs/archive/reports/test-reports/e2e-test-report.md +293 -0
- package/docs/archive/reports/test-reports/final-test-report.md +367 -0
- package/docs/archive/reports/test-reports/real-env-test-report.md +391 -0
- package/docs/archive/reports/test-reports/test-completion-summary.md +356 -0
- package/docs/archive/reports/test-reports/test-report.md +371 -0
- package/docs/archive/sessions/session-2-summary.md +429 -0
- package/docs/archive/sessions/session-3-summary.md +395 -0
- package/docs/archive/sessions/session-summary.md +370 -0
- package/docs/config-system-update.md +239 -0
- package/docs/database-refactoring-PLAN.md +199 -0
- package/docs/database-refactoring-SUMMARY.md +384 -0
- package/docs/quality-check-architecture.md +1030 -0
- package/docs/quick-start.md +388 -0
- package/docs/references/bullmq-quick-reference.md +525 -0
- package/docs/references/monitoring-optimization-guide.md +871 -0
- package/docs/references/performance-optimization-guide.md +933 -0
- package/docs/storage-guide.md +612 -0
- package/docs/test-implementation-PLAN.md +223 -0
- package/docs/test-implementation-SUMMARY.md +194 -0
- package/docs/user-guide.md +719 -0
- package/docs/workflow-architecture.md +549 -0
- package/package.json +126 -0
- package/src/application/workflow/SyncExecutor.ts +444 -0
- package/src/application/workflow/types.ts +57 -0
- package/src/config/index.ts +352 -0
- package/src/domain/entities/QualityCheck.ts +202 -0
- package/src/domain/entities/Result.ts +130 -0
- package/src/domain/entities/Task.ts +178 -0
- package/src/domain/entities/TaskStep.ts +188 -0
- package/src/domain/entities/TokenUsage.ts +119 -0
- package/src/domain/entities/index.ts +20 -0
- package/src/domain/repositories/QualityCheckRepository.ts +52 -0
- package/src/domain/repositories/ResultRepository.ts +47 -0
- package/src/domain/repositories/TaskRepository.ts +271 -0
- package/src/domain/workflow/CheckpointManager.ts +283 -0
- package/src/domain/workflow/ContentCreatorGraph.ts +446 -0
- package/src/domain/workflow/State.ts +321 -0
- package/src/domain/workflow/index.ts +18 -0
- package/src/domain/workflow/nodes/BaseNode.ts +325 -0
- package/src/domain/workflow/nodes/CheckImageNode.ts +325 -0
- package/src/domain/workflow/nodes/CheckTextNode.ts +709 -0
- package/src/domain/workflow/nodes/GenerateImageNode.ts +342 -0
- package/src/domain/workflow/nodes/OrganizeNode.ts +304 -0
- package/src/domain/workflow/nodes/SearchNode.ts +192 -0
- package/src/domain/workflow/nodes/WriteNode.ts +505 -0
- package/src/domain/workflow/nodes/index.ts +13 -0
- package/src/index.ts +43 -0
- package/src/infrastructure/cache/CacheService.ts +483 -0
- package/src/infrastructure/cache/index.ts +6 -0
- package/src/infrastructure/database/BaseRepository.ts +214 -0
- package/src/infrastructure/database/MemoryTaskRepository.ts +377 -0
- package/src/infrastructure/database/PostgresQualityCheckRepository.ts +115 -0
- package/src/infrastructure/database/PostgresTaskRepository.ts +424 -0
- package/src/infrastructure/database/ResultRepository.ts +113 -0
- package/src/infrastructure/database/SQLiteTaskRepository.ts +651 -0
- package/src/infrastructure/database/index.ts +83 -0
- package/src/infrastructure/logging/logger.ts +231 -0
- package/src/infrastructure/monitoring/LoggingService.ts +292 -0
- package/src/infrastructure/monitoring/MetricsService.ts +468 -0
- package/src/infrastructure/monitoring/SentryService.ts +345 -0
- package/src/infrastructure/monitoring/index.ts +12 -0
- package/src/infrastructure/queue/TaskQueue.ts +429 -0
- package/src/infrastructure/queue/index.ts +5 -0
- package/src/infrastructure/redis/connection.ts +215 -0
- package/src/infrastructure/redis/index.ts +5 -0
- package/src/infrastructure/security/ApiKeyService.ts +340 -0
- package/src/infrastructure/security/QuotaService.ts +411 -0
- package/src/infrastructure/security/RateLimiter.ts +417 -0
- package/src/infrastructure/security/index.ts +12 -0
- package/src/monitoring/index.ts +5 -0
- package/src/monitoring/server.ts +109 -0
- package/src/presentation/cli/commands/cancel.ts +64 -0
- package/src/presentation/cli/commands/create.ts +400 -0
- package/src/presentation/cli/commands/result.ts +136 -0
- package/src/presentation/cli/commands/status.ts +102 -0
- package/src/presentation/cli/index.ts +39 -0
- package/src/presentation/cli/utils/cleanup.ts +65 -0
- package/src/presentation/cli/utils/formatter.ts +74 -0
- package/src/presentation/cli.ts +8 -0
- package/src/presentation/monitor-cli.ts +52 -0
- package/src/presentation/worker-cli.ts +62 -0
- package/src/schedulers/TaskScheduler.ts +314 -0
- package/src/schedulers/index.ts +11 -0
- package/src/services/image/ImageService.ts +221 -0
- package/src/services/index.ts +15 -0
- package/src/services/llm/EnhancedLLMService.ts +596 -0
- package/src/services/llm/LLMService.ts +310 -0
- package/src/services/quality/HardRuleChecker.ts +509 -0
- package/src/services/quality/LLMEvaluator.ts +400 -0
- package/src/services/quality/QualityCheckService.ts +473 -0
- package/src/services/quality/QualityService.ts +445 -0
- package/src/services/quality/index.ts +12 -0
- package/src/services/search/SearchService.ts +266 -0
- package/src/types/global.d.ts +17 -0
- package/src/workers/TaskWorker.ts +320 -0
- package/src/workers/index.ts +5 -0
|
@@ -0,0 +1,777 @@
|
|
|
1
|
+
# 实施任务清单
|
|
2
|
+
|
|
3
|
+
**项目**: Content Creator (写作 Agent)
|
|
4
|
+
**开始日期**: 2025-01-18
|
|
5
|
+
**预计完成**: 2025-02-15(约 4 周)
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 📊 总体进度
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
阶段 0 [████████████████████] 100% ✅
|
|
13
|
+
阶段 1 [████████████████░░░░] 90% ✅
|
|
14
|
+
阶段 2 [████████████████████] 100% ✅
|
|
15
|
+
阶段 3 [░░░░░░░░░░░░░░░░░░░░] 0% ⏳
|
|
16
|
+
阶段 4 [███░░░░░░░░░░░░░░░░░] 20% 🚧
|
|
17
|
+
─────────────────────────────
|
|
18
|
+
总进度 [██████████████████░░] 78%
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
**状态图例**:
|
|
22
|
+
- ✅ 已完成
|
|
23
|
+
- ⏳ 进行中
|
|
24
|
+
- ⏸️ 阻塞
|
|
25
|
+
- ⏹️ 未开始
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 阶段 0:环境准备与项目初始化(1-2 天)
|
|
30
|
+
|
|
31
|
+
**状态**: ⏸️ 待开始
|
|
32
|
+
**开始日期**: ____
|
|
33
|
+
**完成日期**: ____
|
|
34
|
+
**负责人**: ____
|
|
35
|
+
|
|
36
|
+
### 0.1 项目依赖安装
|
|
37
|
+
|
|
38
|
+
- [ ] 安装 pnpm(如果未安装)
|
|
39
|
+
- [ ] 运行 `pnpm install`
|
|
40
|
+
- [ ] 验证 `node_modules` 目录存在
|
|
41
|
+
- [ ] 验证 `pnpm list` 显示所有包
|
|
42
|
+
|
|
43
|
+
**验收**: ✅ 所有依赖安装成功
|
|
44
|
+
**预计时间**: 30 分钟
|
|
45
|
+
**实际时间**: ____
|
|
46
|
+
**状态**: ⏹️
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
### 0.2 TypeScript 配置
|
|
51
|
+
|
|
52
|
+
- [ ] 运行 `npx tsc --init`
|
|
53
|
+
- [ ] 修改 `tsconfig.json` 配置
|
|
54
|
+
- [ ] 创建 `src/types/global.d.ts`
|
|
55
|
+
- [ ] 运行 `tsc --noEmit` 验证无错误
|
|
56
|
+
|
|
57
|
+
**验收**: ✅ TypeScript 编译无错误
|
|
58
|
+
**预计时间**: 30 分钟
|
|
59
|
+
**实际时间**: ____
|
|
60
|
+
**状态**: ⏹️
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
### 0.3 环境验证脚本
|
|
65
|
+
|
|
66
|
+
- [ ] 创建 `scripts/verify-env.ts`
|
|
67
|
+
- [ ] 实现 PostgreSQL 连接检查
|
|
68
|
+
- [ ] 实现 Redis 连接检查
|
|
69
|
+
- [ ] 实现 DeepSeek API 检查
|
|
70
|
+
- [ ] 添加到 `package.json` scripts
|
|
71
|
+
- [ ] 运行 `pnpm run verify-env` 验证
|
|
72
|
+
|
|
73
|
+
**验收**: ✅ 所有检查通过
|
|
74
|
+
**预计时间**: 1 小时
|
|
75
|
+
**实际时间**: ____
|
|
76
|
+
**状态**: ⏹️
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
### 0.4 目录结构创建
|
|
81
|
+
|
|
82
|
+
- [ ] 创建 `src/domain/entities/`
|
|
83
|
+
- [ ] 创建 `src/domain/repositories/`
|
|
84
|
+
- [ ] 创建 `src/domain/workflow/`
|
|
85
|
+
- [ ] 创建 `src/application/`
|
|
86
|
+
- [ ] 创建 `src/infrastructure/database/`
|
|
87
|
+
- [ ] 创建 `src/infrastructure/queue/`
|
|
88
|
+
- [ ] 创建 `src/infrastructure/worker/`
|
|
89
|
+
- [ ] 创建 `src/services/llm/`
|
|
90
|
+
- [ ] 创建 `src/services/quality/`
|
|
91
|
+
- [ ] 创建 `src/presentation/cli/`
|
|
92
|
+
- [ ] 创建 `tests/unit/`
|
|
93
|
+
- [ ] 创建 `tests/integration/`
|
|
94
|
+
- [ ] 创建 `migrations/`
|
|
95
|
+
- [ ] 创建 `scripts/`
|
|
96
|
+
- [ ] 创建 `logs/`
|
|
97
|
+
|
|
98
|
+
**验收**: ✅ 所有目录创建成功
|
|
99
|
+
**预计时间**: 15 分钟
|
|
100
|
+
**实际时间**: ____
|
|
101
|
+
**状态**: ⏹️
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
### 0.5 ESLint 和 Prettier 配置(可选)
|
|
106
|
+
|
|
107
|
+
- [ ] 安装 ESLint 相关包
|
|
108
|
+
- [ ] 创建 `.eslintrc.json`
|
|
109
|
+
- [ ] 安装 Prettier 相关包
|
|
110
|
+
- [ ] 创建 `.prettierrc`
|
|
111
|
+
- [ ] 运行 `pnpm run lint` 验证
|
|
112
|
+
|
|
113
|
+
**验收**: ✅ 代码规范检查通过
|
|
114
|
+
**预计时间**: 30 分钟
|
|
115
|
+
**实际时间**: ____
|
|
116
|
+
**状态**: ⏹️
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
### 0.6 .gitignore 更新
|
|
121
|
+
|
|
122
|
+
- [ ] 添加 `node_modules/`
|
|
123
|
+
- [ ] 添加 `dist/`
|
|
124
|
+
- [ ] 添加 `.env`
|
|
125
|
+
- [ ] 添加 `logs/`
|
|
126
|
+
- [ ] 添加 `*.log`
|
|
127
|
+
- [ ] 添加 `.DS_Store`
|
|
128
|
+
|
|
129
|
+
**验收**: ✅ 敏感文件被忽略
|
|
130
|
+
**预计时间**: 5 分钟
|
|
131
|
+
**实际时间**: ____
|
|
132
|
+
**状态**: ⏹️
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
### 阶段 0 验收
|
|
137
|
+
|
|
138
|
+
**总验收标准**:
|
|
139
|
+
- [ ] `pnpm run verify-env` 全部通过
|
|
140
|
+
- [ ] `pnpm run build` 编译成功
|
|
141
|
+
- [ ] 目录结构完整
|
|
142
|
+
- [ ] `.env` 文件配置正确
|
|
143
|
+
|
|
144
|
+
**阶段完成**: ⏹️
|
|
145
|
+
**完成日期**: ____
|
|
146
|
+
**备注**: ____
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## 阶段 1:核心数据层与基础架构(3-5 天)
|
|
151
|
+
|
|
152
|
+
**状态**: ⏸️ 待开始
|
|
153
|
+
**开始日期**: ____
|
|
154
|
+
**完成日期**: ____
|
|
155
|
+
**依赖**: 阶段 0
|
|
156
|
+
|
|
157
|
+
### 1.1 定义领域模型
|
|
158
|
+
|
|
159
|
+
- [x] 创建 `src/domain/entities/Task.ts` (220行)
|
|
160
|
+
- [x] 创建 `src/domain/entities/TaskStep.ts` (189行)
|
|
161
|
+
- [x] 创建 `src/domain/entities/QualityCheck.ts` (203行)
|
|
162
|
+
- [x] 创建 `src/domain/entities/Result.ts` (131行)
|
|
163
|
+
- [x] 创建 `src/domain/entities/TokenUsage.ts` (120行)
|
|
164
|
+
- [x] 定义所有枚举类型
|
|
165
|
+
- [ ] 创建 Zod 验证 schema
|
|
166
|
+
- [ ] 编写单元测试
|
|
167
|
+
|
|
168
|
+
**验收**: ✅ 所有实体类有完整类型和验证
|
|
169
|
+
**预计时间**: 1 天
|
|
170
|
+
**实际时间**: 1 天
|
|
171
|
+
**状态**: ✅
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
### 1.2 数据库迁移脚本
|
|
176
|
+
|
|
177
|
+
- [x] 创建 `migrations/001_create_initial_tables.sql` (328行)
|
|
178
|
+
- [x] 编写 `tasks` 表 SQL
|
|
179
|
+
- [x] 编写 `task_steps` 表 SQL
|
|
180
|
+
- [x] 编写 `quality_checks` 表 SQL
|
|
181
|
+
- [x] 编写 `results` 表 SQL
|
|
182
|
+
- [x] 编写 `token_usage` 表 SQL
|
|
183
|
+
- [x] 创建所有索引
|
|
184
|
+
- [x] 创建更新时间触发器
|
|
185
|
+
- [x] 创建 `scripts/run-migration.ts`
|
|
186
|
+
- [ ] 运行迁移验证
|
|
187
|
+
|
|
188
|
+
**验收**: ✅ 所有表和索引创建成功
|
|
189
|
+
**预计时间**: 1 天
|
|
190
|
+
**实际时间**: 1 天
|
|
191
|
+
**状态**: ✅
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
### 1.3 Repository 基类
|
|
196
|
+
|
|
197
|
+
- [x] 创建 `src/infrastructure/database/BaseRepository.ts`
|
|
198
|
+
- [x] 实现连接池管理
|
|
199
|
+
- [x] 实现 `getConnection()` 方法
|
|
200
|
+
- [x] 实现 `executeQuery()` 方法
|
|
201
|
+
- [x] 实现 `executeOne()` 方法
|
|
202
|
+
- [x] 添加错误处理
|
|
203
|
+
- [x] 添加日志记录
|
|
204
|
+
|
|
205
|
+
**验收**: ✅ 可以执行数据库查询
|
|
206
|
+
**预计时间**: 3 小时
|
|
207
|
+
**实际时间**: 3 小时
|
|
208
|
+
**状态**: ✅
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
### 1.4 TaskRepository 实现
|
|
213
|
+
|
|
214
|
+
- [x] 创建 `src/domain/repositories/TaskRepository.ts` (216行接口)
|
|
215
|
+
- [x] 实现 `create()` 方法
|
|
216
|
+
- [x] 实现 `findById()` 方法
|
|
217
|
+
- [x] 实现 `updateStatus()` 方法
|
|
218
|
+
- [x] 实现 `claimTask()` 方法(乐观锁)
|
|
219
|
+
- [x] 实现 `update()` 方法
|
|
220
|
+
- [x] 添加事务支持
|
|
221
|
+
- [ ] 编写单元测试
|
|
222
|
+
|
|
223
|
+
**验收**: ✅ 可以 CRUD 任务记录
|
|
224
|
+
**预计时间**: 2 天
|
|
225
|
+
**实际时间**: 2 天
|
|
226
|
+
**状态**: ✅
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
### 1.5 其他 Repository 实现
|
|
231
|
+
|
|
232
|
+
- [ ] 创建 `TaskStepRepository.ts`
|
|
233
|
+
- [ ] 创建 `QualityCheckRepository.ts`
|
|
234
|
+
- [ ] 创建 `ResultRepository.ts`
|
|
235
|
+
- [ ] 创建 `TokenUsageRepository.ts`
|
|
236
|
+
- [ ] 编写单元测试
|
|
237
|
+
|
|
238
|
+
**验收**: ✅ 所有 Repository 测试通过
|
|
239
|
+
**预计时间**: 1 天
|
|
240
|
+
**实际时间**: ____
|
|
241
|
+
**状态**: ⏹️
|
|
242
|
+
**备注**: 当前使用临时实现,需要补充完整实现
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
### 1.6 数据访问集成测试
|
|
247
|
+
|
|
248
|
+
- [ ] 配置测试数据库
|
|
249
|
+
- [ ] 编写端到端测试
|
|
250
|
+
- [ ] 测试并发更新(乐观锁)
|
|
251
|
+
- [ ] 测试事务回滚
|
|
252
|
+
- [ ] 达到 80% 测试覆盖率
|
|
253
|
+
|
|
254
|
+
**验收**: ✅ 测试覆盖率 > 80%
|
|
255
|
+
**预计时间**: 1 天
|
|
256
|
+
**实际时间**: ____
|
|
257
|
+
**状态**: ⏹️
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
### 阶段 1 验收
|
|
262
|
+
|
|
263
|
+
**总验收标准**:
|
|
264
|
+
- [x] 可以创建任务记录
|
|
265
|
+
- [x] 可以查询和更新任务状态
|
|
266
|
+
- [x] 并发更新时乐观锁生效
|
|
267
|
+
- [ ] 测试覆盖率 > 80%
|
|
268
|
+
- [ ] 数据库迁移可重复执行
|
|
269
|
+
|
|
270
|
+
**阶段完成**: 🚧 85%
|
|
271
|
+
**完成日期**: ____
|
|
272
|
+
**备注**: 核心功能完成,缺少其他Repository和测试
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
## 阶段 2:LangGraph 工作流与服务集成(5-7 天)
|
|
277
|
+
|
|
278
|
+
**状态**: ✅ 已完成
|
|
279
|
+
**开始日期**: 2025-01-18
|
|
280
|
+
**完成日期**: 2025-01-19
|
|
281
|
+
**依赖**: 阶段 1
|
|
282
|
+
|
|
283
|
+
### 2.1 安装 LangGraph
|
|
284
|
+
|
|
285
|
+
- [x] 运行 `pnpm add @langchain/core @langchain/langgraph`
|
|
286
|
+
- [x] 验证安装成功
|
|
287
|
+
- [x] 阅读官方文档
|
|
288
|
+
- [ ] 创建示例项目测试
|
|
289
|
+
|
|
290
|
+
**验收**: ✅ LangGraph 可用
|
|
291
|
+
**预计时间**: 2 小时
|
|
292
|
+
**实际时间**: 2 小时
|
|
293
|
+
**状态**: ✅
|
|
294
|
+
|
|
295
|
+
---
|
|
296
|
+
|
|
297
|
+
### 2.2 LLM Service 封装
|
|
298
|
+
|
|
299
|
+
- [x] 创建 `src/services/llm/EnhancedLLMService.ts` (463行)
|
|
300
|
+
- [x] 实现 `chat()` 方法
|
|
301
|
+
- [x] 实现 `estimateCost()` 方法
|
|
302
|
+
- [x] 添加重试逻辑(最多 3 次)
|
|
303
|
+
- [x] 添加超时控制
|
|
304
|
+
- [x] 添加 Token 记录
|
|
305
|
+
- [ ] 编写单元测试
|
|
306
|
+
|
|
307
|
+
**验收**: ✅ 可以调用 DeepSeek API
|
|
308
|
+
**预计时间**: 1 天
|
|
309
|
+
**实际时间**: 1 天
|
|
310
|
+
**状态**: ✅
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
### 2.3 定义 Workflow State
|
|
315
|
+
|
|
316
|
+
- [x] 创建 `src/domain/workflow/State.ts`
|
|
317
|
+
- [x] 定义 `WorkflowState` 接口
|
|
318
|
+
- [x] 定义所有字段类型
|
|
319
|
+
- [x] 创建初始状态工厂函数
|
|
320
|
+
- [ ] 编写类型测试
|
|
321
|
+
|
|
322
|
+
**验收**: ✅ 状态类型定义完整
|
|
323
|
+
**预计时间**: 2 小时
|
|
324
|
+
**实际时间**: 2 小时
|
|
325
|
+
**状态**: ✅
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
### 2.4 实现 Search Node
|
|
330
|
+
|
|
331
|
+
- [x] 创建 `src/domain/workflow/nodes/SearchNode.ts`
|
|
332
|
+
- [x] 继承 BaseNode 类
|
|
333
|
+
- [x] 实现 `execute()` 方法
|
|
334
|
+
- [x] 集成 Tavily Search
|
|
335
|
+
- [x] 解析搜索结果
|
|
336
|
+
- [ ] 编写单元测试
|
|
337
|
+
|
|
338
|
+
**验收**: ✅ 可以搜索资料
|
|
339
|
+
**预计时间**: 1 天
|
|
340
|
+
**实际时间**: 1 天
|
|
341
|
+
**状态**: ✅
|
|
342
|
+
|
|
343
|
+
---
|
|
344
|
+
|
|
345
|
+
### 2.5 实现 Organize Node
|
|
346
|
+
|
|
347
|
+
- [ ] 创建 `OrganizeNode.ts`
|
|
348
|
+
- [ ] 实现 `execute()` 方法
|
|
349
|
+
- [ ] 调用 LLM 生成大纲
|
|
350
|
+
- [ ] 解析大纲结构
|
|
351
|
+
- [ ] 编写单元测试
|
|
352
|
+
|
|
353
|
+
**验收**: ✅ 可以生成大纲
|
|
354
|
+
**预计时间**: 1 天
|
|
355
|
+
**实际时间**: ____
|
|
356
|
+
**状态**: ⏹️
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
### 2.6 实现 Write Node
|
|
361
|
+
|
|
362
|
+
- [ ] 创建 `WriteNode.ts`
|
|
363
|
+
- [ ] 实现 `execute()` 方法
|
|
364
|
+
- [ ] 构建 Prompt 模板
|
|
365
|
+
- [ ] 调用 LLM 生成文章
|
|
366
|
+
- [ ] 解析文章内容
|
|
367
|
+
- [ ] 编写单元测试
|
|
368
|
+
|
|
369
|
+
**验收**: ✅ 可以生成文章
|
|
370
|
+
**预计时间**: 1 天
|
|
371
|
+
**实际时间**: ____
|
|
372
|
+
**状态**: ⏹️
|
|
373
|
+
|
|
374
|
+
---
|
|
375
|
+
|
|
376
|
+
### 2.7 实现 CheckText Node
|
|
377
|
+
|
|
378
|
+
- [ ] 创建 `CheckTextNode.ts`
|
|
379
|
+
- [ ] 实现硬规则检查
|
|
380
|
+
- [ ] 实现 LLM 评审
|
|
381
|
+
- [ ] 实现评分逻辑
|
|
382
|
+
- [ ] 返回通过/失败结果
|
|
383
|
+
- [ ] 编写单元测试
|
|
384
|
+
|
|
385
|
+
**验收**: ✅ 可以质检文章
|
|
386
|
+
**预计时间**: 2 天
|
|
387
|
+
**实际时间**: ____
|
|
388
|
+
**状态**: ⏹️
|
|
389
|
+
|
|
390
|
+
---
|
|
391
|
+
|
|
392
|
+
### 2.8 实现 GenerateImage Node
|
|
393
|
+
|
|
394
|
+
- [ ] 创建 `GenerateImageNode.ts`
|
|
395
|
+
- [ ] 集成 Doubao API
|
|
396
|
+
- [ ] 实现 `execute()` 方法
|
|
397
|
+
- [ ] 保存图片 URL
|
|
398
|
+
- [ ] 编写单元测试
|
|
399
|
+
|
|
400
|
+
**验收**: ✅ 可以生成配图
|
|
401
|
+
**预计时间**: 1 天
|
|
402
|
+
**实际时间**: ____
|
|
403
|
+
**状态**: ⏹️
|
|
404
|
+
|
|
405
|
+
---
|
|
406
|
+
|
|
407
|
+
### 2.9 实现 CheckImage Node
|
|
408
|
+
|
|
409
|
+
- [ ] 创建 `CheckImageNode.ts`
|
|
410
|
+
- [ ] 实现相关性检查
|
|
411
|
+
- [ ] 实现美学评分
|
|
412
|
+
- [ ] 返回通过/失败
|
|
413
|
+
- [ ] 编写单元测试
|
|
414
|
+
|
|
415
|
+
**验收**: ✅ 可以质检配图
|
|
416
|
+
**预计时间**: 1 天
|
|
417
|
+
**实际时间**: ____
|
|
418
|
+
**状态**: ⏹️
|
|
419
|
+
|
|
420
|
+
---
|
|
421
|
+
|
|
422
|
+
### 2.10 构建工作流图
|
|
423
|
+
|
|
424
|
+
- [x] 创建 `ContentCreatorGraph.ts`
|
|
425
|
+
- [x] 创建 StateGraph 实例
|
|
426
|
+
- [x] 添加所有节点
|
|
427
|
+
- [x] 配置条件路由
|
|
428
|
+
- [x] 配置循环(质检重试)
|
|
429
|
+
- [x] 添加 Checkpoint(断点续传)
|
|
430
|
+
- [ ] 编写集成测试
|
|
431
|
+
|
|
432
|
+
**验收**: ✅ 工作流可以执行
|
|
433
|
+
**预计时间**: 1 天
|
|
434
|
+
**实际时间**: 1 天
|
|
435
|
+
**状态**: ✅
|
|
436
|
+
**备注**: 工作流完整实现,包含质检重试逻辑
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
### 2.11 同步执行器
|
|
441
|
+
|
|
442
|
+
- [x] 创建 `src/application/workflow/SyncExecutor.ts` (370行)
|
|
443
|
+
- [x] 实现任务状态管理
|
|
444
|
+
- [x] 调用工作流图
|
|
445
|
+
- [x] 保存结果到数据库
|
|
446
|
+
- [x] 错误处理和回滚
|
|
447
|
+
- [ ] 编写集成测试
|
|
448
|
+
|
|
449
|
+
**验收**: ✅ 可以同步执行任务
|
|
450
|
+
**预计时间**: 1 天
|
|
451
|
+
**实际时间**: 2小时
|
|
452
|
+
**状态**: ✅
|
|
453
|
+
|
|
454
|
+
---
|
|
455
|
+
|
|
456
|
+
### 2.12 CLI 接口
|
|
457
|
+
|
|
458
|
+
- [x] 安装 Commander.js (commander ^14.0.2)
|
|
459
|
+
- [x] 安装 chalk (chalk ^5.6.2)
|
|
460
|
+
- [x] 安装 ora (ora ^9.0.0)
|
|
461
|
+
- [x] 创建 `src/presentation/cli/index.ts`
|
|
462
|
+
- [x] 实现 `create` 命令
|
|
463
|
+
- [x] 实现 `status` 命令
|
|
464
|
+
- [x] 实现 `result` 命令
|
|
465
|
+
- [x] 实现 `cancel` 命令
|
|
466
|
+
- [x] 添加帮助文档
|
|
467
|
+
- [x] 手动测试 CLI
|
|
468
|
+
|
|
469
|
+
**验收**: ✅ CLI 可用
|
|
470
|
+
**预计时间**: 1 天
|
|
471
|
+
**实际时间**: 1.5小时
|
|
472
|
+
**状态**: ✅
|
|
473
|
+
|
|
474
|
+
---
|
|
475
|
+
|
|
476
|
+
### 阶段 2 验收
|
|
477
|
+
|
|
478
|
+
**总验收标准**:
|
|
479
|
+
- [x] 可以端到端生成一篇文章
|
|
480
|
+
- [x] 质量检查不合格会自动重试
|
|
481
|
+
- [x] CLI 可以创建和查询任务
|
|
482
|
+
- [x] 错误处理和日志完善
|
|
483
|
+
- [x] 端到端测试通过
|
|
484
|
+
- [x] MemoryTaskRepository 完整实现
|
|
485
|
+
- [x] SyncExecutor 测试通过
|
|
486
|
+
|
|
487
|
+
**阶段完成**: ✅ 100%
|
|
488
|
+
**完成日期**: 2025-01-19
|
|
489
|
+
**实际耗时**: 约 6 小时(分散在2天内)
|
|
490
|
+
**备注**: ✅ 核心功能完成,CLI测试通过,工作流端到端验证成功
|
|
491
|
+
|
|
492
|
+
**测试结果**:
|
|
493
|
+
- CLI create 命令测试通过
|
|
494
|
+
- 工作流完整执行(search → organize → write)
|
|
495
|
+
- 错误处理验证(字数超限正确捕获)
|
|
496
|
+
- MemoryTaskRepository 状态管理正常
|
|
497
|
+
- 总耗时:2分33秒(包含 LLM 调用)
|
|
498
|
+
|
|
499
|
+
---
|
|
500
|
+
|
|
501
|
+
## 阶段 3:异步任务与 Worker 系统(3-5 天)
|
|
502
|
+
|
|
503
|
+
**状态**: ⏸️ 待开始
|
|
504
|
+
**开始日期**: ____
|
|
505
|
+
**完成日期**: ____
|
|
506
|
+
**依赖**: 阶段 2
|
|
507
|
+
|
|
508
|
+
### 3.1 配置 Bull 队列
|
|
509
|
+
|
|
510
|
+
- [ ] 创建 `src/infrastructure/queue/taskQueue.ts`
|
|
511
|
+
- [ ] 配置 Redis 连接
|
|
512
|
+
- [ ] 定义任务选项
|
|
513
|
+
- [ ] 创建队列实例
|
|
514
|
+
- [ ] 编写单元测试
|
|
515
|
+
|
|
516
|
+
**验收**: ✅ 队列可用
|
|
517
|
+
**预计时间**: 3 小时
|
|
518
|
+
**实际时间**: ____
|
|
519
|
+
**状态**: ⏹️
|
|
520
|
+
|
|
521
|
+
---
|
|
522
|
+
|
|
523
|
+
### 3.2 异步执行器
|
|
524
|
+
|
|
525
|
+
- [ ] 创建 `src/application/async-executor.ts`
|
|
526
|
+
- [ ] 实现 `submit()` 方法
|
|
527
|
+
- [ ] 添加任务到队列
|
|
528
|
+
- [ ] 返回 taskId
|
|
529
|
+
- [ ] 编写单元测试
|
|
530
|
+
|
|
531
|
+
**验收**: ✅ 可以提交异步任务
|
|
532
|
+
**预计时间**: 1 天
|
|
533
|
+
**实际时间**: ____
|
|
534
|
+
**状态**: ⏹️
|
|
535
|
+
|
|
536
|
+
---
|
|
537
|
+
|
|
538
|
+
### 3.3 Worker 进程
|
|
539
|
+
|
|
540
|
+
- [ ] 创建 `src/infrastructure/worker/taskWorker.ts`
|
|
541
|
+
- [ ] 配置并发数
|
|
542
|
+
- [ ] 实现任务处理函数
|
|
543
|
+
- [ ] 实现 Worker 抢占机制
|
|
544
|
+
- [ ] 添加心跳检测
|
|
545
|
+
- [ ] 添加错误处理
|
|
546
|
+
- [ ] 编写集成测试
|
|
547
|
+
|
|
548
|
+
**验收**: ✅ Worker 可以处理任务
|
|
549
|
+
**预计时间**: 2 天
|
|
550
|
+
**实际时间**: ____
|
|
551
|
+
**状态**: ⏹️
|
|
552
|
+
|
|
553
|
+
---
|
|
554
|
+
|
|
555
|
+
### 3.4 Docker Compose 部署
|
|
556
|
+
|
|
557
|
+
- [ ] 创建 `docker-compose.yml`
|
|
558
|
+
- [ ] 配置 Worker 服务
|
|
559
|
+
- [ ] 配置环境变量
|
|
560
|
+
- [ ] 配置健康检查
|
|
561
|
+
- [ ] 测试部署
|
|
562
|
+
- [ ] 测试重启
|
|
563
|
+
|
|
564
|
+
**验收**: ✅ 5 个 Worker 运行正常
|
|
565
|
+
**预计时间**: 1 天
|
|
566
|
+
**实际时间**: ____
|
|
567
|
+
**状态**: ⏹️
|
|
568
|
+
|
|
569
|
+
---
|
|
570
|
+
|
|
571
|
+
### 3.5 队列监控面板
|
|
572
|
+
|
|
573
|
+
- [ ] 安装 `bull-board`
|
|
574
|
+
- [ ] 创建 Express 服务器
|
|
575
|
+
- [ ] 挂载 Bull Board
|
|
576
|
+
- [ ] 配置认证
|
|
577
|
+
- [ ] 测试访问
|
|
578
|
+
|
|
579
|
+
**验收**: ✅ 监控面板可用
|
|
580
|
+
**预计时间**: 3 小时
|
|
581
|
+
**实际时间**: ____
|
|
582
|
+
**状态**: ⏹️
|
|
583
|
+
|
|
584
|
+
---
|
|
585
|
+
|
|
586
|
+
### 阶段 3 验收
|
|
587
|
+
|
|
588
|
+
**总验收标准**:
|
|
589
|
+
- [ ] 可以提交异步任务
|
|
590
|
+
- [ ] Worker 可以处理任务
|
|
591
|
+
- [ ] 5 个 Worker 可同时运行
|
|
592
|
+
- [ ] Worker 崩溃任务可被接管
|
|
593
|
+
- [ ] 队列监控面板可用
|
|
594
|
+
- [ ] 测试 10 个并发任务
|
|
595
|
+
|
|
596
|
+
**阶段完成**: ⏹️
|
|
597
|
+
**完成日期**: ____
|
|
598
|
+
**备注**: ____
|
|
599
|
+
|
|
600
|
+
---
|
|
601
|
+
|
|
602
|
+
## 阶段 4:质量检查与监控优化(3-5 天)
|
|
603
|
+
|
|
604
|
+
**状态**: ⏸️ 待开始
|
|
605
|
+
**开始日期**: ____
|
|
606
|
+
**完成日期**: ____
|
|
607
|
+
**依赖**: 阶段 3
|
|
608
|
+
|
|
609
|
+
### 4.1 质量检查服务
|
|
610
|
+
|
|
611
|
+
- [ ] 创建 `src/services/quality/QualityCheckService.ts`
|
|
612
|
+
- [ ] 实现硬规则检查
|
|
613
|
+
- [ ] 实现 LLM 评审
|
|
614
|
+
- [ ] 实现评分逻辑
|
|
615
|
+
- [ ] 保存质检结果
|
|
616
|
+
- [ ] 编写单元测试
|
|
617
|
+
|
|
618
|
+
**验收**: ✅ 质检服务可用
|
|
619
|
+
**预计时间**: 2 天
|
|
620
|
+
**实际时间**: ____
|
|
621
|
+
**状态**: ⏹️
|
|
622
|
+
|
|
623
|
+
---
|
|
624
|
+
|
|
625
|
+
### 4.2 Winston 日志
|
|
626
|
+
|
|
627
|
+
- [ ] 安装 Winston
|
|
628
|
+
- [ ] 创建 `src/infrastructure/logging/logger.ts`
|
|
629
|
+
- [ ] 配置文件传输
|
|
630
|
+
- [ ] 配置控制台输出
|
|
631
|
+
- [ ] 配置日志级别
|
|
632
|
+
- [ ] 测试日志输出
|
|
633
|
+
|
|
634
|
+
**验收**: ✅ 日志系统可用
|
|
635
|
+
**预计时间**: 3 小时
|
|
636
|
+
**实际时间**: ____
|
|
637
|
+
**状态**: ⏹️
|
|
638
|
+
|
|
639
|
+
---
|
|
640
|
+
|
|
641
|
+
### 4.3 Sentry 集成
|
|
642
|
+
|
|
643
|
+
- [ ] 安装 Sentry SDK
|
|
644
|
+
- [ ] 配置 DSN
|
|
645
|
+
- [ ] 添加全局错误处理
|
|
646
|
+
- [ ] 添加上下文信息
|
|
647
|
+
- [ ] 测试错误上报
|
|
648
|
+
|
|
649
|
+
**验收**: ✅ 错误上报成功
|
|
650
|
+
**预计时间**: 3 小时
|
|
651
|
+
**实际时间**: ____
|
|
652
|
+
**状态**: ⏹️
|
|
653
|
+
|
|
654
|
+
---
|
|
655
|
+
|
|
656
|
+
### 4.4 Token 监控
|
|
657
|
+
|
|
658
|
+
- [ ] 创建 `src/services/token/TokenMonitor.ts`
|
|
659
|
+
- [ ] 记录 Token 使用
|
|
660
|
+
- [ ] 计算日累计用量
|
|
661
|
+
- [ ] 实现告警逻辑
|
|
662
|
+
- [ ] 发送告警通知
|
|
663
|
+
- [ ] 编写单元测试
|
|
664
|
+
|
|
665
|
+
**验收**: ✅ Token 监控可用
|
|
666
|
+
**预计时间**: 1 天
|
|
667
|
+
**实际时间**: ____
|
|
668
|
+
**状态**: ⏹️
|
|
669
|
+
|
|
670
|
+
---
|
|
671
|
+
|
|
672
|
+
### 4.5 API Key 加密
|
|
673
|
+
|
|
674
|
+
- [ ] 创建 `src/infrastructure/security/apiKeyManager.ts`
|
|
675
|
+
- [ ] 实现 AES-256-GCM 加密
|
|
676
|
+
- [ ] 实现解密方法
|
|
677
|
+
- [ ] 修改 LLM Service
|
|
678
|
+
- [ ] 测试加密解密
|
|
679
|
+
- [ ] 编写单元测试
|
|
680
|
+
|
|
681
|
+
**验收**: ✅ API Key 加密存储
|
|
682
|
+
**预计时间**: 1 天
|
|
683
|
+
**实际时间**: ____
|
|
684
|
+
**状态**: ⏹️
|
|
685
|
+
|
|
686
|
+
---
|
|
687
|
+
|
|
688
|
+
### 4.6 Prometheus 指标
|
|
689
|
+
|
|
690
|
+
- [ ] 安装 `prom-client`
|
|
691
|
+
- [ ] 创建指标收集器
|
|
692
|
+
- [ ] 添加 Counter(任务总数)
|
|
693
|
+
- [ ] 添加 Histogram(延迟分布)
|
|
694
|
+
- [ ] 添加 Gauge(队列长度)
|
|
695
|
+
- [ ] 暴露 /metrics 端点
|
|
696
|
+
- [ ] 测试指标收集
|
|
697
|
+
|
|
698
|
+
**验收**: ✅ 指标可查询
|
|
699
|
+
**预计时间**: 3 小时
|
|
700
|
+
**实际时间**: ____
|
|
701
|
+
**状态**: ⏹️
|
|
702
|
+
|
|
703
|
+
---
|
|
704
|
+
|
|
705
|
+
### 4.7 内容审核集成(可选)
|
|
706
|
+
|
|
707
|
+
- [ ] 选择服务商(阿里云/腾讯云)
|
|
708
|
+
- [ ] 安装 SDK
|
|
709
|
+
- [ ] 实现文本审核
|
|
710
|
+
- [ ] 实现图片审核
|
|
711
|
+
- [ ] 集成到工作流
|
|
712
|
+
- [ ] 测试审核
|
|
713
|
+
|
|
714
|
+
**验收**: ✅ 内容审核可用
|
|
715
|
+
**预计时间**: 1 天
|
|
716
|
+
**实际时间**: ____
|
|
717
|
+
**状态**: ⏹️
|
|
718
|
+
|
|
719
|
+
---
|
|
720
|
+
|
|
721
|
+
### 阶段 4 验收
|
|
722
|
+
|
|
723
|
+
**总验收标准**:
|
|
724
|
+
- [ ] 质量检查可以识别不合格内容
|
|
725
|
+
- [ ] 错误自动上报到 Sentry
|
|
726
|
+
- [ ] 日志结构化存储
|
|
727
|
+
- [ ] Token 超过 80% 发送告警
|
|
728
|
+
- [ ] API Key 加密存储
|
|
729
|
+
- [ ] Prometheus 指标正常
|
|
730
|
+
|
|
731
|
+
**阶段完成**: ⏹️
|
|
732
|
+
**完成日期**: ____
|
|
733
|
+
**备注**: ____
|
|
734
|
+
|
|
735
|
+
---
|
|
736
|
+
|
|
737
|
+
## 🎯 里程碑
|
|
738
|
+
|
|
739
|
+
| 里程碑 | 目标日期 | 状态 | 备注 |
|
|
740
|
+
|--------|----------|------|------|
|
|
741
|
+
| **M1: 环境准备完成** | __/__/____ | ⏹️ | 阶段 0 完成 |
|
|
742
|
+
| **M2: 数据层完成** | __/__/____ | ⏹️ | 可以 CRUD 任务 |
|
|
743
|
+
| **M3: 工作流完成** | __/__/____ | ⏹️ | 可以生成文章 |
|
|
744
|
+
| **M4: 异步系统完成** | __/__/____ | ⏹️ | 支持多 Worker |
|
|
745
|
+
| **M5: 监控优化完成** | __/__/____ | ⏹️ | 可以上线 |
|
|
746
|
+
|
|
747
|
+
---
|
|
748
|
+
|
|
749
|
+
## 📝 风险跟踪
|
|
750
|
+
|
|
751
|
+
| 风险 | 状态 | 缓解措施 | 负责人 |
|
|
752
|
+
|------|------|----------|--------|
|
|
753
|
+
| LangGraph 学习曲线 | ⏸️ | 预留学习时间 | ____
|
|
754
|
+
| 并发控制复杂 | ⏸️ | 充分测试 | ____
|
|
755
|
+
| LLM API 不稳定 | ⏸️ | 重试机制 | ____
|
|
756
|
+
| 成本失控 | ⏸️ | Token 监控 | ____
|
|
757
|
+
|
|
758
|
+
---
|
|
759
|
+
|
|
760
|
+
## 📊 每日站会
|
|
761
|
+
|
|
762
|
+
### 2025-01-18(今天)
|
|
763
|
+
- **昨天**: 无
|
|
764
|
+
- **今天**: 分析架构文档,创建实施计划
|
|
765
|
+
- **阻塞**: 无
|
|
766
|
+
- **明天**: ____
|
|
767
|
+
|
|
768
|
+
### ____
|
|
769
|
+
- **昨天**: ____
|
|
770
|
+
- **今天**: ____
|
|
771
|
+
- **阻塞**: ____
|
|
772
|
+
- **明天**: ____
|
|
773
|
+
|
|
774
|
+
---
|
|
775
|
+
|
|
776
|
+
**最后更新**: 2025-01-18
|
|
777
|
+
**下次更新**: 每日下班前
|