├── .agentic-qe ├── config.json ├── config │ ├── agents.json │ ├── aqe-hooks.json │ ├── environments.json │ ├── fleet.json │ ├── improvement.json │ ├── learning.json │ └── routing.json ├── data │ ├── improvement │ │ └── state.json │ ├── learning │ │ └── state.json │ └── registry.json └── scripts │ ├── post-execution.sh │ └── pre-execution.sh ├── .claude ├── agents │ ├── README.md │ ├── analysis │ │ ├── code-analyzer.md │ │ ├── code-review │ │ │ └── analyze-code-quality.md │ │ └── dr_house_agent.md │ ├── architecture │ │ └── system-design │ │ │ └── arch-system-design.md │ ├── base-template-generator.md │ ├── consensus │ │ ├── README.md │ │ ├── byzantine-coordinator.md │ │ ├── crdt-synchronizer.md │ │ ├── gossip-coordinator.md │ │ ├── performance-benchmarker.md │ │ ├── quorum-manager.md │ │ ├── raft-manager.md │ │ └── security-manager.md │ ├── core │ │ ├── coder.md │ │ ├── planner.md │ │ ├── researcher.md │ │ ├── reviewer.md │ │ └── tester.md │ ├── data │ │ └── ml │ │ │ └── data-ml-model.md │ ├── development │ │ └── backend │ │ │ └── dev-backend-api.md │ ├── devops │ │ └── ci-cd │ │ │ └── ops-cicd-github.md │ ├── documentation │ │ └── api-docs │ │ │ └── docs-api-openapi.md │ ├── flow-nexus │ │ ├── app-store.md │ │ ├── authentication.md │ │ ├── challenges.md │ │ ├── neural-network.md │ │ ├── payments.md │ │ ├── sandbox.md │ │ ├── swarm.md │ │ ├── user-tools.md │ │ └── workflow.md │ ├── github │ │ ├── code-review-swarm.md │ │ ├── github-modes.md │ │ ├── issue-tracker.md │ │ ├── multi-repo-swarm.md │ │ ├── pr-manager.md │ │ ├── project-board-sync.md │ │ ├── release-manager.md │ │ ├── release-swarm.md │ │ ├── repo-architect.md │ │ ├── swarm-issue.md │ │ ├── swarm-pr.md │ │ ├── sync-coordinator.md │ │ └── workflow-automation.md │ ├── goal │ │ ├── code-goal-planner.md │ │ └── goal-planner.md │ ├── hive-mind │ │ ├── collective-intelligence-coordinator.md │ │ ├── consensus-builder.md │ │ ├── queen-coordinator.md │ │ ├── scout-explorer.md │ │ ├── swarm-memory-manager.md │ │ └── worker-specialist.md │ ├── neural │ │ └── safla-neural.md │ ├── optimization │ │ ├── README.md │ │ ├── benchmark-suite.md │ │ ├── load-balancer.md │ │ ├── performance-monitor.md │ │ ├── resource-allocator.md │ │ └── topology-optimizer.md │ ├── qe-api-contract-validator.md │ ├── qe-chaos-engineer.md │ ├── qe-code-complexity.md │ ├── qe-coverage-analyzer.md │ ├── qe-deployment-readiness.md │ ├── qe-flaky-test-hunter.md │ ├── qe-fleet-commander.md │ ├── qe-performance-tester.md │ ├── qe-production-intelligence.md │ ├── qe-quality-analyzer.md │ ├── qe-quality-gate.md │ ├── qe-regression-risk-analyzer.md │ ├── qe-requirements-validator.md │ ├── qe-security-scanner.md │ ├── qe-test-data-architect.md │ ├── qe-test-executor.md │ ├── qe-test-generator.md │ ├── qe-visual-tester.md │ ├── reasoning │ │ ├── agent.md │ │ └── goal-planner.md │ ├── sparc │ │ ├── architecture.md │ │ ├── pseudocode.md │ │ ├── refinement.md │ │ └── specification.md │ ├── specialized │ │ └── mobile │ │ │ └── spec-mobile-react-native.md │ ├── sublinear │ │ ├── consciousness-evolution-agent.md │ │ ├── matrix-solver-agent.md │ │ ├── nanosecond-scheduler-agent.md │ │ ├── pagerank-agent.md │ │ ├── phi-calculator-agent.md │ │ ├── psycho-symbolic-agent.md │ │ ├── sublinear.md │ │ └── temporal-advantage-agent.md │ ├── swarm │ │ ├── README.md │ │ ├── adaptive-coordinator.md │ │ ├── hierarchical-coordinator.md │ │ └── mesh-coordinator.md │ ├── templates │ │ ├── automation-smart-agent.md │ │ ├── coordinator-swarm-init.md │ │ ├── github-pr-manager.md │ │ ├── implementer-sparc-coder.md │ │ ├── memory-coordinator.md │ │ ├── migration-plan.md │ │ ├── orchestrator-task.md │ │ ├── performance-analyzer.md │ │ └── sparc-coordinator.md │ └── testing │ │ ├── unit │ │ └── tdd-london-swarm.md │ │ └── validation │ │ └── production-validator.md ├── aqe-fleet.json ├── commands │ ├── agents │ │ ├── README.md │ │ ├── agent-capabilities.md │ │ ├── agent-coordination.md │ │ ├── agent-spawning.md │ │ └── agent-types.md │ ├── analysis │ │ ├── COMMAND_COMPLIANCE_REPORT.md │ │ ├── README.md │ │ ├── bottleneck-detect.md │ │ ├── performance-bottlenecks.md │ │ ├── performance-report.md │ │ ├── token-efficiency.md │ │ └── token-usage.md │ ├── aqe-analyze.md │ ├── aqe-benchmark.md │ ├── aqe-chaos.md │ ├── aqe-execute.md │ ├── aqe-fleet-status.md │ ├── aqe-generate.md │ ├── aqe-optimize.md │ ├── aqe-report.md │ ├── automation │ │ ├── README.md │ │ ├── auto-agent.md │ │ ├── self-healing.md │ │ ├── session-memory.md │ │ ├── smart-agents.md │ │ ├── smart-spawn.md │ │ └── workflow-select.md │ ├── batchtools.md │ ├── claude-flow-help.md │ ├── claude-flow-memory.md │ ├── claude-flow-swarm.md │ ├── coordination │ │ ├── README.md │ │ ├── agent-spawn.md │ │ ├── init.md │ │ ├── orchestrate.md │ │ ├── spawn.md │ │ ├── swarm-init.md │ │ └── task-orchestrate.md │ ├── flow-nexus │ │ ├── app-store.md │ │ ├── challenges.md │ │ ├── login-registration.md │ │ ├── neural-network.md │ │ ├── payments.md │ │ ├── sandbox.md │ │ ├── swarm.md │ │ ├── user-tools.md │ │ └── workflow.md │ ├── github │ │ ├── README.md │ │ ├── code-review-swarm.md │ │ ├── code-review.md │ │ ├── github-modes.md │ │ ├── github-swarm.md │ │ ├── issue-tracker.md │ │ ├── issue-triage.md │ │ ├── multi-repo-swarm.md │ │ ├── pr-enhance.md │ │ ├── pr-manager.md │ │ ├── project-board-sync.md │ │ ├── release-manager.md │ │ ├── release-swarm.md │ │ ├── repo-analyze.md │ │ ├── repo-architect.md │ │ ├── swarm-issue.md │ │ ├── swarm-pr.md │ │ ├── sync-coordinator.md │ │ └── workflow-automation.md │ ├── helpers │ │ └── standard-checkpoint-hooks.sh │ ├── hive-mind │ │ ├── README.md │ │ ├── hive-mind-consensus.md │ │ ├── hive-mind-init.md │ │ ├── hive-mind-memory.md │ │ ├── hive-mind-metrics.md │ │ ├── hive-mind-resume.md │ │ ├── hive-mind-sessions.md │ │ ├── hive-mind-spawn.md │ │ ├── hive-mind-status.md │ │ ├── hive-mind-stop.md │ │ ├── hive-mind-wizard.md │ │ └── hive-mind.md │ ├── hooks │ │ ├── README.md │ │ ├── notification.md │ │ ├── overview.md │ │ ├── post-command.md │ │ ├── post-edit.md │ │ ├── post-task.md │ │ ├── pre-command.md │ │ ├── pre-edit.md │ │ ├── pre-search.md │ │ ├── pre-task.md │ │ ├── session-end.md │ │ ├── session-restore.md │ │ ├── session-start.md │ │ └── setup.md │ ├── memory │ │ ├── README.md │ │ ├── memory-persist.md │ │ ├── memory-search.md │ │ ├── memory-usage.md │ │ ├── neural.md │ │ └── usage.md │ ├── monitoring │ │ ├── README.md │ │ ├── agent-metrics.md │ │ ├── agents.md │ │ ├── real-time-view.md │ │ ├── status.md │ │ └── swarm-monitor.md │ ├── optimization │ │ ├── README.md │ │ ├── auto-topology.md │ │ ├── cache-manage.md │ │ ├── parallel-execute.md │ │ ├── parallel-execution.md │ │ └── topology-optimize.md │ ├── pair │ │ ├── README.md │ │ ├── commands.md │ │ ├── config.md │ │ ├── examples.md │ │ ├── modes.md │ │ ├── session.md │ │ └── start.md │ ├── performance.md │ ├── sparc.md │ ├── sparc │ │ ├── analyzer.md │ │ ├── architect.md │ │ ├── ask.md │ │ ├── batch-executor.md │ │ ├── code.md │ │ ├── coder.md │ │ ├── debug.md │ │ ├── debugger.md │ │ ├── designer.md │ │ ├── devops.md │ │ ├── docs-writer.md │ │ ├── documenter.md │ │ ├── innovator.md │ │ ├── integration.md │ │ ├── mcp.md │ │ ├── memory-manager.md │ │ ├── optimizer.md │ │ ├── orchestrator.md │ │ ├── post-deployment-monitoring-mode.md │ │ ├── refinement-optimization-mode.md │ │ ├── researcher.md │ │ ├── reviewer.md │ │ ├── security-review.md │ │ ├── sparc-modes.md │ │ ├── sparc.md │ │ ├── spec-pseudocode.md │ │ ├── supabase-admin.md │ │ ├── swarm-coordinator.md │ │ ├── tdd.md │ │ ├── tester.md │ │ ├── tutorial.md │ │ └── workflow-manager.md │ ├── stream-chain │ │ ├── pipeline.md │ │ └── run.md │ ├── swarm │ │ ├── README.md │ │ ├── analysis.md │ │ ├── development.md │ │ ├── examples.md │ │ ├── maintenance.md │ │ ├── optimization.md │ │ ├── research.md │ │ ├── swarm-analysis.md │ │ ├── swarm-background.md │ │ ├── swarm-init.md │ │ ├── swarm-modes.md │ │ ├── swarm-monitor.md │ │ ├── swarm-spawn.md │ │ ├── swarm-status.md │ │ ├── swarm-strategies.md │ │ ├── swarm.md │ │ └── testing.md │ ├── training │ │ ├── README.md │ │ ├── model-update.md │ │ ├── neural-patterns.md │ │ ├── neural-train.md │ │ ├── pattern-learn.md │ │ └── specialization.md │ ├── truth │ │ └── start.md │ ├── verify │ │ ├── check.md │ │ └── start.md │ └── workflows │ │ ├── README.md │ │ ├── development.md │ │ ├── research.md │ │ ├── workflow-create.md │ │ ├── workflow-execute.md │ │ └── workflow-export.md ├── config.json ├── helpers │ ├── checkpoint-manager.sh │ ├── github-safe.js │ ├── github-setup.sh │ ├── quick-start.sh │ ├── setup-mcp.sh │ └── standard-checkpoint-hooks.sh ├── settings.json ├── skills │ ├── accessibility-testing │ │ └── SKILL.md │ ├── agentdb-advanced │ │ └── SKILL.md │ ├── agentdb-learning │ │ └── SKILL.md │ ├── agentdb-memory-patterns │ │ └── SKILL.md │ ├── agentdb-optimization │ │ └── SKILL.md │ ├── agentdb-vector-search │ │ └── SKILL.md │ ├── agentic-quality-engineering │ │ └── SKILL.md │ ├── api-testing-patterns │ │ └── SKILL.md │ ├── bug-reporting-excellence │ │ └── SKILL.md │ ├── chaos-engineering-resilience │ │ └── SKILL.md │ ├── code-review-quality │ │ └── SKILL.md │ ├── compatibility-testing │ │ └── SKILL.md │ ├── compliance-testing │ │ └── SKILL.md │ ├── consultancy-practices │ │ └── SKILL.md │ ├── context-driven-testing │ │ └── SKILL.md │ ├── contract-testing │ │ └── SKILL.md │ ├── database-testing │ │ └── SKILL.md │ ├── exploratory-testing-advanced │ │ └── SKILL.md │ ├── flow-nexus-neural │ │ └── SKILL.md │ ├── flow-nexus-platform │ │ └── SKILL.md │ ├── flow-nexus-swarm │ │ └── SKILL.md │ ├── github-code-review │ │ └── SKILL.md │ ├── github-multi-repo │ │ └── SKILL.md │ ├── github-project-management │ │ └── SKILL.md │ ├── github-release-management │ │ └── SKILL.md │ ├── github-workflow-automation │ │ └── SKILL.md │ ├── hive-mind-advanced │ │ └── SKILL.md │ ├── holistic-testing-pact │ │ └── SKILL.md │ ├── hooks-automation │ │ └── SKILL.md │ ├── localization-testing │ │ └── SKILL.md │ ├── mobile-testing │ │ └── SKILL.md │ ├── mutation-testing │ │ └── SKILL.md │ ├── pair-programming │ │ └── SKILL.md │ ├── performance-analysis │ │ └── SKILL.md │ ├── performance-testing │ │ └── SKILL.md │ ├── quality-metrics │ │ └── SKILL.md │ ├── reasoningbank-agentdb │ │ └── SKILL.md │ ├── reasoningbank-intelligence │ │ └── SKILL.md │ ├── refactoring-patterns │ │ └── SKILL.md │ ├── regression-testing │ │ └── SKILL.md │ ├── risk-based-testing │ │ └── SKILL.md │ ├── security-testing │ │ └── SKILL.md │ ├── shift-left-testing │ │ └── SKILL.md │ ├── shift-right-testing │ │ └── SKILL.md │ ├── skill-builder │ │ └── SKILL.md │ ├── sparc-methodology │ │ └── SKILL.md │ ├── stream-chain │ │ └── SKILL.md │ ├── swarm-advanced │ │ └── SKILL.md │ ├── swarm-orchestration │ │ └── SKILL.md │ ├── tdd-london-chicago │ │ └── SKILL.md │ ├── technical-writing │ │ └── SKILL.md │ ├── test-automation-strategy │ │ └── SKILL.md │ ├── test-data-management │ │ └── SKILL.md │ ├── test-design-techniques │ │ └── SKILL.md │ ├── test-environment-management │ │ └── SKILL.md │ ├── test-reporting-analytics │ │ └── SKILL.md │ ├── verification-quality │ │ └── SKILL.md │ ├── visual-testing-advanced │ │ └── SKILL.md │ └── xp-practices │ │ └── SKILL.md └── statusline-command.sh ├── .clinerules ├── .devcontainer ├── devcontainer.json ├── install-tools.sh └── test-setup.sh ├── .env.template ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .roo ├── README.md ├── mcp-list.txt ├── mcp.json ├── mcp.md ├── rules-architect │ └── rules.md ├── rules-ask │ └── rules.md ├── rules-code │ ├── apply_diff_guidelines.md │ ├── code_editing.md │ ├── file_operations_guidelines.md │ ├── insert_content.md │ ├── rules.md │ ├── search_replace.md │ └── tool_guidelines_index.md ├── rules-debug │ └── rules.md ├── rules-devops │ └── rules.md ├── rules-docs-writer │ └── rules.md ├── rules-integration │ └── rules.md ├── rules-mcp │ └── rules.md ├── rules-post-deployment-monitoring-mode │ └── rules.md ├── rules-refinement-optimization-mode │ └── rules.md ├── rules-security-review │ └── rules.md ├── rules-sparc │ └── rules.md ├── rules-spec-pseudocode │ └── rules.md ├── rules-supabase-admin │ └── rules.md ├── rules-tdd │ └── rules.md ├── rules-tutorial │ └── rules.md └── rules │ ├── apply_diff_guidelines.md │ ├── file_operations_guidelines.md │ ├── insert_content.md │ ├── rules.md │ ├── search_replace.md │ └── tool_guidelines_index.md ├── AI Agent for API Testing Blueprint.pdf ├── AUDIT_TRAIL_COMPLETE.md ├── CHANGELOG.md ├── CLAUDE.md ├── CLAUDE.md.backup ├── CODE_OF_CONDUCT.md ├── COMPREHENSIVE_IMPROVEMENTS_REPORT.md ├── CONTRIBUTING.md ├── DEPLOYMENT_VERIFICATION.md ├── Dockerfile.consciousness ├── FINAL_ASSESSMENT.md ├── LICENSE ├── LLM_PROVIDER_IMPLEMENTATION_PLAN.md ├── Makefile ├── PHASE_1.5_COMPLETE.md ├── PHASE_2.5_COMPLETE.md ├── QUICK_DEPLOYMENT_GUIDE.md ├── README.md ├── SECURITY.md ├── TESTING_CONSCIOUSNESS_GUIDE.md ├── TEST_COVERAGE_PLAN.md ├── config ├── enhanced_tracing_config.py └── vault │ └── policies │ ├── api-gateway-policy.hcl │ ├── auth-service-policy.hcl │ ├── data-service-policy.hcl │ ├── execution-service-policy.hcl │ ├── orchestration-service-policy.hcl │ ├── rust-core-policy.hcl │ ├── sentinel-api-gateway.hcl │ ├── sentinel-auth.hcl │ ├── sentinel-data.hcl │ ├── sentinel-execution.hcl │ ├── sentinel-orchestration.hcl │ ├── sentinel-rust-core.hcl │ ├── sentinel-spec.hcl │ └── spec-service-policy.hcl ├── coordination ├── coordination.md └── memory │ ├── agents │ └── README.md │ ├── claude-flow-data.json │ └── sessions │ └── README.md ├── demo_phase2.py ├── demo_phase3.py ├── demo_phase3_frontend.py ├── demo_phase4.py ├── demo_rbac.py ├── demo_standalone.py ├── docker-compose.consciousness.yml ├── docker-compose.yml ├── docs ├── 404_FIX_REPORT.md ├── AGENT_MIGRATION_GUIDE.md ├── AGENT_TESTS_IMPLEMENTATION_SUMMARY.md ├── ANALYSIS_INDEX.md ├── ARCHITECTURE_MISMATCH_DIAGRAM.md ├── ASSERTION_EVALUATOR_IMPLEMENTATION.md ├── ASSERTION_REGISTRY_IMPLEMENTATION.md ├── ASSERTION_TYPE_REFERENCE.md ├── AUTHENTICATION_FIX.md ├── BENCHMARK_RESULTS.md ├── BLOCKERS_1_AND_2_FIXED.md ├── CODE_QUALITY_ANALYSIS_V1.1.0.md ├── CONSCIOUSNESS_VERIFICATION_GUIDE.md ├── CONSOLIDATION_REVIEW.md ├── CONSOLIDATION_TEST_REPORT.md ├── CRITICAL_DOCKER_STARTUP_ANALYSIS.md ├── CRITICAL_ISSUES_EXECUTIVE_SUMMARY.md ├── CRITICAL_ISSUE_1_FIXED.md ├── CRITICAL_ISSUE_2_FIXED.md ├── CRITICAL_ISSUE_3_FIX_PLAN.md ├── CRITICAL_ISSUE_3_IMPLEMENTED.md ├── DATABASE_CONNECTION_FIX.md ├── DATABASE_SETUP.md ├── DEDUPLICATION_FIX_COMPLETE.md ├── DISTILLATION_SERVICE_IMPLEMENTATION.md ├── DISTILLATION_SERVICE_QUICKSTART.md ├── DOCKER_ANALYSIS_COMPLETE_SUMMARY.md ├── DOCKER_BUILD_FIXED_FINAL_2025-10-30.md ├── DOCKER_FIX_COMPLETED_2025-10-30.md ├── DOCKER_FIX_IMPLEMENTATION_GUIDE.md ├── DOCKER_STARTUP_FIX_SUMMARY.md ├── DOCKER_STARTUP_QUICK_REFERENCE.md ├── DOCKER_STARTUP_ROOT_CAUSE_ANALYSIS.md ├── DOCKER_TEST_ISSUE_v1.1.0.md ├── E2E_TESTING_GUIDE.md ├── E2E_TEST_REPORT.md ├── EDGE_CASES_E2E_TESTS_IMPLEMENTATION.md ├── EXECUTIVE_SUMMARY.md ├── FEATURE_AUDIT_REPORT.md ├── FEEDBACK_ENDPOINT_FIXED.md ├── FEEDBACK_SCHEMA_IMPLEMENTATION.md ├── FEEDBACK_TESTING_INSTRUCTIONS.md ├── FEEDBACK_UI_INTEGRATION_COMPLETE.md ├── FINAL_HONEST_VERIFICATION.md ├── FINAL_LLM_BENCHMARK_RESULTS.md ├── FINAL_PRODUCTION_READINESS_REPORT.md ├── FINAL_TESTING_SUMMARY_2025-10-30.md ├── FINAL_VALIDATION_REPORT_2025-10-30.md ├── FIXES_COMPLETE_SUMMARY.md ├── FIX_INSTRUCTIONS_README.md ├── GOAP_PRODUCTION_READINESS_ANALYSIS.md ├── HONEST_VERIFICATION_ASSESSMENT.md ├── HYBRID_AGENT_ARCHITECTURE.md ├── IMMEDIATE_ACTION_PLAN.md ├── IMPLEMENTATION_CHECKLIST.md ├── IMPLEMENTATION_PROGRESS.md ├── IMPLEMENTATION_STATUS_REPORT.json ├── IMPLEMENTATION_STATUS_REPORT.md ├── IMPLEMENTATION_SUMMARY.md ├── INFRASTRUCTURE_IMPLEMENTATION_COMPLETE.md ├── ISSUES_SUMMARY.md ├── LLM_PROVIDER_BENCHMARK_COMPARISON.md ├── MILESTONE-1.1-COMPLETION-SUMMARY.md ├── OBSERVABILITY_FIXES_2025-10-30.md ├── OLLAMA_BENCHMARK_RESULTS.md ├── PHASE-1-MILESTONE-1-3-COMPLETE.md ├── PHASE1_TEST_EXECUTION_REPORT_V1.1.0.md ├── PHASE2_IMPLEMENTATION_SUMMARY.md ├── PHASE_1_3_COMPLETION.md ├── POST_FIX_VERIFICATION_REPORT.md ├── PR30_ASSERTION_CODE_REVIEW.md ├── PR30_REVIEW_SUMMARY.md ├── PR30_VERIFICATION_CHECKLIST.md ├── PRODUCTION_READINESS_SUMMARY.md ├── PSYCHO_SYMBOLIC_TEST_GENERATION_ANALYSIS.md ├── QUICK_ACTION_PLAN.md ├── QUICK_START_GUIDE_V1_1_0.md ├── README_LEARNING_INTEGRATION.md ├── REASONINGBANK_INTEGRATION_GUIDE.md ├── REASONINGBANK_SERVICE_IMPLEMENTATION.md ├── REGRESSION_DASHBOARD_PR30.txt ├── REGRESSION_RISK_ANALYSIS_PR30.md ├── REGRESSION_RISK_ANALYSIS_V1.1.0.md ├── REGRESSION_TEST_EXECUTION_SUMMARY.md ├── REGRESSION_TEST_IMPLEMENTATION_PR30.md ├── RELEASE_1_1_0_IMPLEMENTATION_SUMMARY.md ├── RELEASE_PREPARATION_CHECKLIST.md ├── RETRIEVAL_SERVICE_IMPLEMENTATION.md ├── RL_IMPLEMENTATION_SUMMARY.md ├── RL_INTEGRATION_DESIGN.md ├── RL_Q_LEARNING_IMPLEMENTATION_SUMMARY.md ├── RUST_AGENTS_OPTIMIZATION_PLAN.md ├── RUST_AGENTS_OVERVIEW.md ├── RUST_CONSCIOUSNESS_IMPROVEMENTS.md ├── SENTINEL_IMPROVEMENT_PLAN.json ├── SENTINEL_IMPROVEMENT_PLAN.md ├── SESSION_COMPLETE_SUMMARY.md ├── STARTUP_SEQUENCE_DIAGRAM.txt ├── STATUS_VISUAL_SUMMARY.md ├── SUBLINEAR_IMPLEMENTATION_STRATEGY.md ├── SWARM_EXECUTION_COMPLETE.md ├── SWARM_IMPLEMENTATION_GUIDE.md ├── TESTING_READY_FINAL_STATUS.md ├── TEST_STATISTICS.md ├── TEST_SUMMARY.md ├── USER_FEEDBACK_AND_LEARNING.md ├── VAULT_SETUP.md ├── VERIFICATION_REPORT.md ├── WORK_SESSION_SUMMARY_2025-10-30.md ├── agent-fix-implementation-plan.md ├── agent-testing-findings.md ├── agentic-flow-analysis-v2.0.0.json ├── api-reference │ └── index.md ├── aqe-integration-guide.md ├── aqe-integration-summary.md ├── architecture │ ├── PHASE_1.4_COMPLETION.md │ └── data-mocking-agent-architecture.md ├── changes_summary.md ├── claude-flow-README.md ├── claude-flow-analysis.json ├── claude-flow-latest-changes.md ├── claude-flow-summary.txt ├── database-health-check-summary.md ├── database-initialization.md ├── deduplication_fix_index.md ├── deduplication_fix_summary.md ├── deployment │ └── index.md ├── executive-summary-validation-report.md ├── fix-implementation-report.md ├── fix-validation-report.md ├── frontend-containerization.md ├── frontend-quick-reference.md ├── gist-analysis-report.json ├── gist-analysis-summary.md ├── gist-analysis.json ├── implementation-guide.md ├── index.md ├── learning_integration_analysis.md ├── learning_loop_architecture.md ├── mcp-integration-examples.md ├── pattern_recognition_system.md ├── performance_analysis_report.md ├── performance_bottleneck_summary.md ├── performance_comparison.md ├── phase-1-milestone-1.2-completion.md ├── phase-2 │ ├── MILESTONE-2.1-SUMMARY.md │ ├── QUICK-START.md │ ├── agentdb-implementation-guide.md │ └── agentdb-integration-design.md ├── phase2_agent_learning_implementation_summary.md ├── phase2_milestone2.4_completion.md ├── positive_agent_fixes_summary.md ├── qe-coverage-analysis-plan.md ├── qe-deployment-dashboard.txt ├── qe-deployment-readiness-executive-summary.md ├── qe-deployment-readiness-plan.md ├── qe-visual-testing-plan.md ├── reasoningbank │ ├── DEPLOYMENT_SUMMARY.md │ ├── IMPLEMENTATION_PROGRESS.md │ └── QUICK_START.md ├── release │ ├── README.md │ ├── V1_1_0_IMMEDIATE_ACTIONS.md │ ├── V1_1_0_QUICK_CHECKLIST.md │ └── V1_1_0_RELEASE_PLAN.md ├── rust-data-mocking-agent-implementation.md ├── rust-functional-negative-agent-implementation.md ├── rust-functional-positive-agent-implementation.md ├── rust-functional-stateful-agent-implementation.md ├── rust-performance-planner-agent-implementation.md ├── rust-security-auth-agent-implementation.md ├── rust-security-injection-agent-implementation.md ├── secrets-audit-report.md ├── secrets-management-guide.md ├── secrets-migration-plan.md ├── security_agent_auth_detection.md ├── security_analysis_report.md ├── sparc-rust-sublinear-enhancements.md ├── sublinear-solver-analysis.md ├── swarm_coordination │ ├── AGENT_ASSIGNMENTS.md │ ├── DEPENDENCY_GRAPH.md │ └── SWARM_PROGRESS_REPORT.md ├── technical-guide │ ├── architecture.md │ └── index.md ├── test-case-analysis-report.md ├── test-generation-gap-analysis.md ├── troubleshooting │ └── index.md ├── user-guide │ ├── cicd-integration.md │ ├── index.md │ ├── quick-start.md │ ├── specifications.md │ └── test-types.md └── verify_blockers_fixed.sh ├── examples ├── README.md ├── consciousness_test_generation.py ├── edge-case-discovery.js ├── intelligent-test-generation.js ├── performance-prediction.js └── verify_consciousness.sh ├── fix_functional_agent.py ├── memory-bank ├── activeContext.md ├── agent-specifications.md ├── api-design.md ├── database-schema.md ├── productContext.md ├── progress.md ├── projectbrief.md ├── systemPatterns.md ├── techContext.md ├── test-implementation-summary.md └── test-infrastructure.md ├── memory ├── agents │ └── README.md ├── memory-store.json └── sessions │ └── README.md ├── monitor_consciousness.sh ├── ollama_benchmark_10rounds_summary.json ├── petstore_api ├── Dockerfile ├── README.md ├── docker-compose.yml ├── main.py ├── petstore-openapi-spec.json ├── requirements.txt └── run.sh ├── prometheus.yml ├── run-all-tests.sh ├── sample-petstore.yaml ├── scripts ├── anthropic_benchmark_results_20250831_215601.json ├── anthropic_benchmark_results_20250831_220402.json ├── benchmark_agents.py ├── benchmark_anthropic.py ├── benchmark_mock_provider.py ├── benchmark_ollama_models.py ├── benchmark_python_agents.py ├── benchmark_results_20250831_101952.json ├── benchmark_results_20250831_102056.json ├── complete_benchmark_results_20250831_134444.json ├── comprehensive_benchmark.py ├── comprehensive_benchmark_20250831_191130.json ├── configure_llm_provider.py ├── configure_ollama.py ├── demo_llm_enhancement.sh ├── fair_benchmark.py ├── fair_benchmark_proper.py ├── fair_benchmark_results_20250831_103759.json ├── fast_benchmark.py ├── mock_benchmark_results_20250831_184438.json ├── mock_benchmark_results_20250831_184926.json ├── mock_benchmark_results_20250831_185724.json ├── mock_benchmark_results_20250831_190039.json ├── mock_provider_benchmark_20250831_214718.json ├── petstore.json ├── proper_benchmark.py ├── proper_benchmark_results_20250831_132305.json ├── proper_benchmark_results_20250831_134504.json ├── python_benchmark_results_20250831_102531.json ├── quick_fair_benchmark.py ├── quick_llm_demo.sh ├── quick_ollama_benchmark.py ├── run_full_benchmark.py ├── run_learning_tests.sh ├── secrets-init.sh ├── secrets-rotate.sh ├── secrets-validate.sh ├── test_actual_provider.py ├── test_direct_anthropic.py ├── test_llm_api.sh ├── test_llm_enhancement.py ├── test_ollama_single.py └── trigger_test_run.py ├── sentinel_backend ├── .env.docker.template ├── .env.production ├── CRUD_AUDIT.md ├── Dockerfile.test ├── EDGE_CASES_AGENT_SUMMARY.md ├── PERFORMANCE_ANALYSIS.md ├── __init__.py ├── agentdb_service │ ├── Dockerfile │ ├── README.md │ ├── __init__.py │ ├── agentdb_client.py │ ├── embedding_service.py │ ├── main.py │ ├── schemas.py │ └── vector_storage.py ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 00bf195867b2_initial_migration.py │ │ ├── add_feedback_system.py │ │ ├── create_rl_tables.py │ │ └── reasoningbank_schema.sql ├── api_gateway │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── bff_service.py │ └── main.py ├── audit_service │ ├── IMPLEMENTATION_SUMMARY.md │ ├── QUICK_START.md │ ├── README.md │ ├── VERIFICATION_RESULTS.md │ ├── __init__.py │ ├── api.py │ ├── emitter.py │ ├── integration_example.py │ ├── main.py │ ├── middleware.py │ ├── models │ │ ├── __init__.py │ │ └── events.py │ ├── reports.py │ ├── storage │ │ ├── __init__.py │ │ ├── database_schema.py │ │ └── repository.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_emitter.py │ │ └── test_events.py │ └── verify_implementation.sh ├── auth_service │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── app_factory.py │ ├── auth_middleware.py │ ├── dependencies.py │ └── main.py ├── ci_templates │ ├── Jenkinsfile │ ├── github-actions.yml │ └── gitlab-ci.yml ├── cli │ └── main.py ├── common │ ├── README.md │ ├── __init__.py │ └── assertion_registry.py ├── config │ ├── __init__.py │ ├── development.env │ ├── docker.env │ ├── enhanced_tracing_config.py │ ├── llm_example.env │ ├── local.env │ ├── logging_config.py │ ├── manage.py │ ├── production.env │ ├── settings.py │ ├── testing.env │ ├── tracing_config.py │ └── validation.py ├── data_service │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── app_factory.py │ ├── main.py │ ├── models.py │ └── schemas.py ├── docker-compose.prod.yml ├── docker-compose.test.yml ├── docker-entrypoint.sh ├── docs │ ├── BLOCKER3_SOLUTION.md │ ├── EXECUTIVE_SUMMARY.md │ ├── README.md │ ├── agent-value-assessment.md │ ├── analysis-complete.txt │ ├── audit_trail_system.md │ ├── duplication-analysis.md │ ├── implementation-roadmap.md │ ├── improvement-recommendations.md │ ├── llm-configuration-guide.md │ ├── performance-results.md │ ├── performance-summary.md │ ├── phase2_milestone2_5_complete.md │ ├── rust_llm_implementation_summary.md │ └── test-improvements-summary.md ├── examples │ └── llm_provider_demo.py ├── execution_service │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── app_factory.py │ └── main.py ├── init_database.py ├── init_db.sql ├── llm_providers │ ├── __init__.py │ ├── base_provider.py │ ├── mock_provider.py │ ├── model_registry.py │ ├── ollama_models.py │ ├── ollama_provider.py │ ├── provider_factory.py │ ├── providers │ │ ├── __init__.py │ │ ├── anthropic_provider.py │ │ ├── google_provider.py │ │ ├── mistral_provider.py │ │ ├── ollama_provider.py │ │ ├── openai_provider.py │ │ └── vllm_provider.py │ ├── templates │ │ ├── __init__.py │ │ ├── base_template.py │ │ └── model_templates.py │ └── utils │ │ ├── __init__.py │ │ ├── cost_tracker.py │ │ ├── response_cache.py │ │ └── token_counter.py ├── models │ └── feedback.py ├── observability │ ├── README.md │ ├── docs │ │ ├── IMPLEMENTATION_SUMMARY.md │ │ ├── METRICS_CATALOG.md │ │ ├── OBSERVABILITY_GUIDE.md │ │ └── QUICK_START.md │ ├── jaeger │ │ └── jaeger_config.yml │ ├── middleware │ │ ├── __init__.py │ │ └── metrics.py │ ├── prometheus │ │ ├── alerts.yml │ │ ├── prometheus.yml │ │ └── recording_rules.yml │ └── test_observability.sh ├── ollama_config.json ├── orchestration_service │ ├── CORS_SETUP.md │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── INTEGRATION_INSTRUCTIONS.md │ ├── agent_performance_tracker.py │ ├── agents │ │ ├── LEARNING_README.md │ │ ├── __init__.py │ │ ├── base_agent.py │ │ ├── base_learning_agent.py │ │ ├── data_mocking_agent.py │ │ ├── edge_cases_agent.py │ │ ├── example_pattern_integration.py │ │ ├── functional_agent.py │ │ ├── functional_negative_agent.py │ │ ├── functional_positive_agent.py │ │ ├── functional_stateful_agent.py │ │ ├── performance_agent.py │ │ ├── performance_agent_consolidated.py │ │ ├── performance_planner_agent.py │ │ ├── python_agents.py │ │ ├── rust_agents.py │ │ ├── security_agent.py │ │ ├── security_auth_agent.py │ │ └── security_injection_agent.py │ ├── api │ │ ├── FEEDBACK_API_README.md │ │ ├── __init__.py │ │ ├── feedback_endpoints.py │ │ ├── feedback_endpoints.py.backup │ │ ├── feedback_endpoints_fixed.py │ │ └── pattern_endpoints.py │ ├── app_factory.py │ ├── broker.py │ ├── docs │ │ └── functional_agent_consolidation_plan.md │ ├── feedback_endpoints.py │ ├── main.py │ ├── schemas │ │ └── feedback.py │ ├── services │ │ ├── README_PATTERN_LEARNING.md │ │ ├── __init__.py │ │ ├── data_generation_service.py │ │ ├── learning_orchestrator.py │ │ ├── pattern_analytics.py │ │ ├── pattern_learning_service.py │ │ ├── pattern_recognition_service.py │ │ ├── pattern_reuse_service.py │ │ ├── pattern_storage.py │ │ ├── pattern_test_generator.py │ │ ├── queue_processor.py │ │ └── validate_pattern_services.py │ └── tests │ │ ├── __init__.py │ │ ├── integration │ │ ├── EXECUTIVE_SUMMARY.md │ │ ├── README.md │ │ ├── VALIDATION_REPORT.md │ │ ├── run_duplication_analysis.py │ │ └── test_agent_consolidation.py │ │ └── test_data_generation_service.py ├── pyproject.toml ├── pytest.ini ├── reasoningbank │ ├── README.md │ ├── __init__.py │ ├── integration │ │ ├── __init__.py │ │ ├── reasoningbank_orchestrator.py │ │ └── session_manager.py │ ├── models │ │ ├── __init__.py │ │ ├── matts_runs.py │ │ ├── pattern_embeddings.py │ │ ├── pattern_links.py │ │ ├── task_trajectories.py │ │ └── worker_checkpoints.py │ └── services │ │ ├── CONSOLIDATION_SERVICE_README.md │ │ ├── RETRIEVAL_SERVICE_README.md │ │ ├── __init__.py │ │ ├── consolidation_service.py │ │ ├── distillation_service.py │ │ ├── judgment_service.py │ │ ├── reasoningbank_service.py │ │ ├── retrieval_service.py │ │ ├── trajectory_service.py │ │ └── validate_consolidation.py ├── rl_service │ ├── README.md │ ├── __init__.py │ ├── algorithms │ │ ├── __init__.py │ │ ├── base_algorithm.py │ │ └── q_learning.py │ ├── api │ │ ├── __init__.py │ │ └── rl_endpoints.py │ ├── examples │ │ └── agent_integration_example.py │ └── services │ │ ├── __init__.py │ │ ├── agent_policy_updater.py │ │ └── feedback_reward_mapper.py ├── run_agent_tests.sh ├── run_llm_tests.sh ├── run_tests.sh ├── run_tests_filtered.sh ├── scripts │ ├── README.md │ ├── db_diagnostics.py │ ├── db_health_check.py │ ├── db_quick_check.sh │ ├── docker-entrypoint.sh │ ├── docker-init-db-sql.sh │ ├── docker-init-db.sh │ ├── fix_feedback_endpoints.py │ ├── fix_feedback_simple.sh │ ├── fix_signatures.py │ ├── init_db_with_retry.py │ ├── migrate_to_agentdb.py │ ├── switch_llm.sh │ ├── switch_llm_docker.sh │ ├── validate_llm_config.py │ └── wait_for_db.sh ├── sentinel_rust_core │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── docs │ │ ├── LLM_INTEGRATION.md │ │ └── functional_stateful_agent.md │ ├── examples │ │ └── llm_agent_usage.rs │ ├── src │ │ ├── agents │ │ │ ├── data_mocking.rs │ │ │ ├── edge_cases.rs │ │ │ ├── functional.rs │ │ │ ├── functional_agent.rs │ │ │ ├── functional_negative.rs │ │ │ ├── functional_positive.rs │ │ │ ├── functional_stateful.rs │ │ │ ├── mod.rs │ │ │ ├── performance_planner.rs │ │ │ ├── security_auth.rs │ │ │ ├── security_injection.rs │ │ │ ├── strategies │ │ │ │ ├── boundary.rs │ │ │ │ ├── edge_case.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── negative.rs │ │ │ │ └── positive.rs │ │ │ └── utils.rs │ │ ├── consciousness │ │ │ ├── agents.rs │ │ │ ├── emergence.rs │ │ │ ├── knowledge_graph.rs │ │ │ ├── mod.rs │ │ │ ├── scheduler.rs │ │ │ └── temporal.rs │ │ ├── lib.rs │ │ ├── llm │ │ │ ├── mod.rs │ │ │ └── openai.rs │ │ ├── main.rs │ │ ├── mcp_integration.rs │ │ ├── sublinear_orchestrator.rs │ │ └── types.rs │ └── tests │ │ ├── functional_stateful_agent_test.rs │ │ └── performance_planner_agent_test.rs ├── spec_service │ ├── Dockerfile │ ├── Dockerfile.prod │ ├── app_factory.py │ ├── main.py │ ├── models.py │ └── schemas.py ├── test_all_agents.py ├── test_backward_compatibility.py ├── test_positive_agent.py └── tests │ ├── TESTING_STRATEGY.md │ ├── __init__.py │ ├── api_workflows │ ├── test_authentication_flow.py │ └── test_complete_workflow.py │ ├── benchmark │ └── test_python_vs_rust_performance.py │ ├── common │ ├── __init__.py │ └── test_assertion_registry.py │ ├── conftest.py │ ├── contract │ └── test_feedback_contracts.py │ ├── e2e │ ├── test_learning_loop.py │ ├── test_multi_agent_coordination.py │ ├── test_performance_pipeline.py │ ├── test_security_pipeline.py │ └── test_spec_to_execution.py │ ├── fixtures │ ├── api_gateway_fixtures.py │ ├── auth_fixtures.py │ └── learning_fixtures.py │ ├── helpers │ └── auth_helpers.py │ ├── integration │ ├── IMPLEMENTATION_SUMMARY.md │ ├── README_REAL_INTEGRATION_TESTS.md │ ├── agents │ │ └── test_agent_learning.py │ ├── api │ │ └── test_feedback_api.py │ ├── conftest.py │ ├── learning │ │ └── test_pattern_learning.py │ ├── queue │ │ └── test_feedback_queue_integration.py │ ├── rl │ │ ├── __init__.py │ │ └── test_rl_learning_loop.py │ ├── test_agent_llm_integration.py │ ├── test_auth_integration.py │ ├── test_database_operations.py │ ├── test_edge_cases_e2e.py │ ├── test_message_broker.py │ ├── test_performance_planner_e2e.py │ ├── test_real_learning_integration.py │ ├── test_reasoningbank_integration.py │ ├── test_security_flow.py │ └── test_service_communication.py │ ├── manual_rust_integration_test.py │ ├── performance │ ├── README.md │ ├── analyze_bottleneck.py │ ├── benchmark_agents.py │ ├── bottleneck_analyzer.py │ ├── profile_functional_agent.py │ ├── test_agent_performance.py │ ├── test_agentdb_benchmark.py │ ├── test_concurrent_execution.py │ ├── test_database_performance.py │ ├── test_learning_performance.py │ ├── test_load_performance.py │ └── test_memory_usage.py │ ├── standalone_queue_test.py │ ├── test_config.py │ ├── test_rust_integration.py │ └── unit │ ├── README_ASSERTION_REGRESSION.md │ ├── agents │ ├── README.md │ ├── TDD_TEST_SUITE_SUMMARY.md │ ├── test_base_agent.py │ ├── test_consolidated_functional_agent.py │ ├── test_consolidated_security_agent.py │ ├── test_data_mocking_agent.py │ ├── test_edge_cases_agent.py │ ├── test_functional_agent_deduplication.py │ ├── test_functional_negative_agent.py │ ├── test_functional_positive_agent.py │ ├── test_functional_stateful_agent.py │ ├── test_performance_planner_agent.py │ ├── test_runner_summary.md │ ├── test_security_auth_agent.py │ └── test_security_injection_agent.py │ ├── llm_providers │ ├── test_cost_tracker.py │ ├── test_google_provider.py │ ├── test_mistral_provider.py │ ├── test_model_registry.py │ ├── test_ollama_provider.py │ ├── test_provider_factory.py │ ├── test_response_cache.py │ ├── test_token_counter.py │ └── test_vllm_provider.py │ ├── models │ └── test_feedback_models.py │ ├── rl │ ├── __init__.py │ ├── test_q_learning_rewards.py │ └── test_runner.py │ ├── run_assertion_regression_tests.py │ ├── test_agent_test_generation.py │ ├── test_api_gateway.py │ ├── test_assertion_semantics_regression.py │ ├── test_auth_endpoints.py │ ├── test_auth_endpoints_v2.py │ ├── test_auth_factory.py │ ├── test_auth_middleware.py │ ├── test_auth_service.py │ ├── test_config_validation.py │ ├── test_critical_path_coverage.py │ ├── test_data_generation_service_comprehensive.py │ ├── test_data_service.py │ ├── test_database_config.py │ ├── test_deletion_functionality.py │ ├── test_distillation_service.py │ ├── test_execution_service.py │ ├── test_llm_config.py │ ├── test_llm_providers.py │ ├── test_orchestration_service.py │ ├── test_pattern_recognition.py │ ├── test_pattern_test_generator.py │ ├── test_reasoningbank_service.py │ ├── test_retrieval_service.py │ ├── test_security_config.py │ └── test_spec_service.py ├── sentinel_frontend ├── BACKEND_INTEGRATION.md ├── Dockerfile.e2e ├── Dockerfile.prod ├── Dockerfile.test ├── FEEDBACK_IMPLEMENTATION_SUMMARY.md ├── IMPLEMENTATION_STATUS.md ├── INTEGRATION_GUIDE.md ├── QUICK_START.md ├── README.md ├── docs │ ├── API_INTEGRATION.md │ ├── PHASE_1.1_COMPLETION_SUMMARY.md │ ├── QUICK_START.md │ └── notification-modal-test-checklist.md ├── e2e │ ├── README.md │ ├── fixtures │ │ └── test-data.ts │ ├── pages │ │ ├── dashboard.page.ts │ │ ├── login.page.ts │ │ └── specifications.page.ts │ └── tests │ │ ├── api-import.spec.ts │ │ ├── auth.spec.ts │ │ ├── multi-agent.spec.ts │ │ ├── rbac.spec.ts │ │ ├── results-visualization.spec.ts │ │ ├── specifications.spec.ts │ │ ├── test-execution.spec.ts │ │ └── test-generation.spec.ts ├── jest.config.js ├── nginx-default.conf ├── nginx.conf ├── package.json ├── playwright.config.js ├── playwright.config.ts ├── postcss.config.js ├── public │ ├── health │ └── index.html ├── scripts │ ├── test-api-connection.sh │ └── test-notifications.js ├── src │ ├── App.js │ ├── components │ │ ├── AuditTrail │ │ │ ├── AuditEventList.css │ │ │ └── AuditEventList.tsx │ │ ├── ConfirmationModal.js │ │ ├── Layout.js │ │ ├── NotificationModal.js │ │ ├── PrivateRoute.js │ │ └── feedback │ │ │ ├── FeedbackForm.css │ │ │ ├── README.md │ │ │ ├── StarRating.tsx │ │ │ ├── TestCaseFeedback.tsx │ │ │ ├── TestSuiteFeedback.tsx │ │ │ └── index.ts │ ├── config │ │ └── settings.js │ ├── features │ │ ├── auth │ │ │ └── authSlice.js │ │ └── specifications │ │ │ └── specificationsSlice.js │ ├── hooks │ │ └── useNotification.js │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── Analytics.js │ │ ├── Dashboard.js │ │ ├── Dashboard.test.js │ │ ├── Login.js │ │ ├── Specifications.js │ │ ├── TestCases.js │ │ ├── TestRunDetail.js │ │ ├── TestRuns.js │ │ └── TestSuites.js │ ├── services │ │ ├── api.js │ │ └── feedbackService.ts │ ├── setupTests.js │ ├── store │ │ └── store.js │ ├── tests │ │ ├── __mocks__ │ │ │ └── axios.ts │ │ ├── components │ │ │ ├── StarRating.test.tsx │ │ │ ├── TestCaseFeedback.test.tsx │ │ │ └── TestSuiteFeedback.test.tsx │ │ ├── e2e │ │ │ └── feedback.e2e.test.tsx │ │ └── setup.ts │ ├── types │ │ └── feedback.ts │ └── utils │ │ └── connectionHealth.ts ├── tailwind.config.js └── tsconfig.json ├── start-with-llm.sh ├── start.sh ├── test_api_consciousness.sh ├── test_consciousness_improvements.py ├── test_observability_e2e.py ├── test_rabbitmq_integration.py ├── tests ├── DATA_MOCKING_AGENT_SUMMARY.md ├── DATA_MOCKING_AGENT_TEST_REPORT.md ├── TEST_COVERAGE_IMPROVEMENT_REPORT.md ├── test_data_mocking_agent_standalone.py ├── test_db_health.py ├── test_deduplication_standalone.py └── validate_deduplication_fix.py └── todo.md /.agentic-qe/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config.json -------------------------------------------------------------------------------- /.agentic-qe/config/agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/agents.json -------------------------------------------------------------------------------- /.agentic-qe/config/aqe-hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/aqe-hooks.json -------------------------------------------------------------------------------- /.agentic-qe/config/environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/environments.json -------------------------------------------------------------------------------- /.agentic-qe/config/fleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/fleet.json -------------------------------------------------------------------------------- /.agentic-qe/config/improvement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/improvement.json -------------------------------------------------------------------------------- /.agentic-qe/config/learning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/learning.json -------------------------------------------------------------------------------- /.agentic-qe/config/routing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/config/routing.json -------------------------------------------------------------------------------- /.agentic-qe/data/improvement/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/data/improvement/state.json -------------------------------------------------------------------------------- /.agentic-qe/data/learning/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/data/learning/state.json -------------------------------------------------------------------------------- /.agentic-qe/data/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/data/registry.json -------------------------------------------------------------------------------- /.agentic-qe/scripts/post-execution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/scripts/post-execution.sh -------------------------------------------------------------------------------- /.agentic-qe/scripts/pre-execution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.agentic-qe/scripts/pre-execution.sh -------------------------------------------------------------------------------- /.claude/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/README.md -------------------------------------------------------------------------------- /.claude/agents/analysis/code-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/analysis/code-analyzer.md -------------------------------------------------------------------------------- /.claude/agents/analysis/dr_house_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/analysis/dr_house_agent.md -------------------------------------------------------------------------------- /.claude/agents/base-template-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/base-template-generator.md -------------------------------------------------------------------------------- /.claude/agents/consensus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/consensus/README.md -------------------------------------------------------------------------------- /.claude/agents/consensus/crdt-synchronizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/consensus/crdt-synchronizer.md -------------------------------------------------------------------------------- /.claude/agents/consensus/quorum-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/consensus/quorum-manager.md -------------------------------------------------------------------------------- /.claude/agents/consensus/raft-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/consensus/raft-manager.md -------------------------------------------------------------------------------- /.claude/agents/consensus/security-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/consensus/security-manager.md -------------------------------------------------------------------------------- /.claude/agents/core/coder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/core/coder.md -------------------------------------------------------------------------------- /.claude/agents/core/planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/core/planner.md -------------------------------------------------------------------------------- /.claude/agents/core/researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/core/researcher.md -------------------------------------------------------------------------------- /.claude/agents/core/reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/core/reviewer.md -------------------------------------------------------------------------------- /.claude/agents/core/tester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/core/tester.md -------------------------------------------------------------------------------- /.claude/agents/data/ml/data-ml-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/data/ml/data-ml-model.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/app-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/app-store.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/authentication.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/challenges.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/neural-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/neural-network.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/payments.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/sandbox.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/swarm.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/user-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/user-tools.md -------------------------------------------------------------------------------- /.claude/agents/flow-nexus/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/flow-nexus/workflow.md -------------------------------------------------------------------------------- /.claude/agents/github/code-review-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/code-review-swarm.md -------------------------------------------------------------------------------- /.claude/agents/github/github-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/github-modes.md -------------------------------------------------------------------------------- /.claude/agents/github/issue-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/issue-tracker.md -------------------------------------------------------------------------------- /.claude/agents/github/multi-repo-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/multi-repo-swarm.md -------------------------------------------------------------------------------- /.claude/agents/github/pr-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/pr-manager.md -------------------------------------------------------------------------------- /.claude/agents/github/project-board-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/project-board-sync.md -------------------------------------------------------------------------------- /.claude/agents/github/release-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/release-manager.md -------------------------------------------------------------------------------- /.claude/agents/github/release-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/release-swarm.md -------------------------------------------------------------------------------- /.claude/agents/github/repo-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/repo-architect.md -------------------------------------------------------------------------------- /.claude/agents/github/swarm-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/swarm-issue.md -------------------------------------------------------------------------------- /.claude/agents/github/swarm-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/swarm-pr.md -------------------------------------------------------------------------------- /.claude/agents/github/sync-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/sync-coordinator.md -------------------------------------------------------------------------------- /.claude/agents/github/workflow-automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/github/workflow-automation.md -------------------------------------------------------------------------------- /.claude/agents/goal/code-goal-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/goal/code-goal-planner.md -------------------------------------------------------------------------------- /.claude/agents/goal/goal-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/goal/goal-planner.md -------------------------------------------------------------------------------- /.claude/agents/hive-mind/consensus-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/hive-mind/consensus-builder.md -------------------------------------------------------------------------------- /.claude/agents/hive-mind/queen-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/hive-mind/queen-coordinator.md -------------------------------------------------------------------------------- /.claude/agents/hive-mind/scout-explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/hive-mind/scout-explorer.md -------------------------------------------------------------------------------- /.claude/agents/hive-mind/worker-specialist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/hive-mind/worker-specialist.md -------------------------------------------------------------------------------- /.claude/agents/neural/safla-neural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/neural/safla-neural.md -------------------------------------------------------------------------------- /.claude/agents/optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/optimization/README.md -------------------------------------------------------------------------------- /.claude/agents/optimization/load-balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/optimization/load-balancer.md -------------------------------------------------------------------------------- /.claude/agents/qe-api-contract-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-api-contract-validator.md -------------------------------------------------------------------------------- /.claude/agents/qe-chaos-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-chaos-engineer.md -------------------------------------------------------------------------------- /.claude/agents/qe-code-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-code-complexity.md -------------------------------------------------------------------------------- /.claude/agents/qe-coverage-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-coverage-analyzer.md -------------------------------------------------------------------------------- /.claude/agents/qe-deployment-readiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-deployment-readiness.md -------------------------------------------------------------------------------- /.claude/agents/qe-flaky-test-hunter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-flaky-test-hunter.md -------------------------------------------------------------------------------- /.claude/agents/qe-fleet-commander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-fleet-commander.md -------------------------------------------------------------------------------- /.claude/agents/qe-performance-tester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-performance-tester.md -------------------------------------------------------------------------------- /.claude/agents/qe-production-intelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-production-intelligence.md -------------------------------------------------------------------------------- /.claude/agents/qe-quality-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-quality-analyzer.md -------------------------------------------------------------------------------- /.claude/agents/qe-quality-gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-quality-gate.md -------------------------------------------------------------------------------- /.claude/agents/qe-regression-risk-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-regression-risk-analyzer.md -------------------------------------------------------------------------------- /.claude/agents/qe-requirements-validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-requirements-validator.md -------------------------------------------------------------------------------- /.claude/agents/qe-security-scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-security-scanner.md -------------------------------------------------------------------------------- /.claude/agents/qe-test-data-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-test-data-architect.md -------------------------------------------------------------------------------- /.claude/agents/qe-test-executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-test-executor.md -------------------------------------------------------------------------------- /.claude/agents/qe-test-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-test-generator.md -------------------------------------------------------------------------------- /.claude/agents/qe-visual-tester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/qe-visual-tester.md -------------------------------------------------------------------------------- /.claude/agents/reasoning/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/reasoning/agent.md -------------------------------------------------------------------------------- /.claude/agents/reasoning/goal-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/reasoning/goal-planner.md -------------------------------------------------------------------------------- /.claude/agents/sparc/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sparc/architecture.md -------------------------------------------------------------------------------- /.claude/agents/sparc/pseudocode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sparc/pseudocode.md -------------------------------------------------------------------------------- /.claude/agents/sparc/refinement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sparc/refinement.md -------------------------------------------------------------------------------- /.claude/agents/sparc/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sparc/specification.md -------------------------------------------------------------------------------- /.claude/agents/sublinear/pagerank-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sublinear/pagerank-agent.md -------------------------------------------------------------------------------- /.claude/agents/sublinear/sublinear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/sublinear/sublinear.md -------------------------------------------------------------------------------- /.claude/agents/swarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/swarm/README.md -------------------------------------------------------------------------------- /.claude/agents/swarm/adaptive-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/swarm/adaptive-coordinator.md -------------------------------------------------------------------------------- /.claude/agents/swarm/mesh-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/swarm/mesh-coordinator.md -------------------------------------------------------------------------------- /.claude/agents/templates/github-pr-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/templates/github-pr-manager.md -------------------------------------------------------------------------------- /.claude/agents/templates/migration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/templates/migration-plan.md -------------------------------------------------------------------------------- /.claude/agents/templates/orchestrator-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/templates/orchestrator-task.md -------------------------------------------------------------------------------- /.claude/agents/templates/sparc-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/agents/templates/sparc-coordinator.md -------------------------------------------------------------------------------- /.claude/aqe-fleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/aqe-fleet.json -------------------------------------------------------------------------------- /.claude/commands/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/agents/README.md -------------------------------------------------------------------------------- /.claude/commands/agents/agent-capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/agents/agent-capabilities.md -------------------------------------------------------------------------------- /.claude/commands/agents/agent-coordination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/agents/agent-coordination.md -------------------------------------------------------------------------------- /.claude/commands/agents/agent-spawning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/agents/agent-spawning.md -------------------------------------------------------------------------------- /.claude/commands/agents/agent-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/agents/agent-types.md -------------------------------------------------------------------------------- /.claude/commands/analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/analysis/README.md -------------------------------------------------------------------------------- /.claude/commands/analysis/token-efficiency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/analysis/token-efficiency.md -------------------------------------------------------------------------------- /.claude/commands/analysis/token-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/analysis/token-usage.md -------------------------------------------------------------------------------- /.claude/commands/aqe-analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-analyze.md -------------------------------------------------------------------------------- /.claude/commands/aqe-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-benchmark.md -------------------------------------------------------------------------------- /.claude/commands/aqe-chaos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-chaos.md -------------------------------------------------------------------------------- /.claude/commands/aqe-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-execute.md -------------------------------------------------------------------------------- /.claude/commands/aqe-fleet-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-fleet-status.md -------------------------------------------------------------------------------- /.claude/commands/aqe-generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-generate.md -------------------------------------------------------------------------------- /.claude/commands/aqe-optimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-optimize.md -------------------------------------------------------------------------------- /.claude/commands/aqe-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/aqe-report.md -------------------------------------------------------------------------------- /.claude/commands/automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/README.md -------------------------------------------------------------------------------- /.claude/commands/automation/auto-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/auto-agent.md -------------------------------------------------------------------------------- /.claude/commands/automation/self-healing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/self-healing.md -------------------------------------------------------------------------------- /.claude/commands/automation/session-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/session-memory.md -------------------------------------------------------------------------------- /.claude/commands/automation/smart-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/smart-agents.md -------------------------------------------------------------------------------- /.claude/commands/automation/smart-spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/automation/smart-spawn.md -------------------------------------------------------------------------------- /.claude/commands/batchtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/batchtools.md -------------------------------------------------------------------------------- /.claude/commands/claude-flow-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/claude-flow-help.md -------------------------------------------------------------------------------- /.claude/commands/claude-flow-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/claude-flow-memory.md -------------------------------------------------------------------------------- /.claude/commands/claude-flow-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/claude-flow-swarm.md -------------------------------------------------------------------------------- /.claude/commands/coordination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/README.md -------------------------------------------------------------------------------- /.claude/commands/coordination/agent-spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/agent-spawn.md -------------------------------------------------------------------------------- /.claude/commands/coordination/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/init.md -------------------------------------------------------------------------------- /.claude/commands/coordination/orchestrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/orchestrate.md -------------------------------------------------------------------------------- /.claude/commands/coordination/spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/spawn.md -------------------------------------------------------------------------------- /.claude/commands/coordination/swarm-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/coordination/swarm-init.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/app-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/app-store.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/challenges.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/neural-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/neural-network.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/payments.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/sandbox.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/swarm.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/user-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/user-tools.md -------------------------------------------------------------------------------- /.claude/commands/flow-nexus/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/flow-nexus/workflow.md -------------------------------------------------------------------------------- /.claude/commands/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/README.md -------------------------------------------------------------------------------- /.claude/commands/github/code-review-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/code-review-swarm.md -------------------------------------------------------------------------------- /.claude/commands/github/code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/code-review.md -------------------------------------------------------------------------------- /.claude/commands/github/github-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/github-modes.md -------------------------------------------------------------------------------- /.claude/commands/github/github-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/github-swarm.md -------------------------------------------------------------------------------- /.claude/commands/github/issue-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/issue-tracker.md -------------------------------------------------------------------------------- /.claude/commands/github/issue-triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/issue-triage.md -------------------------------------------------------------------------------- /.claude/commands/github/multi-repo-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/multi-repo-swarm.md -------------------------------------------------------------------------------- /.claude/commands/github/pr-enhance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/pr-enhance.md -------------------------------------------------------------------------------- /.claude/commands/github/pr-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/pr-manager.md -------------------------------------------------------------------------------- /.claude/commands/github/project-board-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/project-board-sync.md -------------------------------------------------------------------------------- /.claude/commands/github/release-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/release-manager.md -------------------------------------------------------------------------------- /.claude/commands/github/release-swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/release-swarm.md -------------------------------------------------------------------------------- /.claude/commands/github/repo-analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/repo-analyze.md -------------------------------------------------------------------------------- /.claude/commands/github/repo-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/repo-architect.md -------------------------------------------------------------------------------- /.claude/commands/github/swarm-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/swarm-issue.md -------------------------------------------------------------------------------- /.claude/commands/github/swarm-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/swarm-pr.md -------------------------------------------------------------------------------- /.claude/commands/github/sync-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/github/sync-coordinator.md -------------------------------------------------------------------------------- /.claude/commands/hive-mind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hive-mind/README.md -------------------------------------------------------------------------------- /.claude/commands/hive-mind/hive-mind-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hive-mind/hive-mind-init.md -------------------------------------------------------------------------------- /.claude/commands/hive-mind/hive-mind-spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hive-mind/hive-mind-spawn.md -------------------------------------------------------------------------------- /.claude/commands/hive-mind/hive-mind-stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hive-mind/hive-mind-stop.md -------------------------------------------------------------------------------- /.claude/commands/hive-mind/hive-mind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hive-mind/hive-mind.md -------------------------------------------------------------------------------- /.claude/commands/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/README.md -------------------------------------------------------------------------------- /.claude/commands/hooks/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/notification.md -------------------------------------------------------------------------------- /.claude/commands/hooks/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/overview.md -------------------------------------------------------------------------------- /.claude/commands/hooks/post-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/post-command.md -------------------------------------------------------------------------------- /.claude/commands/hooks/post-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/post-edit.md -------------------------------------------------------------------------------- /.claude/commands/hooks/post-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/post-task.md -------------------------------------------------------------------------------- /.claude/commands/hooks/pre-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/pre-command.md -------------------------------------------------------------------------------- /.claude/commands/hooks/pre-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/pre-edit.md -------------------------------------------------------------------------------- /.claude/commands/hooks/pre-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/pre-search.md -------------------------------------------------------------------------------- /.claude/commands/hooks/pre-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/pre-task.md -------------------------------------------------------------------------------- /.claude/commands/hooks/session-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/session-end.md -------------------------------------------------------------------------------- /.claude/commands/hooks/session-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/session-restore.md -------------------------------------------------------------------------------- /.claude/commands/hooks/session-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/session-start.md -------------------------------------------------------------------------------- /.claude/commands/hooks/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/hooks/setup.md -------------------------------------------------------------------------------- /.claude/commands/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/README.md -------------------------------------------------------------------------------- /.claude/commands/memory/memory-persist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/memory-persist.md -------------------------------------------------------------------------------- /.claude/commands/memory/memory-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/memory-search.md -------------------------------------------------------------------------------- /.claude/commands/memory/memory-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/memory-usage.md -------------------------------------------------------------------------------- /.claude/commands/memory/neural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/neural.md -------------------------------------------------------------------------------- /.claude/commands/memory/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/memory/usage.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/README.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/agent-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/agent-metrics.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/agents.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/real-time-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/real-time-view.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/status.md -------------------------------------------------------------------------------- /.claude/commands/monitoring/swarm-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/monitoring/swarm-monitor.md -------------------------------------------------------------------------------- /.claude/commands/optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/optimization/README.md -------------------------------------------------------------------------------- /.claude/commands/optimization/cache-manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/optimization/cache-manage.md -------------------------------------------------------------------------------- /.claude/commands/pair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/README.md -------------------------------------------------------------------------------- /.claude/commands/pair/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/commands.md -------------------------------------------------------------------------------- /.claude/commands/pair/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/config.md -------------------------------------------------------------------------------- /.claude/commands/pair/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/examples.md -------------------------------------------------------------------------------- /.claude/commands/pair/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/modes.md -------------------------------------------------------------------------------- /.claude/commands/pair/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/session.md -------------------------------------------------------------------------------- /.claude/commands/pair/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/pair/start.md -------------------------------------------------------------------------------- /.claude/commands/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/performance.md -------------------------------------------------------------------------------- /.claude/commands/sparc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc.md -------------------------------------------------------------------------------- /.claude/commands/sparc/analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/analyzer.md -------------------------------------------------------------------------------- /.claude/commands/sparc/architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/architect.md -------------------------------------------------------------------------------- /.claude/commands/sparc/ask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/ask.md -------------------------------------------------------------------------------- /.claude/commands/sparc/batch-executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/batch-executor.md -------------------------------------------------------------------------------- /.claude/commands/sparc/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/code.md -------------------------------------------------------------------------------- /.claude/commands/sparc/coder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/coder.md -------------------------------------------------------------------------------- /.claude/commands/sparc/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/debug.md -------------------------------------------------------------------------------- /.claude/commands/sparc/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/debugger.md -------------------------------------------------------------------------------- /.claude/commands/sparc/designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/designer.md -------------------------------------------------------------------------------- /.claude/commands/sparc/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/devops.md -------------------------------------------------------------------------------- /.claude/commands/sparc/docs-writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/docs-writer.md -------------------------------------------------------------------------------- /.claude/commands/sparc/documenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/documenter.md -------------------------------------------------------------------------------- /.claude/commands/sparc/innovator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/innovator.md -------------------------------------------------------------------------------- /.claude/commands/sparc/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/integration.md -------------------------------------------------------------------------------- /.claude/commands/sparc/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/mcp.md -------------------------------------------------------------------------------- /.claude/commands/sparc/memory-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/memory-manager.md -------------------------------------------------------------------------------- /.claude/commands/sparc/optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/optimizer.md -------------------------------------------------------------------------------- /.claude/commands/sparc/orchestrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/orchestrator.md -------------------------------------------------------------------------------- /.claude/commands/sparc/researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/researcher.md -------------------------------------------------------------------------------- /.claude/commands/sparc/reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/reviewer.md -------------------------------------------------------------------------------- /.claude/commands/sparc/security-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/security-review.md -------------------------------------------------------------------------------- /.claude/commands/sparc/sparc-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/sparc-modes.md -------------------------------------------------------------------------------- /.claude/commands/sparc/sparc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/sparc.md -------------------------------------------------------------------------------- /.claude/commands/sparc/spec-pseudocode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/spec-pseudocode.md -------------------------------------------------------------------------------- /.claude/commands/sparc/supabase-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/supabase-admin.md -------------------------------------------------------------------------------- /.claude/commands/sparc/swarm-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/swarm-coordinator.md -------------------------------------------------------------------------------- /.claude/commands/sparc/tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/tdd.md -------------------------------------------------------------------------------- /.claude/commands/sparc/tester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/tester.md -------------------------------------------------------------------------------- /.claude/commands/sparc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/tutorial.md -------------------------------------------------------------------------------- /.claude/commands/sparc/workflow-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/sparc/workflow-manager.md -------------------------------------------------------------------------------- /.claude/commands/stream-chain/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/stream-chain/pipeline.md -------------------------------------------------------------------------------- /.claude/commands/stream-chain/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/stream-chain/run.md -------------------------------------------------------------------------------- /.claude/commands/swarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/README.md -------------------------------------------------------------------------------- /.claude/commands/swarm/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/analysis.md -------------------------------------------------------------------------------- /.claude/commands/swarm/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/development.md -------------------------------------------------------------------------------- /.claude/commands/swarm/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/examples.md -------------------------------------------------------------------------------- /.claude/commands/swarm/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/maintenance.md -------------------------------------------------------------------------------- /.claude/commands/swarm/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/optimization.md -------------------------------------------------------------------------------- /.claude/commands/swarm/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/research.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-analysis.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-background.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-init.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-modes.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-monitor.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-spawn.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-status.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm-strategies.md -------------------------------------------------------------------------------- /.claude/commands/swarm/swarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/swarm.md -------------------------------------------------------------------------------- /.claude/commands/swarm/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/swarm/testing.md -------------------------------------------------------------------------------- /.claude/commands/training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/README.md -------------------------------------------------------------------------------- /.claude/commands/training/model-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/model-update.md -------------------------------------------------------------------------------- /.claude/commands/training/neural-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/neural-patterns.md -------------------------------------------------------------------------------- /.claude/commands/training/neural-train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/neural-train.md -------------------------------------------------------------------------------- /.claude/commands/training/pattern-learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/pattern-learn.md -------------------------------------------------------------------------------- /.claude/commands/training/specialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/training/specialization.md -------------------------------------------------------------------------------- /.claude/commands/truth/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/truth/start.md -------------------------------------------------------------------------------- /.claude/commands/verify/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/verify/check.md -------------------------------------------------------------------------------- /.claude/commands/verify/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/verify/start.md -------------------------------------------------------------------------------- /.claude/commands/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/workflows/README.md -------------------------------------------------------------------------------- /.claude/commands/workflows/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/workflows/development.md -------------------------------------------------------------------------------- /.claude/commands/workflows/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/workflows/research.md -------------------------------------------------------------------------------- /.claude/commands/workflows/workflow-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/workflows/workflow-create.md -------------------------------------------------------------------------------- /.claude/commands/workflows/workflow-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/commands/workflows/workflow-export.md -------------------------------------------------------------------------------- /.claude/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/config.json -------------------------------------------------------------------------------- /.claude/helpers/checkpoint-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/checkpoint-manager.sh -------------------------------------------------------------------------------- /.claude/helpers/github-safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/github-safe.js -------------------------------------------------------------------------------- /.claude/helpers/github-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/github-setup.sh -------------------------------------------------------------------------------- /.claude/helpers/quick-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/quick-start.sh -------------------------------------------------------------------------------- /.claude/helpers/setup-mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/setup-mcp.sh -------------------------------------------------------------------------------- /.claude/helpers/standard-checkpoint-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/helpers/standard-checkpoint-hooks.sh -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.claude/skills/accessibility-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/accessibility-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/agentdb-advanced/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/agentdb-advanced/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/agentdb-learning/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/agentdb-learning/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/agentdb-optimization/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/agentdb-optimization/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/agentdb-vector-search/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/agentdb-vector-search/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/api-testing-patterns/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/api-testing-patterns/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/code-review-quality/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/code-review-quality/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/compatibility-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/compatibility-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/compliance-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/compliance-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/consultancy-practices/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/consultancy-practices/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/contract-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/contract-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/database-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/database-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/flow-nexus-neural/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/flow-nexus-neural/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/flow-nexus-platform/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/flow-nexus-platform/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/flow-nexus-swarm/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/flow-nexus-swarm/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/github-code-review/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/github-code-review/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/github-multi-repo/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/github-multi-repo/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/hive-mind-advanced/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/hive-mind-advanced/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/holistic-testing-pact/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/holistic-testing-pact/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/hooks-automation/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/hooks-automation/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/localization-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/localization-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/mobile-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/mobile-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/mutation-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/mutation-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/pair-programming/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/pair-programming/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/performance-analysis/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/performance-analysis/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/performance-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/performance-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/quality-metrics/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/quality-metrics/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/reasoningbank-agentdb/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/reasoningbank-agentdb/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/refactoring-patterns/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/refactoring-patterns/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/regression-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/regression-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/risk-based-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/risk-based-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/security-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/security-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/shift-left-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/shift-left-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/shift-right-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/shift-right-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/skill-builder/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/skill-builder/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/sparc-methodology/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/sparc-methodology/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/stream-chain/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/stream-chain/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/swarm-advanced/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/swarm-advanced/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/swarm-orchestration/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/swarm-orchestration/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/tdd-london-chicago/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/tdd-london-chicago/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/technical-writing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/technical-writing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/test-data-management/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/test-data-management/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/verification-quality/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/verification-quality/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/xp-practices/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/skills/xp-practices/SKILL.md -------------------------------------------------------------------------------- /.claude/statusline-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.claude/statusline-command.sh -------------------------------------------------------------------------------- /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.clinerules -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.devcontainer/install-tools.sh -------------------------------------------------------------------------------- /.devcontainer/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.devcontainer/test-setup.sh -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.env.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/README.md -------------------------------------------------------------------------------- /.roo/mcp-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/mcp-list.txt -------------------------------------------------------------------------------- /.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/mcp.json -------------------------------------------------------------------------------- /.roo/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/mcp.md -------------------------------------------------------------------------------- /.roo/rules-architect/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-architect/rules.md -------------------------------------------------------------------------------- /.roo/rules-ask/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-ask/rules.md -------------------------------------------------------------------------------- /.roo/rules-code/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/apply_diff_guidelines.md -------------------------------------------------------------------------------- /.roo/rules-code/code_editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/code_editing.md -------------------------------------------------------------------------------- /.roo/rules-code/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/file_operations_guidelines.md -------------------------------------------------------------------------------- /.roo/rules-code/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/insert_content.md -------------------------------------------------------------------------------- /.roo/rules-code/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/rules.md -------------------------------------------------------------------------------- /.roo/rules-code/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/search_replace.md -------------------------------------------------------------------------------- /.roo/rules-code/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-code/tool_guidelines_index.md -------------------------------------------------------------------------------- /.roo/rules-debug/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-debug/rules.md -------------------------------------------------------------------------------- /.roo/rules-devops/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-devops/rules.md -------------------------------------------------------------------------------- /.roo/rules-docs-writer/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-docs-writer/rules.md -------------------------------------------------------------------------------- /.roo/rules-integration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-integration/rules.md -------------------------------------------------------------------------------- /.roo/rules-mcp/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-mcp/rules.md -------------------------------------------------------------------------------- /.roo/rules-security-review/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-security-review/rules.md -------------------------------------------------------------------------------- /.roo/rules-sparc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-sparc/rules.md -------------------------------------------------------------------------------- /.roo/rules-spec-pseudocode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-spec-pseudocode/rules.md -------------------------------------------------------------------------------- /.roo/rules-supabase-admin/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-supabase-admin/rules.md -------------------------------------------------------------------------------- /.roo/rules-tdd/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-tdd/rules.md -------------------------------------------------------------------------------- /.roo/rules-tutorial/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules-tutorial/rules.md -------------------------------------------------------------------------------- /.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/rules.md -------------------------------------------------------------------------------- /.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /AI Agent for API Testing Blueprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/AI Agent for API Testing Blueprint.pdf -------------------------------------------------------------------------------- /AUDIT_TRAIL_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/AUDIT_TRAIL_COMPLETE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CLAUDE.md.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/CLAUDE.md.backup -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPREHENSIVE_IMPROVEMENTS_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/COMPREHENSIVE_IMPROVEMENTS_REPORT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOYMENT_VERIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/DEPLOYMENT_VERIFICATION.md -------------------------------------------------------------------------------- /Dockerfile.consciousness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/Dockerfile.consciousness -------------------------------------------------------------------------------- /FINAL_ASSESSMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/FINAL_ASSESSMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM_PROVIDER_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/LLM_PROVIDER_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/Makefile -------------------------------------------------------------------------------- /PHASE_1.5_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/PHASE_1.5_COMPLETE.md -------------------------------------------------------------------------------- /PHASE_2.5_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/PHASE_2.5_COMPLETE.md -------------------------------------------------------------------------------- /QUICK_DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/QUICK_DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TESTING_CONSCIOUSNESS_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/TESTING_CONSCIOUSNESS_GUIDE.md -------------------------------------------------------------------------------- /TEST_COVERAGE_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/TEST_COVERAGE_PLAN.md -------------------------------------------------------------------------------- /config/enhanced_tracing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/enhanced_tracing_config.py -------------------------------------------------------------------------------- /config/vault/policies/api-gateway-policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/api-gateway-policy.hcl -------------------------------------------------------------------------------- /config/vault/policies/auth-service-policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/auth-service-policy.hcl -------------------------------------------------------------------------------- /config/vault/policies/data-service-policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/data-service-policy.hcl -------------------------------------------------------------------------------- /config/vault/policies/rust-core-policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/rust-core-policy.hcl -------------------------------------------------------------------------------- /config/vault/policies/sentinel-auth.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/sentinel-auth.hcl -------------------------------------------------------------------------------- /config/vault/policies/sentinel-data.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/sentinel-data.hcl -------------------------------------------------------------------------------- /config/vault/policies/sentinel-execution.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/sentinel-execution.hcl -------------------------------------------------------------------------------- /config/vault/policies/sentinel-rust-core.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/sentinel-rust-core.hcl -------------------------------------------------------------------------------- /config/vault/policies/sentinel-spec.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/sentinel-spec.hcl -------------------------------------------------------------------------------- /config/vault/policies/spec-service-policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/config/vault/policies/spec-service-policy.hcl -------------------------------------------------------------------------------- /coordination/coordination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/coordination/coordination.md -------------------------------------------------------------------------------- /coordination/memory/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/coordination/memory/agents/README.md -------------------------------------------------------------------------------- /coordination/memory/claude-flow-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/coordination/memory/claude-flow-data.json -------------------------------------------------------------------------------- /coordination/memory/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/coordination/memory/sessions/README.md -------------------------------------------------------------------------------- /demo_phase2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_phase2.py -------------------------------------------------------------------------------- /demo_phase3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_phase3.py -------------------------------------------------------------------------------- /demo_phase3_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_phase3_frontend.py -------------------------------------------------------------------------------- /demo_phase4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_phase4.py -------------------------------------------------------------------------------- /demo_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_rbac.py -------------------------------------------------------------------------------- /demo_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/demo_standalone.py -------------------------------------------------------------------------------- /docker-compose.consciousness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docker-compose.consciousness.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/404_FIX_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/404_FIX_REPORT.md -------------------------------------------------------------------------------- /docs/AGENT_MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/AGENT_MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /docs/AGENT_TESTS_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/AGENT_TESTS_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/ANALYSIS_INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ANALYSIS_INDEX.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE_MISMATCH_DIAGRAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ARCHITECTURE_MISMATCH_DIAGRAM.md -------------------------------------------------------------------------------- /docs/ASSERTION_EVALUATOR_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ASSERTION_EVALUATOR_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/ASSERTION_REGISTRY_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ASSERTION_REGISTRY_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/ASSERTION_TYPE_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ASSERTION_TYPE_REFERENCE.md -------------------------------------------------------------------------------- /docs/AUTHENTICATION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/AUTHENTICATION_FIX.md -------------------------------------------------------------------------------- /docs/BENCHMARK_RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/BENCHMARK_RESULTS.md -------------------------------------------------------------------------------- /docs/BLOCKERS_1_AND_2_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/BLOCKERS_1_AND_2_FIXED.md -------------------------------------------------------------------------------- /docs/CODE_QUALITY_ANALYSIS_V1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CODE_QUALITY_ANALYSIS_V1.1.0.md -------------------------------------------------------------------------------- /docs/CONSCIOUSNESS_VERIFICATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CONSCIOUSNESS_VERIFICATION_GUIDE.md -------------------------------------------------------------------------------- /docs/CONSOLIDATION_REVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CONSOLIDATION_REVIEW.md -------------------------------------------------------------------------------- /docs/CONSOLIDATION_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CONSOLIDATION_TEST_REPORT.md -------------------------------------------------------------------------------- /docs/CRITICAL_DOCKER_STARTUP_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_DOCKER_STARTUP_ANALYSIS.md -------------------------------------------------------------------------------- /docs/CRITICAL_ISSUES_EXECUTIVE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_ISSUES_EXECUTIVE_SUMMARY.md -------------------------------------------------------------------------------- /docs/CRITICAL_ISSUE_1_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_ISSUE_1_FIXED.md -------------------------------------------------------------------------------- /docs/CRITICAL_ISSUE_2_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_ISSUE_2_FIXED.md -------------------------------------------------------------------------------- /docs/CRITICAL_ISSUE_3_FIX_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_ISSUE_3_FIX_PLAN.md -------------------------------------------------------------------------------- /docs/CRITICAL_ISSUE_3_IMPLEMENTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/CRITICAL_ISSUE_3_IMPLEMENTED.md -------------------------------------------------------------------------------- /docs/DATABASE_CONNECTION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DATABASE_CONNECTION_FIX.md -------------------------------------------------------------------------------- /docs/DATABASE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DATABASE_SETUP.md -------------------------------------------------------------------------------- /docs/DEDUPLICATION_FIX_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DEDUPLICATION_FIX_COMPLETE.md -------------------------------------------------------------------------------- /docs/DISTILLATION_SERVICE_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DISTILLATION_SERVICE_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/DISTILLATION_SERVICE_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DISTILLATION_SERVICE_QUICKSTART.md -------------------------------------------------------------------------------- /docs/DOCKER_ANALYSIS_COMPLETE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_ANALYSIS_COMPLETE_SUMMARY.md -------------------------------------------------------------------------------- /docs/DOCKER_BUILD_FIXED_FINAL_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_BUILD_FIXED_FINAL_2025-10-30.md -------------------------------------------------------------------------------- /docs/DOCKER_FIX_COMPLETED_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_FIX_COMPLETED_2025-10-30.md -------------------------------------------------------------------------------- /docs/DOCKER_FIX_IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_FIX_IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/DOCKER_STARTUP_FIX_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_STARTUP_FIX_SUMMARY.md -------------------------------------------------------------------------------- /docs/DOCKER_STARTUP_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_STARTUP_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /docs/DOCKER_STARTUP_ROOT_CAUSE_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_STARTUP_ROOT_CAUSE_ANALYSIS.md -------------------------------------------------------------------------------- /docs/DOCKER_TEST_ISSUE_v1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/DOCKER_TEST_ISSUE_v1.1.0.md -------------------------------------------------------------------------------- /docs/E2E_TESTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/E2E_TESTING_GUIDE.md -------------------------------------------------------------------------------- /docs/E2E_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/E2E_TEST_REPORT.md -------------------------------------------------------------------------------- /docs/EDGE_CASES_E2E_TESTS_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/EDGE_CASES_E2E_TESTS_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/EXECUTIVE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/EXECUTIVE_SUMMARY.md -------------------------------------------------------------------------------- /docs/FEATURE_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FEATURE_AUDIT_REPORT.md -------------------------------------------------------------------------------- /docs/FEEDBACK_ENDPOINT_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FEEDBACK_ENDPOINT_FIXED.md -------------------------------------------------------------------------------- /docs/FEEDBACK_SCHEMA_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FEEDBACK_SCHEMA_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/FEEDBACK_TESTING_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FEEDBACK_TESTING_INSTRUCTIONS.md -------------------------------------------------------------------------------- /docs/FEEDBACK_UI_INTEGRATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FEEDBACK_UI_INTEGRATION_COMPLETE.md -------------------------------------------------------------------------------- /docs/FINAL_HONEST_VERIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FINAL_HONEST_VERIFICATION.md -------------------------------------------------------------------------------- /docs/FINAL_LLM_BENCHMARK_RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FINAL_LLM_BENCHMARK_RESULTS.md -------------------------------------------------------------------------------- /docs/FINAL_PRODUCTION_READINESS_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FINAL_PRODUCTION_READINESS_REPORT.md -------------------------------------------------------------------------------- /docs/FINAL_TESTING_SUMMARY_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FINAL_TESTING_SUMMARY_2025-10-30.md -------------------------------------------------------------------------------- /docs/FINAL_VALIDATION_REPORT_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FINAL_VALIDATION_REPORT_2025-10-30.md -------------------------------------------------------------------------------- /docs/FIXES_COMPLETE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FIXES_COMPLETE_SUMMARY.md -------------------------------------------------------------------------------- /docs/FIX_INSTRUCTIONS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/FIX_INSTRUCTIONS_README.md -------------------------------------------------------------------------------- /docs/GOAP_PRODUCTION_READINESS_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/GOAP_PRODUCTION_READINESS_ANALYSIS.md -------------------------------------------------------------------------------- /docs/HONEST_VERIFICATION_ASSESSMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/HONEST_VERIFICATION_ASSESSMENT.md -------------------------------------------------------------------------------- /docs/HYBRID_AGENT_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/HYBRID_AGENT_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/IMMEDIATE_ACTION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMMEDIATE_ACTION_PLAN.md -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMPLEMENTATION_CHECKLIST.md -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_PROGRESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMPLEMENTATION_PROGRESS.md -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_STATUS_REPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMPLEMENTATION_STATUS_REPORT.json -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_STATUS_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMPLEMENTATION_STATUS_REPORT.md -------------------------------------------------------------------------------- /docs/IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/ISSUES_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/ISSUES_SUMMARY.md -------------------------------------------------------------------------------- /docs/LLM_PROVIDER_BENCHMARK_COMPARISON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/LLM_PROVIDER_BENCHMARK_COMPARISON.md -------------------------------------------------------------------------------- /docs/MILESTONE-1.1-COMPLETION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/MILESTONE-1.1-COMPLETION-SUMMARY.md -------------------------------------------------------------------------------- /docs/OBSERVABILITY_FIXES_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/OBSERVABILITY_FIXES_2025-10-30.md -------------------------------------------------------------------------------- /docs/OLLAMA_BENCHMARK_RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/OLLAMA_BENCHMARK_RESULTS.md -------------------------------------------------------------------------------- /docs/PHASE-1-MILESTONE-1-3-COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PHASE-1-MILESTONE-1-3-COMPLETE.md -------------------------------------------------------------------------------- /docs/PHASE1_TEST_EXECUTION_REPORT_V1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PHASE1_TEST_EXECUTION_REPORT_V1.1.0.md -------------------------------------------------------------------------------- /docs/PHASE2_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PHASE2_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/PHASE_1_3_COMPLETION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PHASE_1_3_COMPLETION.md -------------------------------------------------------------------------------- /docs/POST_FIX_VERIFICATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/POST_FIX_VERIFICATION_REPORT.md -------------------------------------------------------------------------------- /docs/PR30_ASSERTION_CODE_REVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PR30_ASSERTION_CODE_REVIEW.md -------------------------------------------------------------------------------- /docs/PR30_REVIEW_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PR30_REVIEW_SUMMARY.md -------------------------------------------------------------------------------- /docs/PR30_VERIFICATION_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PR30_VERIFICATION_CHECKLIST.md -------------------------------------------------------------------------------- /docs/PRODUCTION_READINESS_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/PRODUCTION_READINESS_SUMMARY.md -------------------------------------------------------------------------------- /docs/QUICK_ACTION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/QUICK_ACTION_PLAN.md -------------------------------------------------------------------------------- /docs/QUICK_START_GUIDE_V1_1_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/QUICK_START_GUIDE_V1_1_0.md -------------------------------------------------------------------------------- /docs/README_LEARNING_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/README_LEARNING_INTEGRATION.md -------------------------------------------------------------------------------- /docs/REASONINGBANK_INTEGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REASONINGBANK_INTEGRATION_GUIDE.md -------------------------------------------------------------------------------- /docs/REASONINGBANK_SERVICE_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REASONINGBANK_SERVICE_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/REGRESSION_DASHBOARD_PR30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REGRESSION_DASHBOARD_PR30.txt -------------------------------------------------------------------------------- /docs/REGRESSION_RISK_ANALYSIS_PR30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REGRESSION_RISK_ANALYSIS_PR30.md -------------------------------------------------------------------------------- /docs/REGRESSION_RISK_ANALYSIS_V1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REGRESSION_RISK_ANALYSIS_V1.1.0.md -------------------------------------------------------------------------------- /docs/REGRESSION_TEST_EXECUTION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REGRESSION_TEST_EXECUTION_SUMMARY.md -------------------------------------------------------------------------------- /docs/REGRESSION_TEST_IMPLEMENTATION_PR30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/REGRESSION_TEST_IMPLEMENTATION_PR30.md -------------------------------------------------------------------------------- /docs/RELEASE_1_1_0_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RELEASE_1_1_0_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/RELEASE_PREPARATION_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RELEASE_PREPARATION_CHECKLIST.md -------------------------------------------------------------------------------- /docs/RETRIEVAL_SERVICE_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RETRIEVAL_SERVICE_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/RL_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RL_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/RL_INTEGRATION_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RL_INTEGRATION_DESIGN.md -------------------------------------------------------------------------------- /docs/RL_Q_LEARNING_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RL_Q_LEARNING_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/RUST_AGENTS_OPTIMIZATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RUST_AGENTS_OPTIMIZATION_PLAN.md -------------------------------------------------------------------------------- /docs/RUST_AGENTS_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RUST_AGENTS_OVERVIEW.md -------------------------------------------------------------------------------- /docs/RUST_CONSCIOUSNESS_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/RUST_CONSCIOUSNESS_IMPROVEMENTS.md -------------------------------------------------------------------------------- /docs/SENTINEL_IMPROVEMENT_PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SENTINEL_IMPROVEMENT_PLAN.json -------------------------------------------------------------------------------- /docs/SENTINEL_IMPROVEMENT_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SENTINEL_IMPROVEMENT_PLAN.md -------------------------------------------------------------------------------- /docs/SESSION_COMPLETE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SESSION_COMPLETE_SUMMARY.md -------------------------------------------------------------------------------- /docs/STARTUP_SEQUENCE_DIAGRAM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/STARTUP_SEQUENCE_DIAGRAM.txt -------------------------------------------------------------------------------- /docs/STATUS_VISUAL_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/STATUS_VISUAL_SUMMARY.md -------------------------------------------------------------------------------- /docs/SUBLINEAR_IMPLEMENTATION_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SUBLINEAR_IMPLEMENTATION_STRATEGY.md -------------------------------------------------------------------------------- /docs/SWARM_EXECUTION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SWARM_EXECUTION_COMPLETE.md -------------------------------------------------------------------------------- /docs/SWARM_IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/SWARM_IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/TESTING_READY_FINAL_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/TESTING_READY_FINAL_STATUS.md -------------------------------------------------------------------------------- /docs/TEST_STATISTICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/TEST_STATISTICS.md -------------------------------------------------------------------------------- /docs/TEST_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/TEST_SUMMARY.md -------------------------------------------------------------------------------- /docs/USER_FEEDBACK_AND_LEARNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/USER_FEEDBACK_AND_LEARNING.md -------------------------------------------------------------------------------- /docs/VAULT_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/VAULT_SETUP.md -------------------------------------------------------------------------------- /docs/VERIFICATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/VERIFICATION_REPORT.md -------------------------------------------------------------------------------- /docs/WORK_SESSION_SUMMARY_2025-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/WORK_SESSION_SUMMARY_2025-10-30.md -------------------------------------------------------------------------------- /docs/agent-fix-implementation-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/agent-fix-implementation-plan.md -------------------------------------------------------------------------------- /docs/agent-testing-findings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/agent-testing-findings.md -------------------------------------------------------------------------------- /docs/agentic-flow-analysis-v2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/agentic-flow-analysis-v2.0.0.json -------------------------------------------------------------------------------- /docs/api-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/api-reference/index.md -------------------------------------------------------------------------------- /docs/aqe-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/aqe-integration-guide.md -------------------------------------------------------------------------------- /docs/aqe-integration-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/aqe-integration-summary.md -------------------------------------------------------------------------------- /docs/architecture/PHASE_1.4_COMPLETION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/architecture/PHASE_1.4_COMPLETION.md -------------------------------------------------------------------------------- /docs/changes_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/changes_summary.md -------------------------------------------------------------------------------- /docs/claude-flow-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/claude-flow-README.md -------------------------------------------------------------------------------- /docs/claude-flow-analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/claude-flow-analysis.json -------------------------------------------------------------------------------- /docs/claude-flow-latest-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/claude-flow-latest-changes.md -------------------------------------------------------------------------------- /docs/claude-flow-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/claude-flow-summary.txt -------------------------------------------------------------------------------- /docs/database-health-check-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/database-health-check-summary.md -------------------------------------------------------------------------------- /docs/database-initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/database-initialization.md -------------------------------------------------------------------------------- /docs/deduplication_fix_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/deduplication_fix_index.md -------------------------------------------------------------------------------- /docs/deduplication_fix_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/deduplication_fix_summary.md -------------------------------------------------------------------------------- /docs/deployment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/deployment/index.md -------------------------------------------------------------------------------- /docs/executive-summary-validation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/executive-summary-validation-report.md -------------------------------------------------------------------------------- /docs/fix-implementation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/fix-implementation-report.md -------------------------------------------------------------------------------- /docs/fix-validation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/fix-validation-report.md -------------------------------------------------------------------------------- /docs/frontend-containerization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/frontend-containerization.md -------------------------------------------------------------------------------- /docs/frontend-quick-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/frontend-quick-reference.md -------------------------------------------------------------------------------- /docs/gist-analysis-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/gist-analysis-report.json -------------------------------------------------------------------------------- /docs/gist-analysis-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/gist-analysis-summary.md -------------------------------------------------------------------------------- /docs/gist-analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/gist-analysis.json -------------------------------------------------------------------------------- /docs/implementation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/implementation-guide.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/learning_integration_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/learning_integration_analysis.md -------------------------------------------------------------------------------- /docs/learning_loop_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/learning_loop_architecture.md -------------------------------------------------------------------------------- /docs/mcp-integration-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/mcp-integration-examples.md -------------------------------------------------------------------------------- /docs/pattern_recognition_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/pattern_recognition_system.md -------------------------------------------------------------------------------- /docs/performance_analysis_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/performance_analysis_report.md -------------------------------------------------------------------------------- /docs/performance_bottleneck_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/performance_bottleneck_summary.md -------------------------------------------------------------------------------- /docs/performance_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/performance_comparison.md -------------------------------------------------------------------------------- /docs/phase-1-milestone-1.2-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase-1-milestone-1.2-completion.md -------------------------------------------------------------------------------- /docs/phase-2/MILESTONE-2.1-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase-2/MILESTONE-2.1-SUMMARY.md -------------------------------------------------------------------------------- /docs/phase-2/QUICK-START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase-2/QUICK-START.md -------------------------------------------------------------------------------- /docs/phase-2/agentdb-implementation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase-2/agentdb-implementation-guide.md -------------------------------------------------------------------------------- /docs/phase-2/agentdb-integration-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase-2/agentdb-integration-design.md -------------------------------------------------------------------------------- /docs/phase2_milestone2.4_completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/phase2_milestone2.4_completion.md -------------------------------------------------------------------------------- /docs/positive_agent_fixes_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/positive_agent_fixes_summary.md -------------------------------------------------------------------------------- /docs/qe-coverage-analysis-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/qe-coverage-analysis-plan.md -------------------------------------------------------------------------------- /docs/qe-deployment-dashboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/qe-deployment-dashboard.txt -------------------------------------------------------------------------------- /docs/qe-deployment-readiness-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/qe-deployment-readiness-plan.md -------------------------------------------------------------------------------- /docs/qe-visual-testing-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/qe-visual-testing-plan.md -------------------------------------------------------------------------------- /docs/reasoningbank/DEPLOYMENT_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/reasoningbank/DEPLOYMENT_SUMMARY.md -------------------------------------------------------------------------------- /docs/reasoningbank/IMPLEMENTATION_PROGRESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/reasoningbank/IMPLEMENTATION_PROGRESS.md -------------------------------------------------------------------------------- /docs/reasoningbank/QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/reasoningbank/QUICK_START.md -------------------------------------------------------------------------------- /docs/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/release/README.md -------------------------------------------------------------------------------- /docs/release/V1_1_0_IMMEDIATE_ACTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/release/V1_1_0_IMMEDIATE_ACTIONS.md -------------------------------------------------------------------------------- /docs/release/V1_1_0_QUICK_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/release/V1_1_0_QUICK_CHECKLIST.md -------------------------------------------------------------------------------- /docs/release/V1_1_0_RELEASE_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/release/V1_1_0_RELEASE_PLAN.md -------------------------------------------------------------------------------- /docs/secrets-audit-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/secrets-audit-report.md -------------------------------------------------------------------------------- /docs/secrets-management-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/secrets-management-guide.md -------------------------------------------------------------------------------- /docs/secrets-migration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/secrets-migration-plan.md -------------------------------------------------------------------------------- /docs/security_agent_auth_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/security_agent_auth_detection.md -------------------------------------------------------------------------------- /docs/security_analysis_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/security_analysis_report.md -------------------------------------------------------------------------------- /docs/sparc-rust-sublinear-enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/sparc-rust-sublinear-enhancements.md -------------------------------------------------------------------------------- /docs/sublinear-solver-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/sublinear-solver-analysis.md -------------------------------------------------------------------------------- /docs/swarm_coordination/AGENT_ASSIGNMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/swarm_coordination/AGENT_ASSIGNMENTS.md -------------------------------------------------------------------------------- /docs/swarm_coordination/DEPENDENCY_GRAPH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/swarm_coordination/DEPENDENCY_GRAPH.md -------------------------------------------------------------------------------- /docs/technical-guide/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/technical-guide/architecture.md -------------------------------------------------------------------------------- /docs/technical-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/technical-guide/index.md -------------------------------------------------------------------------------- /docs/test-case-analysis-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/test-case-analysis-report.md -------------------------------------------------------------------------------- /docs/test-generation-gap-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/test-generation-gap-analysis.md -------------------------------------------------------------------------------- /docs/troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/troubleshooting/index.md -------------------------------------------------------------------------------- /docs/user-guide/cicd-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/user-guide/cicd-integration.md -------------------------------------------------------------------------------- /docs/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/user-guide/index.md -------------------------------------------------------------------------------- /docs/user-guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/user-guide/quick-start.md -------------------------------------------------------------------------------- /docs/user-guide/specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/user-guide/specifications.md -------------------------------------------------------------------------------- /docs/user-guide/test-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/user-guide/test-types.md -------------------------------------------------------------------------------- /docs/verify_blockers_fixed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/docs/verify_blockers_fixed.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/consciousness_test_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/consciousness_test_generation.py -------------------------------------------------------------------------------- /examples/edge-case-discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/edge-case-discovery.js -------------------------------------------------------------------------------- /examples/intelligent-test-generation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/intelligent-test-generation.js -------------------------------------------------------------------------------- /examples/performance-prediction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/performance-prediction.js -------------------------------------------------------------------------------- /examples/verify_consciousness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/examples/verify_consciousness.sh -------------------------------------------------------------------------------- /fix_functional_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/fix_functional_agent.py -------------------------------------------------------------------------------- /memory-bank/activeContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/activeContext.md -------------------------------------------------------------------------------- /memory-bank/agent-specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/agent-specifications.md -------------------------------------------------------------------------------- /memory-bank/api-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/api-design.md -------------------------------------------------------------------------------- /memory-bank/database-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/database-schema.md -------------------------------------------------------------------------------- /memory-bank/productContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/productContext.md -------------------------------------------------------------------------------- /memory-bank/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/progress.md -------------------------------------------------------------------------------- /memory-bank/projectbrief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/projectbrief.md -------------------------------------------------------------------------------- /memory-bank/systemPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/systemPatterns.md -------------------------------------------------------------------------------- /memory-bank/techContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/techContext.md -------------------------------------------------------------------------------- /memory-bank/test-implementation-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/test-implementation-summary.md -------------------------------------------------------------------------------- /memory-bank/test-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory-bank/test-infrastructure.md -------------------------------------------------------------------------------- /memory/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory/agents/README.md -------------------------------------------------------------------------------- /memory/memory-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory/memory-store.json -------------------------------------------------------------------------------- /memory/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/memory/sessions/README.md -------------------------------------------------------------------------------- /monitor_consciousness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/monitor_consciousness.sh -------------------------------------------------------------------------------- /ollama_benchmark_10rounds_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/ollama_benchmark_10rounds_summary.json -------------------------------------------------------------------------------- /petstore_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/Dockerfile -------------------------------------------------------------------------------- /petstore_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/README.md -------------------------------------------------------------------------------- /petstore_api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/docker-compose.yml -------------------------------------------------------------------------------- /petstore_api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/main.py -------------------------------------------------------------------------------- /petstore_api/petstore-openapi-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/petstore-openapi-spec.json -------------------------------------------------------------------------------- /petstore_api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/requirements.txt -------------------------------------------------------------------------------- /petstore_api/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/petstore_api/run.sh -------------------------------------------------------------------------------- /prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/prometheus.yml -------------------------------------------------------------------------------- /run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/run-all-tests.sh -------------------------------------------------------------------------------- /sample-petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sample-petstore.yaml -------------------------------------------------------------------------------- /scripts/benchmark_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/benchmark_agents.py -------------------------------------------------------------------------------- /scripts/benchmark_anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/benchmark_anthropic.py -------------------------------------------------------------------------------- /scripts/benchmark_mock_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/benchmark_mock_provider.py -------------------------------------------------------------------------------- /scripts/benchmark_ollama_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/benchmark_ollama_models.py -------------------------------------------------------------------------------- /scripts/benchmark_python_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/benchmark_python_agents.py -------------------------------------------------------------------------------- /scripts/comprehensive_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/comprehensive_benchmark.py -------------------------------------------------------------------------------- /scripts/configure_llm_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/configure_llm_provider.py -------------------------------------------------------------------------------- /scripts/configure_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/configure_ollama.py -------------------------------------------------------------------------------- /scripts/demo_llm_enhancement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/demo_llm_enhancement.sh -------------------------------------------------------------------------------- /scripts/fair_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/fair_benchmark.py -------------------------------------------------------------------------------- /scripts/fair_benchmark_proper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/fair_benchmark_proper.py -------------------------------------------------------------------------------- /scripts/fast_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/fast_benchmark.py -------------------------------------------------------------------------------- /scripts/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/petstore.json -------------------------------------------------------------------------------- /scripts/proper_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/proper_benchmark.py -------------------------------------------------------------------------------- /scripts/quick_fair_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/quick_fair_benchmark.py -------------------------------------------------------------------------------- /scripts/quick_llm_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/quick_llm_demo.sh -------------------------------------------------------------------------------- /scripts/quick_ollama_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/quick_ollama_benchmark.py -------------------------------------------------------------------------------- /scripts/run_full_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/run_full_benchmark.py -------------------------------------------------------------------------------- /scripts/run_learning_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/run_learning_tests.sh -------------------------------------------------------------------------------- /scripts/secrets-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/secrets-init.sh -------------------------------------------------------------------------------- /scripts/secrets-rotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/secrets-rotate.sh -------------------------------------------------------------------------------- /scripts/secrets-validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/secrets-validate.sh -------------------------------------------------------------------------------- /scripts/test_actual_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/test_actual_provider.py -------------------------------------------------------------------------------- /scripts/test_direct_anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/test_direct_anthropic.py -------------------------------------------------------------------------------- /scripts/test_llm_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/test_llm_api.sh -------------------------------------------------------------------------------- /scripts/test_llm_enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/test_llm_enhancement.py -------------------------------------------------------------------------------- /scripts/test_ollama_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/test_ollama_single.py -------------------------------------------------------------------------------- /scripts/trigger_test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/scripts/trigger_test_run.py -------------------------------------------------------------------------------- /sentinel_backend/.env.docker.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/.env.docker.template -------------------------------------------------------------------------------- /sentinel_backend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/.env.production -------------------------------------------------------------------------------- /sentinel_backend/CRUD_AUDIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/CRUD_AUDIT.md -------------------------------------------------------------------------------- /sentinel_backend/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/Dockerfile.test -------------------------------------------------------------------------------- /sentinel_backend/EDGE_CASES_AGENT_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/EDGE_CASES_AGENT_SUMMARY.md -------------------------------------------------------------------------------- /sentinel_backend/PERFORMANCE_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/PERFORMANCE_ANALYSIS.md -------------------------------------------------------------------------------- /sentinel_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/agentdb_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/agentdb_service/Dockerfile -------------------------------------------------------------------------------- /sentinel_backend/agentdb_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/agentdb_service/README.md -------------------------------------------------------------------------------- /sentinel_backend/agentdb_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/agentdb_service/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/agentdb_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/agentdb_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/agentdb_service/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/agentdb_service/schemas.py -------------------------------------------------------------------------------- /sentinel_backend/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/alembic.ini -------------------------------------------------------------------------------- /sentinel_backend/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /sentinel_backend/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/alembic/env.py -------------------------------------------------------------------------------- /sentinel_backend/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/alembic/script.py.mako -------------------------------------------------------------------------------- /sentinel_backend/api_gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/api_gateway/Dockerfile -------------------------------------------------------------------------------- /sentinel_backend/api_gateway/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/api_gateway/Dockerfile.prod -------------------------------------------------------------------------------- /sentinel_backend/api_gateway/bff_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/api_gateway/bff_service.py -------------------------------------------------------------------------------- /sentinel_backend/api_gateway/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/api_gateway/main.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/README.md -------------------------------------------------------------------------------- /sentinel_backend/audit_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/api.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/emitter.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/audit_service/reports.py -------------------------------------------------------------------------------- /sentinel_backend/audit_service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for audit service.""" 2 | -------------------------------------------------------------------------------- /sentinel_backend/auth_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/auth_service/Dockerfile -------------------------------------------------------------------------------- /sentinel_backend/auth_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/auth_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/ci_templates/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/ci_templates/Jenkinsfile -------------------------------------------------------------------------------- /sentinel_backend/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/cli/main.py -------------------------------------------------------------------------------- /sentinel_backend/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/common/README.md -------------------------------------------------------------------------------- /sentinel_backend/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/common/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/config/development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/development.env -------------------------------------------------------------------------------- /sentinel_backend/config/docker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/docker.env -------------------------------------------------------------------------------- /sentinel_backend/config/llm_example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/llm_example.env -------------------------------------------------------------------------------- /sentinel_backend/config/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/local.env -------------------------------------------------------------------------------- /sentinel_backend/config/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/logging_config.py -------------------------------------------------------------------------------- /sentinel_backend/config/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/manage.py -------------------------------------------------------------------------------- /sentinel_backend/config/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/production.env -------------------------------------------------------------------------------- /sentinel_backend/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/settings.py -------------------------------------------------------------------------------- /sentinel_backend/config/testing.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/testing.env -------------------------------------------------------------------------------- /sentinel_backend/config/tracing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/tracing_config.py -------------------------------------------------------------------------------- /sentinel_backend/config/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/config/validation.py -------------------------------------------------------------------------------- /sentinel_backend/data_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/data_service/Dockerfile -------------------------------------------------------------------------------- /sentinel_backend/data_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/data_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/data_service/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/data_service/models.py -------------------------------------------------------------------------------- /sentinel_backend/data_service/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/data_service/schemas.py -------------------------------------------------------------------------------- /sentinel_backend/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docker-compose.prod.yml -------------------------------------------------------------------------------- /sentinel_backend/docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docker-compose.test.yml -------------------------------------------------------------------------------- /sentinel_backend/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docker-entrypoint.sh -------------------------------------------------------------------------------- /sentinel_backend/docs/BLOCKER3_SOLUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docs/BLOCKER3_SOLUTION.md -------------------------------------------------------------------------------- /sentinel_backend/docs/EXECUTIVE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docs/EXECUTIVE_SUMMARY.md -------------------------------------------------------------------------------- /sentinel_backend/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/docs/README.md -------------------------------------------------------------------------------- /sentinel_backend/execution_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/execution_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/init_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/init_database.py -------------------------------------------------------------------------------- /sentinel_backend/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/init_db.sql -------------------------------------------------------------------------------- /sentinel_backend/llm_providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/llm_providers/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/models/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/models/feedback.py -------------------------------------------------------------------------------- /sentinel_backend/observability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/observability/README.md -------------------------------------------------------------------------------- /sentinel_backend/ollama_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/ollama_config.json -------------------------------------------------------------------------------- /sentinel_backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/pyproject.toml -------------------------------------------------------------------------------- /sentinel_backend/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/pytest.ini -------------------------------------------------------------------------------- /sentinel_backend/reasoningbank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/reasoningbank/README.md -------------------------------------------------------------------------------- /sentinel_backend/reasoningbank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/reasoningbank/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/reasoningbank/services/__init__.py: -------------------------------------------------------------------------------- 1 | """ReasoningBank Services""" 2 | -------------------------------------------------------------------------------- /sentinel_backend/rl_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/rl_service/README.md -------------------------------------------------------------------------------- /sentinel_backend/rl_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/rl_service/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/run_agent_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/run_agent_tests.sh -------------------------------------------------------------------------------- /sentinel_backend/run_llm_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/run_llm_tests.sh -------------------------------------------------------------------------------- /sentinel_backend/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/run_tests.sh -------------------------------------------------------------------------------- /sentinel_backend/run_tests_filtered.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/run_tests_filtered.sh -------------------------------------------------------------------------------- /sentinel_backend/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/README.md -------------------------------------------------------------------------------- /sentinel_backend/scripts/db_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/db_diagnostics.py -------------------------------------------------------------------------------- /sentinel_backend/scripts/db_quick_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/db_quick_check.sh -------------------------------------------------------------------------------- /sentinel_backend/scripts/docker-init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/docker-init-db.sh -------------------------------------------------------------------------------- /sentinel_backend/scripts/fix_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/fix_signatures.py -------------------------------------------------------------------------------- /sentinel_backend/scripts/switch_llm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/switch_llm.sh -------------------------------------------------------------------------------- /sentinel_backend/scripts/wait_for_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/scripts/wait_for_db.sh -------------------------------------------------------------------------------- /sentinel_backend/spec_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/spec_service/Dockerfile -------------------------------------------------------------------------------- /sentinel_backend/spec_service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/spec_service/main.py -------------------------------------------------------------------------------- /sentinel_backend/spec_service/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/spec_service/models.py -------------------------------------------------------------------------------- /sentinel_backend/spec_service/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/spec_service/schemas.py -------------------------------------------------------------------------------- /sentinel_backend/test_all_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/test_all_agents.py -------------------------------------------------------------------------------- /sentinel_backend/test_positive_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/test_positive_agent.py -------------------------------------------------------------------------------- /sentinel_backend/tests/TESTING_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/tests/TESTING_STRATEGY.md -------------------------------------------------------------------------------- /sentinel_backend/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/tests/__init__.py -------------------------------------------------------------------------------- /sentinel_backend/tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for common utilities""" 2 | -------------------------------------------------------------------------------- /sentinel_backend/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/tests/conftest.py -------------------------------------------------------------------------------- /sentinel_backend/tests/integration/rl/__init__.py: -------------------------------------------------------------------------------- 1 | """Integration tests for RL service.""" 2 | -------------------------------------------------------------------------------- /sentinel_backend/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_backend/tests/test_config.py -------------------------------------------------------------------------------- /sentinel_backend/tests/unit/rl/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for RL service.""" 2 | -------------------------------------------------------------------------------- /sentinel_frontend/BACKEND_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/BACKEND_INTEGRATION.md -------------------------------------------------------------------------------- /sentinel_frontend/Dockerfile.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/Dockerfile.e2e -------------------------------------------------------------------------------- /sentinel_frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/Dockerfile.prod -------------------------------------------------------------------------------- /sentinel_frontend/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/Dockerfile.test -------------------------------------------------------------------------------- /sentinel_frontend/IMPLEMENTATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/IMPLEMENTATION_STATUS.md -------------------------------------------------------------------------------- /sentinel_frontend/INTEGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/INTEGRATION_GUIDE.md -------------------------------------------------------------------------------- /sentinel_frontend/QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/QUICK_START.md -------------------------------------------------------------------------------- /sentinel_frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/README.md -------------------------------------------------------------------------------- /sentinel_frontend/docs/API_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/docs/API_INTEGRATION.md -------------------------------------------------------------------------------- /sentinel_frontend/docs/QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/docs/QUICK_START.md -------------------------------------------------------------------------------- /sentinel_frontend/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/e2e/README.md -------------------------------------------------------------------------------- /sentinel_frontend/e2e/pages/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/e2e/pages/login.page.ts -------------------------------------------------------------------------------- /sentinel_frontend/e2e/tests/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/e2e/tests/auth.spec.ts -------------------------------------------------------------------------------- /sentinel_frontend/e2e/tests/rbac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/e2e/tests/rbac.spec.ts -------------------------------------------------------------------------------- /sentinel_frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/jest.config.js -------------------------------------------------------------------------------- /sentinel_frontend/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/nginx-default.conf -------------------------------------------------------------------------------- /sentinel_frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/nginx.conf -------------------------------------------------------------------------------- /sentinel_frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/package.json -------------------------------------------------------------------------------- /sentinel_frontend/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/playwright.config.js -------------------------------------------------------------------------------- /sentinel_frontend/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/playwright.config.ts -------------------------------------------------------------------------------- /sentinel_frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/postcss.config.js -------------------------------------------------------------------------------- /sentinel_frontend/public/health: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/public/health -------------------------------------------------------------------------------- /sentinel_frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/public/index.html -------------------------------------------------------------------------------- /sentinel_frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/App.js -------------------------------------------------------------------------------- /sentinel_frontend/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/components/Layout.js -------------------------------------------------------------------------------- /sentinel_frontend/src/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/config/settings.js -------------------------------------------------------------------------------- /sentinel_frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/index.css -------------------------------------------------------------------------------- /sentinel_frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/index.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/Analytics.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/Dashboard.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/Login.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/TestCases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/TestCases.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/TestRuns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/TestRuns.js -------------------------------------------------------------------------------- /sentinel_frontend/src/pages/TestSuites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/pages/TestSuites.js -------------------------------------------------------------------------------- /sentinel_frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/services/api.js -------------------------------------------------------------------------------- /sentinel_frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/setupTests.js -------------------------------------------------------------------------------- /sentinel_frontend/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/store/store.js -------------------------------------------------------------------------------- /sentinel_frontend/src/tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/tests/setup.ts -------------------------------------------------------------------------------- /sentinel_frontend/src/types/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/src/types/feedback.ts -------------------------------------------------------------------------------- /sentinel_frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/tailwind.config.js -------------------------------------------------------------------------------- /sentinel_frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/sentinel_frontend/tsconfig.json -------------------------------------------------------------------------------- /start-with-llm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/start-with-llm.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/start.sh -------------------------------------------------------------------------------- /test_api_consciousness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/test_api_consciousness.sh -------------------------------------------------------------------------------- /test_consciousness_improvements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/test_consciousness_improvements.py -------------------------------------------------------------------------------- /test_observability_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/test_observability_e2e.py -------------------------------------------------------------------------------- /test_rabbitmq_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/test_rabbitmq_integration.py -------------------------------------------------------------------------------- /tests/DATA_MOCKING_AGENT_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/DATA_MOCKING_AGENT_SUMMARY.md -------------------------------------------------------------------------------- /tests/DATA_MOCKING_AGENT_TEST_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/DATA_MOCKING_AGENT_TEST_REPORT.md -------------------------------------------------------------------------------- /tests/TEST_COVERAGE_IMPROVEMENT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/TEST_COVERAGE_IMPROVEMENT_REPORT.md -------------------------------------------------------------------------------- /tests/test_db_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/test_db_health.py -------------------------------------------------------------------------------- /tests/test_deduplication_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/test_deduplication_standalone.py -------------------------------------------------------------------------------- /tests/validate_deduplication_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/tests/validate_deduplication_fix.py -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proffesor-for-testing/sentinel-api-testing/HEAD/todo.md --------------------------------------------------------------------------------