icdev 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- icdev/__init__.py +18 -0
- icdev/_paths.py +85 -0
- icdev/_version.py +3 -0
- icdev/data/__init__.py +1 -0
- icdev/data/args/__init__.py +1 -0
- icdev/data/args/agent_authority.yaml +61 -0
- icdev/data/args/agent_config.yaml +355 -0
- icdev/data/args/agentic_fitness.yaml +31 -0
- icdev/data/args/ai_governance_config.yaml +137 -0
- icdev/data/args/atlas_critique_config.yaml +66 -0
- icdev/data/args/bedrock_models.yaml +63 -0
- icdev/data/args/cicd_config.yaml +82 -0
- icdev/data/args/classification_config.yaml +232 -0
- icdev/data/args/cli_config.yaml +154 -0
- icdev/data/args/cloud_config.yaml +63 -0
- icdev/data/args/code_pattern_config.yaml +151 -0
- icdev/data/args/code_quality_config.yaml +47 -0
- icdev/data/args/companion_registry.yaml +202 -0
- icdev/data/args/context_config.yaml +82 -0
- icdev/data/args/csp_monitor_config.yaml +268 -0
- icdev/data/args/cui_markings.yaml +35 -0
- icdev/data/args/db_config.yaml +40 -0
- icdev/data/args/deployment_profiles.yaml +248 -0
- icdev/data/args/dev_profile_config.yaml +144 -0
- icdev/data/args/devsecops_config.yaml +286 -0
- icdev/data/args/endpoint_security_config.yaml +137 -0
- icdev/data/args/extension_config.yaml +79 -0
- icdev/data/args/file_access_tiers.yaml +88 -0
- icdev/data/args/framework_registry.yaml +415 -0
- icdev/data/args/innovation_config.yaml +431 -0
- icdev/data/args/installation_manifest.yaml +1087 -0
- icdev/data/args/llm_config.yaml +495 -0
- icdev/data/args/maintenance_config.yaml +55 -0
- icdev/data/args/memory_config.yaml +83 -0
- icdev/data/args/monitoring_config.yaml +127 -0
- icdev/data/args/mosa_config.yaml +190 -0
- icdev/data/args/nlq_config.yaml +35 -0
- icdev/data/args/observability_config.yaml +39 -0
- icdev/data/args/observability_tracing_config.yaml +170 -0
- icdev/data/args/oscal_tools_config.yaml +43 -0
- icdev/data/args/owasp_agentic_config.yaml +171 -0
- icdev/data/args/phase_registry.yaml +618 -0
- icdev/data/args/project_defaults.yaml +235 -0
- icdev/data/args/prompt_chains.yaml +163 -0
- icdev/data/args/resilience_config.yaml +50 -0
- icdev/data/args/ricoas_config.yaml +191 -0
- icdev/data/args/role_personas.yaml +362 -0
- icdev/data/args/scaling_config.yaml +176 -0
- icdev/data/args/security_gates.yaml +685 -0
- icdev/data/args/skill_injection_config.yaml +322 -0
- icdev/data/args/spec_config.yaml +53 -0
- icdev/data/args/supply_chain_config.yaml +76 -0
- icdev/data/args/translation_config.yaml +228 -0
- icdev/data/args/workflow_templates/ato_acceleration.yaml +54 -0
- icdev/data/args/workflow_templates/build_deploy.yaml +63 -0
- icdev/data/args/workflow_templates/full_compliance.yaml +43 -0
- icdev/data/args/workflow_templates/security_hardening.yaml +55 -0
- icdev/data/args/worktree_config.yaml +34 -0
- icdev/data/args/zta_config.yaml +247 -0
- icdev/data/context/__init__.py +1 -0
- icdev/data/context/agent/__init__.py +1 -0
- icdev/data/context/agent/response_schemas/__init__.py +1 -0
- icdev/data/context/agent/response_schemas/debate_position.json +46 -0
- icdev/data/context/agent/response_schemas/fitness_scorecard.json +74 -0
- icdev/data/context/agent/response_schemas/review_decision.json +39 -0
- icdev/data/context/agent/response_schemas/task_decomposition.json +82 -0
- icdev/data/context/agent/response_schemas/veto_decision.json +40 -0
- icdev/data/context/agentic/__init__.py +1 -0
- icdev/data/context/agentic/architecture_patterns.md +269 -0
- icdev/data/context/agentic/capability_registry.yaml +202 -0
- icdev/data/context/agentic/csp_mcp_registry.yaml +280 -0
- icdev/data/context/agentic/fitness_rubric.md +56 -0
- icdev/data/context/agentic/governance_baseline.md +205 -0
- icdev/data/context/ci/__init__.py +1 -0
- icdev/data/context/ci/worktree_templates.json +44 -0
- icdev/data/context/cloud/__init__.py +1 -0
- icdev/data/context/cloud/csp_service_registry.json +739 -0
- icdev/data/context/compliance/__init__.py +1 -0
- icdev/data/context/compliance/atlas_mitigations.json +293 -0
- icdev/data/context/compliance/atlas_techniques.json +833 -0
- icdev/data/context/compliance/cisa_sbd_requirements.json +432 -0
- icdev/data/context/compliance/cjis_security_policy.json +522 -0
- icdev/data/context/compliance/cmmc_practices.json +2494 -0
- icdev/data/context/compliance/cmmc_report_template.md +142 -0
- icdev/data/context/compliance/cnssi_1253_overlay.json +109 -0
- icdev/data/context/compliance/control_crosswalk.json +1914 -0
- icdev/data/context/compliance/control_families/__init__.py +1 -0
- icdev/data/context/compliance/csp_certifications.json +251 -0
- icdev/data/context/compliance/cssp_report_template.md +193 -0
- icdev/data/context/compliance/cui_templates/__init__.py +1 -0
- icdev/data/context/compliance/cui_templates/banner_block.txt +4 -0
- icdev/data/context/compliance/cui_templates/code_header.txt +8 -0
- icdev/data/context/compliance/cui_templates/document_template.md +35 -0
- icdev/data/context/compliance/data_type_framework_map.json +321 -0
- icdev/data/context/compliance/data_type_registry.json +147 -0
- icdev/data/context/compliance/dod_cssp_8530.json +463 -0
- icdev/data/context/compliance/eu_ai_act_annex_iii.json +108 -0
- icdev/data/context/compliance/export_templates/__init__.py +1 -0
- icdev/data/context/compliance/export_templates/emass_controls.csv.j2 +4 -0
- icdev/data/context/compliance/export_templates/evidence_package.md.j2 +39 -0
- icdev/data/context/compliance/export_templates/executive_summary.md.j2 +55 -0
- icdev/data/context/compliance/export_templates/poam_tracking.csv.j2 +4 -0
- icdev/data/context/compliance/fedramp_20x_ksi_schemas.json +133 -0
- icdev/data/context/compliance/fedramp_high_baseline.json +4370 -0
- icdev/data/context/compliance/fedramp_moderate_baseline.json +2183 -0
- icdev/data/context/compliance/fedramp_report_template.md +181 -0
- icdev/data/context/compliance/fips_200_areas.json +362 -0
- icdev/data/context/compliance/gao_ai_accountability.json +262 -0
- icdev/data/context/compliance/hipaa_security_rule.json +720 -0
- icdev/data/context/compliance/hitrust_csf_v11.json +930 -0
- icdev/data/context/compliance/impact_level_profiles.json +251 -0
- icdev/data/context/compliance/incident_response_template.md +1110 -0
- icdev/data/context/compliance/iso27001_2022_controls.json +750 -0
- icdev/data/context/compliance/iso27001_nist_bridge.json +382 -0
- icdev/data/context/compliance/iso42001_controls.json +254 -0
- icdev/data/context/compliance/ivv_checklist_template.md +80 -0
- icdev/data/context/compliance/ivv_report_template.md +116 -0
- icdev/data/context/compliance/ivv_requirements.json +372 -0
- icdev/data/context/compliance/mosa_crosswalk.json +327 -0
- icdev/data/context/compliance/mosa_framework.json +250 -0
- icdev/data/context/compliance/narrative_templates/AC.md.j2 +101 -0
- icdev/data/context/compliance/narrative_templates/AU.md.j2 +106 -0
- icdev/data/context/compliance/narrative_templates/IA.md.j2 +104 -0
- icdev/data/context/compliance/narrative_templates/SC.md.j2 +102 -0
- icdev/data/context/compliance/narrative_templates/SI.md.j2 +111 -0
- icdev/data/context/compliance/narrative_templates/__init__.py +1 -0
- icdev/data/context/compliance/narrative_templates/default.md.j2 +50 -0
- icdev/data/context/compliance/narrative_templates/executive_summary.j2 +27 -0
- icdev/data/context/compliance/narrative_templates/poam_milestone.j2 +19 -0
- icdev/data/context/compliance/narrative_templates/ssp_section.j2 +11 -0
- icdev/data/context/compliance/nist_800_171_controls.json +1552 -0
- icdev/data/context/compliance/nist_800_207_crosswalk.json +399 -0
- icdev/data/context/compliance/nist_800_207_zta.json +258 -0
- icdev/data/context/compliance/nist_800_53.json +324 -0
- icdev/data/context/compliance/nist_ai_600_1_genai.json +326 -0
- icdev/data/context/compliance/nist_ai_rmf.json +206 -0
- icdev/data/context/compliance/nist_sp_800_60_types.json +1667 -0
- icdev/data/context/compliance/omb_m25_21_high_impact_ai.json +248 -0
- icdev/data/context/compliance/omb_m26_04_unbiased_ai.json +262 -0
- icdev/data/context/compliance/owasp_agentic_asi.json +133 -0
- icdev/data/context/compliance/owasp_agentic_threats.json +285 -0
- icdev/data/context/compliance/owasp_llm_top10.json +274 -0
- icdev/data/context/compliance/pci_dss_v4.json +510 -0
- icdev/data/context/compliance/poam_template.md +117 -0
- icdev/data/context/compliance/safeai_controls.json +512 -0
- icdev/data/context/compliance/sbd_report_template.md +77 -0
- icdev/data/context/compliance/siem_config_templates/__init__.py +1 -0
- icdev/data/context/compliance/siem_config_templates/filebeat.yml +213 -0
- icdev/data/context/compliance/siem_config_templates/log_sources.json +208 -0
- icdev/data/context/compliance/soc2_trust_criteria.json +661 -0
- icdev/data/context/compliance/ssp_template.md +432 -0
- icdev/data/context/compliance/stig_templates/__init__.py +1 -0
- icdev/data/context/compliance/stig_templates/webapp_stig.json +139 -0
- icdev/data/context/compliance/xai_requirements.json +108 -0
- icdev/data/context/dashboard/__init__.py +1 -0
- icdev/data/context/dashboard/nlq_examples.json +50 -0
- icdev/data/context/dashboard/schema_descriptions.json +23 -0
- icdev/data/context/integration/__init__.py +1 -0
- icdev/data/context/integration/approval_workflows.json +32 -0
- icdev/data/context/integration/gitlab_field_mappings.json +33 -0
- icdev/data/context/integration/jira_field_mappings.json +32 -0
- icdev/data/context/integration/reqif_export_schema.json +23 -0
- icdev/data/context/integration/servicenow_field_mappings.json +22 -0
- icdev/data/context/languages/__init__.py +1 -0
- icdev/data/context/languages/framework_patterns.json +205 -0
- icdev/data/context/languages/language_registry.json +279 -0
- icdev/data/context/llm/__init__.py +1 -0
- icdev/data/context/llm/example_provider.py +86 -0
- icdev/data/context/mbse/__init__.py +1 -0
- icdev/data/context/mbse/des_report_template.md +162 -0
- icdev/data/context/mbse/des_requirements.json +411 -0
- icdev/data/context/mbse/digital_thread_patterns.json +403 -0
- icdev/data/context/mbse/reqif_schema.json +280 -0
- icdev/data/context/mbse/sysml_element_types.json +432 -0
- icdev/data/context/modernization/__init__.py +1 -0
- icdev/data/context/modernization/db_type_mappings.json +148 -0
- icdev/data/context/modernization/decomposition_patterns.json +284 -0
- icdev/data/context/modernization/framework_migration_patterns.json +359 -0
- icdev/data/context/modernization/migration_report_template.md +168 -0
- icdev/data/context/modernization/seven_rs_catalog.json +369 -0
- icdev/data/context/modernization/version_upgrade_rules.json +279 -0
- icdev/data/context/oscal/NIST_SP-800-53_rev5_catalog.json +254987 -0
- icdev/data/context/oscal/README.md +43 -0
- icdev/data/context/patterns/__init__.py +1 -0
- icdev/data/context/profiles/__init__.py +1 -0
- icdev/data/context/profiles/dod_baseline_v1.yaml +145 -0
- icdev/data/context/profiles/fedramp_baseline_v1.yaml +143 -0
- icdev/data/context/profiles/financial_baseline_v1.yaml +142 -0
- icdev/data/context/profiles/healthcare_baseline_v1.yaml +135 -0
- icdev/data/context/profiles/law_enforcement_v1.yaml +129 -0
- icdev/data/context/profiles/startup_v1.yaml +134 -0
- icdev/data/context/requirements/__init__.py +1 -0
- icdev/data/context/requirements/ambiguity_patterns.json +97 -0
- icdev/data/context/requirements/boundary_impact_rules.json +123 -0
- icdev/data/context/requirements/default_constitutions.json +67 -0
- icdev/data/context/requirements/document_extraction_rules.json +58 -0
- icdev/data/context/requirements/gap_patterns.json +108 -0
- icdev/data/context/requirements/readiness_rubric.json +78 -0
- icdev/data/context/requirements/red_alternative_patterns.json +210 -0
- icdev/data/context/requirements/safe_templates.json +72 -0
- icdev/data/context/requirements/spec_quality_checklist.json +122 -0
- icdev/data/context/simulation/__init__.py +1 -0
- icdev/data/context/simulation/architecture_patterns.json +36 -0
- icdev/data/context/simulation/coa_templates.json +38 -0
- icdev/data/context/simulation/cost_models.json +23 -0
- icdev/data/context/simulation/risk_categories.json +46 -0
- icdev/data/context/supply_chain/__init__.py +1 -0
- icdev/data/context/supply_chain/isa_templates.json +129 -0
- icdev/data/context/supply_chain/nist_800_161_controls.json +247 -0
- icdev/data/context/supply_chain/scrm_risk_matrix.json +147 -0
- icdev/data/context/templates/__init__.py +1 -0
- icdev/data/context/templates/ansible/__init__.py +1 -0
- icdev/data/context/templates/ansible/playbooks/__init__.py +1 -0
- icdev/data/context/templates/ansible/roles/__init__.py +1 -0
- icdev/data/context/templates/gitlab_ci/__init__.py +1 -0
- icdev/data/context/templates/grafana/__init__.py +1 -0
- icdev/data/context/templates/kubernetes/__init__.py +1 -0
- icdev/data/context/templates/project/__init__.py +1 -0
- icdev/data/context/templates/project/api/__init__.py +1 -0
- icdev/data/context/templates/project/cli/__init__.py +1 -0
- icdev/data/context/templates/project/data_pipeline/__init__.py +1 -0
- icdev/data/context/templates/project/iac/__init__.py +1 -0
- icdev/data/context/templates/project/javascript_frontend/__init__.py +1 -0
- icdev/data/context/templates/project/javascript_frontend/src/__init__.py +1 -0
- icdev/data/context/templates/project/javascript_frontend/tests/__init__.py +1 -0
- icdev/data/context/templates/project/microservice/__init__.py +1 -0
- icdev/data/context/templates/project/python_backend/__init__.py +1 -0
- icdev/data/context/templates/project/python_backend/src/__init__.py +1 -0
- icdev/data/context/templates/project/python_backend/tests/__init__.py +1 -0
- icdev/data/context/templates/project/python_backend/tests/features/__init__.py +1 -0
- icdev/data/context/templates/project/python_backend/tests/steps/__init__.py +1 -0
- icdev/data/context/templates/terraform/__init__.py +1 -0
- icdev/data/context/templates/terraform/govcloud_base/__init__.py +1 -0
- icdev/data/context/templates/terraform/modules/__init__.py +1 -0
- icdev/data/context/tone/__init__.py +1 -0
- icdev/data/context/translation/dependency_mappings.json +186 -0
- icdev/data/context/translation/type_mappings.json +149 -0
- icdev/data/docs/README.md +187 -0
- icdev/data/docs/__init__.py +1 -0
- icdev/data/docs/admin/gateway-guide.md +338 -0
- icdev/data/docs/admin/marketplace-guide.md +396 -0
- icdev/data/docs/admin/monitoring-guide.md +509 -0
- icdev/data/docs/architecture/compliance-framework.md +764 -0
- icdev/data/docs/architecture/database-schema.md +689 -0
- icdev/data/docs/architecture/gotcha-framework.md +518 -0
- icdev/data/docs/architecture/multi-agent-system.md +603 -0
- icdev/data/docs/dx/README.md +106 -0
- icdev/data/docs/dx/__init__.py +1 -0
- icdev/data/docs/dx/ci-cd-integration.md +378 -0
- icdev/data/docs/dx/claude-code-guide.md +213 -0
- icdev/data/docs/dx/companion-guide.md +232 -0
- icdev/data/docs/dx/dev-profiles.md +309 -0
- icdev/data/docs/dx/icdev-yaml-spec.md +219 -0
- icdev/data/docs/dx/integration-tiers.md +279 -0
- icdev/data/docs/dx/llm-routing-guide.md +456 -0
- icdev/data/docs/dx/quickstart.md +192 -0
- icdev/data/docs/dx/sdk-reference.md +356 -0
- icdev/data/docs/dx/unified-mcp-setup.md +525 -0
- icdev/data/docs/features/__init__.py +1 -0
- icdev/data/docs/features/phase-01-gotcha-framework.md +249 -0
- icdev/data/docs/features/phase-02-atlas-build-workflow.md +223 -0
- icdev/data/docs/features/phase-03-tdd-bdd-testing.md +261 -0
- icdev/data/docs/features/phase-04-nist-compliance.md +255 -0
- icdev/data/docs/features/phase-05-security-scanning.md +229 -0
- icdev/data/docs/features/phase-06-infrastructure-deployment.md +288 -0
- icdev/data/docs/features/phase-07-code-review-gates.md +276 -0
- icdev/data/docs/features/phase-08-self-healing.md +223 -0
- icdev/data/docs/features/phase-09-monitoring-observability.md +230 -0
- icdev/data/docs/features/phase-10-dashboard-web-ui.md +218 -0
- icdev/data/docs/features/phase-11-multi-agent-architecture.md +272 -0
- icdev/data/docs/features/phase-12-integration-testing.md +228 -0
- icdev/data/docs/features/phase-13-cicd-integration.md +257 -0
- icdev/data/docs/features/phase-14-secure-by-design-ivv.md +240 -0
- icdev/data/docs/features/phase-15-maintenance-audit.md +192 -0
- icdev/data/docs/features/phase-16-ato-acceleration.md +228 -0
- icdev/data/docs/features/phase-17-multi-framework-compliance.md +223 -0
- icdev/data/docs/features/phase-18-mbse-integration.md +242 -0
- icdev/data/docs/features/phase-19-agentic-generation.md +202 -0
- icdev/data/docs/features/phase-20-fips-security-categorization.md +198 -0
- icdev/data/docs/features/phase-21-saas-multi-tenancy.md +273 -0
- icdev/data/docs/features/phase-22-federated-gotcha-marketplace.md +242 -0
- icdev/data/docs/features/phase-23-universal-compliance-platform.md +238 -0
- icdev/data/docs/features/phase-24-devsecops-pipeline-security.md +198 -0
- icdev/data/docs/features/phase-25-zero-trust-architecture.md +220 -0
- icdev/data/docs/features/phase-26-dod-mosa.md +205 -0
- icdev/data/docs/features/phase-27-cli-capabilities.md +222 -0
- icdev/data/docs/features/phase-28-remote-command-gateway.md +235 -0
- icdev/data/docs/features/phase-29-proactive-monitoring.md +212 -0
- icdev/data/docs/features/phase-30-dashboard-auth.md +215 -0
- icdev/data/docs/features/phase-31-dashboard-ux-low-impact.md +188 -0
- icdev/data/docs/features/phase-32-dashboard-ux-medium-impact.md +223 -0
- icdev/data/docs/features/phase-33-modular-installation.md +218 -0
- icdev/data/docs/features/phase-34-dev-profiles.md +239 -0
- icdev/data/docs/features/phase-35-innovation-engine.md +257 -0
- icdev/data/docs/features/phase-36-evolutionary-intelligence.md +351 -0
- icdev/data/docs/features/phase-37-mitre-atlas-integration.md +485 -0
- icdev/data/docs/features/phase-38-cloud-agnostic-architecture.md +1033 -0
- icdev/data/docs/features/phase-39-observability-operations.md +178 -0
- icdev/data/docs/features/phase-40-nlq-compliance-queries.md +176 -0
- icdev/data/docs/features/phase-41-parallel-cicd.md +169 -0
- icdev/data/docs/features/phase-42-framework-planning.md +177 -0
- icdev/data/docs/features/phase-43-cross-language-translation.md +225 -0
- icdev/data/docs/features/phase-44-innovation-adaptation.md +227 -0
- icdev/data/docs/features/phase-45-owasp-agentic-security.md +239 -0
- icdev/data/docs/features/phase-46-observability-traceability-xai.md +240 -0
- icdev/data/docs/features/phase-47-unified-mcp-gateway.md +257 -0
- icdev/data/docs/features/phase-48-ai-transparency.md +203 -0
- icdev/data/docs/features/phase-49-ai-accountability.md +243 -0
- icdev/data/docs/features/phase-50-ai-governance-intake-chat.md +195 -0
- icdev/data/docs/features/phase-51-unified-chat-dashboard.md +240 -0
- icdev/data/docs/features/phase-52-code-intelligence.md +244 -0
- icdev/data/docs/features/phase-53-fedramp-20x-owasp-asi.md +359 -0
- icdev/data/docs/features/phase-54-slsa-swft-orchestration.md +379 -0
- icdev/data/docs/features/phase-55-a2a-v03-mcp-oauth.md +322 -0
- icdev/data/docs/features/phase-56-evidence-lineage.md +352 -0
- icdev/data/docs/features/phase-57-eu-ai-act-iron-bank.md +319 -0
- icdev/data/docs/features/phase-58-creative-engine.md +370 -0
- icdev/data/docs/features/phase-59-govcon-intelligence.md +535 -0
- icdev/data/docs/features/phase-60-cpmp.md +528 -0
- icdev/data/docs/features/phase-61-orchestration-improvements.md +534 -0
- icdev/data/docs/operations/dashboard-guide.md +354 -0
- icdev/data/docs/operations/deployment-guide.md +556 -0
- icdev/data/docs/operations/saas-admin-guide.md +439 -0
- icdev/data/docs/operations/security-operations-guide.md +733 -0
- icdev/data/docs/runbooks/backup-restore.md +412 -0
- icdev/data/docs/runbooks/troubleshooting.md +499 -0
- icdev/data/features/__init__.py +1 -0
- icdev/data/features/cicd_integration.feature +41 -0
- icdev/data/features/compliance_gates.feature +46 -0
- icdev/data/features/dashboard.feature +72 -0
- icdev/data/features/environment.py +25 -0
- icdev/data/features/project_management.feature +32 -0
- icdev/data/features/requirements_intake.feature +42 -0
- icdev/data/features/saas_platform.feature +53 -0
- icdev/data/features/security_scanning.feature +36 -0
- icdev/data/features/steps/__init__.py +1 -0
- icdev/data/features/steps/cicd_steps.py +465 -0
- icdev/data/features/steps/compliance_steps.py +308 -0
- icdev/data/features/steps/dashboard_steps.py +88 -0
- icdev/data/features/steps/project_steps.py +126 -0
- icdev/data/features/steps/requirements_intake_steps.py +689 -0
- icdev/data/features/steps/saas_platform_steps.py +572 -0
- icdev/data/features/steps/security_steps.py +236 -0
- icdev/data/features/steps/testing_steps.py +226 -0
- icdev/data/features/testing_pipeline.feature +42 -0
- icdev/data/goals/__init__.py +1 -0
- icdev/data/goals/agent_management.md +144 -0
- icdev/data/goals/agentic_generation.md +345 -0
- icdev/data/goals/agentic_threat_model.md +309 -0
- icdev/data/goals/ai_accountability.md +90 -0
- icdev/data/goals/ai_governance_intake.md +132 -0
- icdev/data/goals/ai_transparency.md +76 -0
- icdev/data/goals/atlas_integration.md +405 -0
- icdev/data/goals/ato_acceleration.md +139 -0
- icdev/data/goals/boundary_supply_chain.md +206 -0
- icdev/data/goals/build_app.md +544 -0
- icdev/data/goals/cicd_integration.md +86 -0
- icdev/data/goals/claude_dir_maintenance.md +77 -0
- icdev/data/goals/cli_capabilities.md +340 -0
- icdev/data/goals/cloud_agnostic.md +312 -0
- icdev/data/goals/code_intelligence.md +197 -0
- icdev/data/goals/code_review.md +94 -0
- icdev/data/goals/compliance_workflow.md +858 -0
- icdev/data/goals/continuous_harmonization.md +140 -0
- icdev/data/goals/cross_language_translation.md +171 -0
- icdev/data/goals/dashboard.md +142 -0
- icdev/data/goals/deploy_workflow.md +390 -0
- icdev/data/goals/devsecops_workflow.md +408 -0
- icdev/data/goals/evolutionary_intelligence.md +305 -0
- icdev/data/goals/external_integration.md +113 -0
- icdev/data/goals/framework_planning.md +63 -0
- icdev/data/goals/init_project.md +235 -0
- icdev/data/goals/innovation_engine.md +199 -0
- icdev/data/goals/integration_testing.md +189 -0
- icdev/data/goals/maintenance_audit.md +196 -0
- icdev/data/goals/manifest.md +56 -0
- icdev/data/goals/mbse_integration.md +504 -0
- icdev/data/goals/modernization_workflow.md +618 -0
- icdev/data/goals/monitoring.md +126 -0
- icdev/data/goals/mosa_workflow.md +463 -0
- icdev/data/goals/multi_agent_orchestration.md +68 -0
- icdev/data/goals/nlq_compliance.md +63 -0
- icdev/data/goals/observability.md +64 -0
- icdev/data/goals/observability_traceability_xai.md +154 -0
- icdev/data/goals/owasp_agentic_security.md +395 -0
- icdev/data/goals/parallel_cicd.md +61 -0
- icdev/data/goals/requirements_intake.md +213 -0
- icdev/data/goals/sbd_ivv_workflow.md +195 -0
- icdev/data/goals/security_categorization.md +133 -0
- icdev/data/goals/security_scan.md +381 -0
- icdev/data/goals/self_healing.md +120 -0
- icdev/data/goals/simulation_engine.md +111 -0
- icdev/data/goals/tdd_workflow.md +403 -0
- icdev/data/goals/zero_trust_architecture.md +403 -0
- icdev/data/hardprompts/__init__.py +1 -0
- icdev/data/hardprompts/agent/__init__.py +1 -0
- icdev/data/hardprompts/agent/agentic_architect.md +100 -0
- icdev/data/hardprompts/agent/debate_prompt.md +32 -0
- icdev/data/hardprompts/agent/fitness_evaluation.md +48 -0
- icdev/data/hardprompts/agent/governance_review.md +214 -0
- icdev/data/hardprompts/agent/reviewer_prompt.md +34 -0
- icdev/data/hardprompts/agent/skill_design.md +172 -0
- icdev/data/hardprompts/agent/task_decomposition.md +275 -0
- icdev/data/hardprompts/agent/veto_check_prompt.md +33 -0
- icdev/data/hardprompts/architect/__init__.py +1 -0
- icdev/data/hardprompts/architect/api_design.md +283 -0
- icdev/data/hardprompts/architect/data_model.md +277 -0
- icdev/data/hardprompts/architect/system_design.md +180 -0
- icdev/data/hardprompts/builder/__init__.py +1 -0
- icdev/data/hardprompts/builder/code_generation.md +59 -0
- icdev/data/hardprompts/builder/refactor.md +58 -0
- icdev/data/hardprompts/builder/scaffold_project.md +69 -0
- icdev/data/hardprompts/builder/test_generation.md +87 -0
- icdev/data/hardprompts/ci/__init__.py +1 -0
- icdev/data/hardprompts/ci/worktree_setup.md +35 -0
- icdev/data/hardprompts/compliance/__init__.py +1 -0
- icdev/data/hardprompts/compliance/cmmc_assessment.md +63 -0
- icdev/data/hardprompts/compliance/cssp_assessment.md +75 -0
- icdev/data/hardprompts/compliance/cui_marking.md +86 -0
- icdev/data/hardprompts/compliance/fedramp_assessment.md +55 -0
- icdev/data/hardprompts/compliance/ivv_assessment.md +96 -0
- icdev/data/hardprompts/compliance/poam_generation.md +57 -0
- icdev/data/hardprompts/compliance/sbd_assessment.md +101 -0
- icdev/data/hardprompts/compliance/security_categorization.md +74 -0
- icdev/data/hardprompts/compliance/ssp_generation.md +56 -0
- icdev/data/hardprompts/compliance/stig_evaluation.md +63 -0
- icdev/data/hardprompts/dashboard/__init__.py +1 -0
- icdev/data/hardprompts/dashboard/nlq_system_prompt.md +26 -0
- icdev/data/hardprompts/infra/__init__.py +1 -0
- icdev/data/hardprompts/infra/k8s_manifests.md +118 -0
- icdev/data/hardprompts/infra/pipeline_generation.md +160 -0
- icdev/data/hardprompts/infra/terraform_generation.md +92 -0
- icdev/data/hardprompts/integration/__init__.py +1 -0
- icdev/data/hardprompts/integration/approval_review.md +17 -0
- icdev/data/hardprompts/integration/jira_mapping.md +25 -0
- icdev/data/hardprompts/integration/servicenow_mapping.md +14 -0
- icdev/data/hardprompts/knowledge/__init__.py +1 -0
- icdev/data/hardprompts/knowledge/pattern_detection.md +73 -0
- icdev/data/hardprompts/knowledge/recommendation_engine.md +90 -0
- icdev/data/hardprompts/knowledge/root_cause_analysis.md +91 -0
- icdev/data/hardprompts/maintenance/__init__.py +1 -0
- icdev/data/hardprompts/maintenance/maintenance_assessment.md +82 -0
- icdev/data/hardprompts/mbse/__init__.py +1 -0
- icdev/data/hardprompts/mbse/digital_thread.md +67 -0
- icdev/data/hardprompts/mbse/model_import.md +62 -0
- icdev/data/hardprompts/mbse/model_to_code.md +65 -0
- icdev/data/hardprompts/modernization/__init__.py +1 -0
- icdev/data/hardprompts/modernization/legacy_analysis.md +93 -0
- icdev/data/hardprompts/modernization/migration_planning.md +150 -0
- icdev/data/hardprompts/modernization/seven_r_assessment.md +107 -0
- icdev/data/hardprompts/requirements/__init__.py +1 -0
- icdev/data/hardprompts/requirements/bdd_generation.md +35 -0
- icdev/data/hardprompts/requirements/clarification_prioritization.md +29 -0
- icdev/data/hardprompts/requirements/decomposition.md +60 -0
- icdev/data/hardprompts/requirements/document_extraction.md +45 -0
- icdev/data/hardprompts/requirements/gap_detection.md +70 -0
- icdev/data/hardprompts/requirements/intake_conversation.md +101 -0
- icdev/data/hardprompts/requirements/readiness_assessment.md +39 -0
- icdev/data/hardprompts/requirements/spec_quality.md +33 -0
- icdev/data/hardprompts/requirements/traceability_analysis.md +23 -0
- icdev/data/hardprompts/security/__init__.py +1 -0
- icdev/data/hardprompts/security/endpoint_security.md +78 -0
- icdev/data/hardprompts/security/threat_model.md +70 -0
- icdev/data/hardprompts/security/vulnerability_assessment.md +81 -0
- icdev/data/hardprompts/simulation/__init__.py +1 -0
- icdev/data/hardprompts/simulation/architecture_impact.md +27 -0
- icdev/data/hardprompts/simulation/coa_alternative.md +27 -0
- icdev/data/hardprompts/simulation/coa_generation.md +25 -0
- icdev/data/hardprompts/simulation/compliance_impact.md +28 -0
- icdev/data/hardprompts/simulation/cost_estimation.md +33 -0
- icdev/data/hardprompts/simulation/risk_assessment.md +28 -0
- icdev/data/hardprompts/translation/code_translation.md +68 -0
- icdev/data/hardprompts/translation/dependency_suggestion.md +44 -0
- icdev/data/hardprompts/translation/test_translation.md +64 -0
- icdev/data/hardprompts/translation/translation_repair.md +59 -0
- icdev/py.typed +0 -0
- icdev/tools/__init__.py +1 -0
- icdev/tools/_gen_formatter.py +12 -0
- icdev/tools/a2a/__init__.py +1 -0
- icdev/tools/a2a/agent_cards/architect.json +43 -0
- icdev/tools/a2a/agent_cards/builder.json +50 -0
- icdev/tools/a2a/agent_cards/compliance.json +57 -0
- icdev/tools/a2a/agent_cards/devsecops.json +71 -0
- icdev/tools/a2a/agent_cards/infra.json +57 -0
- icdev/tools/a2a/agent_cards/integration.json +57 -0
- icdev/tools/a2a/agent_cards/knowledge.json +43 -0
- icdev/tools/a2a/agent_cards/mbse.json +57 -0
- icdev/tools/a2a/agent_cards/modernization.json +50 -0
- icdev/tools/a2a/agent_cards/monitor.json +43 -0
- icdev/tools/a2a/agent_cards/orchestrator.json +36 -0
- icdev/tools/a2a/agent_cards/requirements_analyst.json +64 -0
- icdev/tools/a2a/agent_cards/security.json +50 -0
- icdev/tools/a2a/agent_cards/simulation.json +57 -0
- icdev/tools/a2a/agent_cards/supply_chain.json +50 -0
- icdev/tools/a2a/agent_client.py +349 -0
- icdev/tools/a2a/agent_registry.py +412 -0
- icdev/tools/a2a/agent_server.py +579 -0
- icdev/tools/a2a/task.py +200 -0
- icdev/tools/agent/__init__.py +2 -0
- icdev/tools/agent/a2a_agent_card_generator.py +285 -0
- icdev/tools/agent/a2a_discovery_server.py +250 -0
- icdev/tools/agent/agent_executor.py +529 -0
- icdev/tools/agent/agent_memory.py +557 -0
- icdev/tools/agent/agent_models.py +51 -0
- icdev/tools/agent/atlas_critique.py +908 -0
- icdev/tools/agent/authority.py +443 -0
- icdev/tools/agent/bedrock_client.py +1075 -0
- icdev/tools/agent/collaboration.py +871 -0
- icdev/tools/agent/dispatcher_mode.py +665 -0
- icdev/tools/agent/mailbox.py +575 -0
- icdev/tools/agent/prompt_chain_executor.py +1064 -0
- icdev/tools/agent/session_purpose.py +350 -0
- icdev/tools/agent/skill_router.py +638 -0
- icdev/tools/agent/skill_selector.py +486 -0
- icdev/tools/agent/team_orchestrator.py +1108 -0
- icdev/tools/agent/token_tracker.py +290 -0
- icdev/tools/analysis/__init__.py +1 -0
- icdev/tools/analysis/code_analyzer.py +780 -0
- icdev/tools/analysis/runtime_feedback.py +389 -0
- icdev/tools/audit/__init__.py +1 -0
- icdev/tools/audit/audit_logger.py +196 -0
- icdev/tools/audit/audit_query.py +157 -0
- icdev/tools/audit/decision_recorder.py +72 -0
- icdev/tools/builder/__init__.py +1 -0
- icdev/tools/builder/agentic_fitness.py +534 -0
- icdev/tools/builder/agentic_test_templates/test_a2a_callback.py +117 -0
- icdev/tools/builder/agentic_test_templates/test_a2a_lifecycle.feature +52 -0
- icdev/tools/builder/agentic_test_templates/test_agent_card.feature +37 -0
- icdev/tools/builder/agentic_test_templates/test_agent_health.py +128 -0
- icdev/tools/builder/agentic_test_templates/test_memory_system.feature +50 -0
- icdev/tools/builder/agentic_test_templates/test_skill_execution.feature +40 -0
- icdev/tools/builder/app_blueprint.py +1583 -0
- icdev/tools/builder/child_app_generator.py +2852 -0
- icdev/tools/builder/claude_md_generator.py +1734 -0
- icdev/tools/builder/code_generator.py +3703 -0
- icdev/tools/builder/db_init_generator.py +1709 -0
- icdev/tools/builder/dev_profile_manager.py +954 -0
- icdev/tools/builder/formatter.py +768 -0
- icdev/tools/builder/goal_adapter.py +592 -0
- icdev/tools/builder/gotcha_validator.py +812 -0
- icdev/tools/builder/language_support.py +441 -0
- icdev/tools/builder/linter.py +976 -0
- icdev/tools/builder/profile_detector.py +657 -0
- icdev/tools/builder/profile_md_generator.py +723 -0
- icdev/tools/builder/scaffolder.py +1590 -0
- icdev/tools/builder/scaffolder_extended.py +1771 -0
- icdev/tools/builder/test_writer.py +950 -0
- icdev/tools/ci/__init__.py +2 -0
- icdev/tools/ci/connectors/__init__.py +2 -0
- icdev/tools/ci/connectors/base_connector.py +80 -0
- icdev/tools/ci/connectors/connector_registry.py +188 -0
- icdev/tools/ci/connectors/mattermost_connector.py +159 -0
- icdev/tools/ci/connectors/slack_connector.py +197 -0
- icdev/tools/ci/core/__init__.py +2 -0
- icdev/tools/ci/core/air_gap_detector.py +115 -0
- icdev/tools/ci/core/comment_handler.py +192 -0
- icdev/tools/ci/core/conversation_manager.py +479 -0
- icdev/tools/ci/core/event_envelope.py +500 -0
- icdev/tools/ci/core/event_router.py +443 -0
- icdev/tools/ci/core/failure_parser.py +397 -0
- icdev/tools/ci/core/recovery_engine.py +527 -0
- icdev/tools/ci/modules/__init__.py +2 -0
- icdev/tools/ci/modules/agent.py +271 -0
- icdev/tools/ci/modules/git_ops.py +175 -0
- icdev/tools/ci/modules/state.py +117 -0
- icdev/tools/ci/modules/vcs.py +303 -0
- icdev/tools/ci/modules/workflow_ops.py +295 -0
- icdev/tools/ci/modules/worktree.py +340 -0
- icdev/tools/ci/pipeline_config_generator.py +558 -0
- icdev/tools/ci/triggers/__init__.py +2 -0
- icdev/tools/ci/triggers/gitlab_task_monitor.py +330 -0
- icdev/tools/ci/triggers/poll_trigger.py +237 -0
- icdev/tools/ci/triggers/webhook_server.py +356 -0
- icdev/tools/ci/workflows/__init__.py +2 -0
- icdev/tools/ci/workflows/icdev_build.py +140 -0
- icdev/tools/ci/workflows/icdev_comply.py +284 -0
- icdev/tools/ci/workflows/icdev_document.py +152 -0
- icdev/tools/ci/workflows/icdev_e2e.py +188 -0
- icdev/tools/ci/workflows/icdev_patch.py +186 -0
- icdev/tools/ci/workflows/icdev_plan.py +202 -0
- icdev/tools/ci/workflows/icdev_plan_build.py +41 -0
- icdev/tools/ci/workflows/icdev_plan_build_test.py +46 -0
- icdev/tools/ci/workflows/icdev_plan_build_test_review.py +47 -0
- icdev/tools/ci/workflows/icdev_review.py +126 -0
- icdev/tools/ci/workflows/icdev_sdlc.py +261 -0
- icdev/tools/ci/workflows/icdev_test.py +240 -0
- icdev/tools/cli/__init__.py +1 -0
- icdev/tools/cli/output_formatter.py +756 -0
- icdev/tools/cli_formatter.py +42 -0
- icdev/tools/cloud/__init__.py +11 -0
- icdev/tools/cloud/cloud_mode_manager.py +364 -0
- icdev/tools/cloud/csp_changelog.py +383 -0
- icdev/tools/cloud/csp_health_checker.py +268 -0
- icdev/tools/cloud/csp_monitor.py +951 -0
- icdev/tools/cloud/iam_provider.py +593 -0
- icdev/tools/cloud/kms_provider.py +346 -0
- icdev/tools/cloud/monitoring_provider.py +628 -0
- icdev/tools/cloud/provider_factory.py +376 -0
- icdev/tools/cloud/region_validator.py +345 -0
- icdev/tools/cloud/registry_provider.py +563 -0
- icdev/tools/cloud/secrets_provider.py +486 -0
- icdev/tools/cloud/storage_provider.py +446 -0
- icdev/tools/compat/__init__.py +21 -0
- icdev/tools/compat/cli_harmonizer.py +251 -0
- icdev/tools/compat/datetime_utils.py +18 -0
- icdev/tools/compat/db_utils.py +160 -0
- icdev/tools/compat/platform_utils.py +123 -0
- icdev/tools/compliance/__init__.py +1 -0
- icdev/tools/compliance/accountability_manager.py +397 -0
- icdev/tools/compliance/ai_accountability_audit.py +294 -0
- icdev/tools/compliance/ai_impact_assessor.py +273 -0
- icdev/tools/compliance/ai_incident_response.py +301 -0
- icdev/tools/compliance/ai_inventory_manager.py +239 -0
- icdev/tools/compliance/ai_reassessment_scheduler.py +256 -0
- icdev/tools/compliance/ai_transparency_audit.py +248 -0
- icdev/tools/compliance/atlas_assessor.py +278 -0
- icdev/tools/compliance/atlas_report_generator.py +1211 -0
- icdev/tools/compliance/base_assessor.py +597 -0
- icdev/tools/compliance/cato_monitor.py +1385 -0
- icdev/tools/compliance/cato_scheduler.py +699 -0
- icdev/tools/compliance/cjis_assessor.py +76 -0
- icdev/tools/compliance/classification_manager.py +1353 -0
- icdev/tools/compliance/cmmc_assessor.py +1491 -0
- icdev/tools/compliance/cmmc_report_generator.py +1100 -0
- icdev/tools/compliance/compliance_detector.py +463 -0
- icdev/tools/compliance/compliance_exporter.py +427 -0
- icdev/tools/compliance/compliance_status.py +825 -0
- icdev/tools/compliance/control_mapper.py +505 -0
- icdev/tools/compliance/crosswalk_engine.py +1203 -0
- icdev/tools/compliance/cssp_assessor.py +1045 -0
- icdev/tools/compliance/cssp_evidence_collector.py +729 -0
- icdev/tools/compliance/cssp_report_generator.py +1116 -0
- icdev/tools/compliance/cui_marker.py +388 -0
- icdev/tools/compliance/diagram_validator.py +600 -0
- icdev/tools/compliance/emass/__init__.py +2 -0
- icdev/tools/compliance/emass/emass_client.py +840 -0
- icdev/tools/compliance/emass/emass_export.py +777 -0
- icdev/tools/compliance/emass/emass_sync.py +826 -0
- icdev/tools/compliance/eu_ai_act_classifier.py +194 -0
- icdev/tools/compliance/evidence_collector.py +468 -0
- icdev/tools/compliance/fairness_assessor.py +316 -0
- icdev/tools/compliance/fedramp_assessor.py +1808 -0
- icdev/tools/compliance/fedramp_authorization_packager.py +137 -0
- icdev/tools/compliance/fedramp_ksi_generator.py +355 -0
- icdev/tools/compliance/fedramp_report_generator.py +1128 -0
- icdev/tools/compliance/fips199_categorizer.py +881 -0
- icdev/tools/compliance/fips200_validator.py +315 -0
- icdev/tools/compliance/gao_ai_assessor.py +231 -0
- icdev/tools/compliance/gao_evidence_builder.py +308 -0
- icdev/tools/compliance/hipaa_assessor.py +78 -0
- icdev/tools/compliance/hitrust_assessor.py +49 -0
- icdev/tools/compliance/incident_response_plan.py +718 -0
- icdev/tools/compliance/iso27001_assessor.py +92 -0
- icdev/tools/compliance/iso42001_assessor.py +114 -0
- icdev/tools/compliance/ivv_assessor.py +2327 -0
- icdev/tools/compliance/ivv_report_generator.py +1662 -0
- icdev/tools/compliance/model_card_generator.py +297 -0
- icdev/tools/compliance/mosa_assessor.py +117 -0
- icdev/tools/compliance/multi_regime_assessor.py +451 -0
- icdev/tools/compliance/narrative_generator.py +1013 -0
- icdev/tools/compliance/nist_800_207_assessor.py +191 -0
- icdev/tools/compliance/nist_ai_600_1_assessor.py +188 -0
- icdev/tools/compliance/nist_ai_rmf_assessor.py +110 -0
- icdev/tools/compliance/nist_lookup.py +245 -0
- icdev/tools/compliance/omb_m25_21_assessor.py +228 -0
- icdev/tools/compliance/omb_m26_04_assessor.py +188 -0
- icdev/tools/compliance/oscal_catalog_adapter.py +395 -0
- icdev/tools/compliance/oscal_generator.py +2170 -0
- icdev/tools/compliance/oscal_tools.py +1182 -0
- icdev/tools/compliance/owasp_agentic_assessor.py +226 -0
- icdev/tools/compliance/owasp_asi_assessor.py +200 -0
- icdev/tools/compliance/owasp_llm_assessor.py +244 -0
- icdev/tools/compliance/pci_dss_assessor.py +80 -0
- icdev/tools/compliance/pi_compliance_tracker.py +1461 -0
- icdev/tools/compliance/poam_generator.py +405 -0
- icdev/tools/compliance/resolve_marking.py +283 -0
- icdev/tools/compliance/sbd_assessor.py +2068 -0
- icdev/tools/compliance/sbd_report_generator.py +1236 -0
- icdev/tools/compliance/sbom_generator.py +1008 -0
- icdev/tools/compliance/siem_config_generator.py +674 -0
- icdev/tools/compliance/slsa_attestation_generator.py +490 -0
- icdev/tools/compliance/soc2_assessor.py +77 -0
- icdev/tools/compliance/ssp_generator.py +573 -0
- icdev/tools/compliance/stig_checker.py +727 -0
- icdev/tools/compliance/swft_evidence_bundler.py +337 -0
- icdev/tools/compliance/system_card_generator.py +309 -0
- icdev/tools/compliance/traceability_matrix.py +1281 -0
- icdev/tools/compliance/universal_classification_manager.py +1172 -0
- icdev/tools/compliance/xacta/__init__.py +2 -0
- icdev/tools/compliance/xacta/xacta_client.py +449 -0
- icdev/tools/compliance/xacta/xacta_export.py +557 -0
- icdev/tools/compliance/xacta/xacta_sync.py +333 -0
- icdev/tools/compliance/xai_assessor.py +231 -0
- icdev/tools/dashboard/__init__.py +1 -0
- icdev/tools/dashboard/api/__init__.py +1 -0
- icdev/tools/dashboard/api/_pipeline_state.py +17 -0
- icdev/tools/dashboard/api/activity.py +206 -0
- icdev/tools/dashboard/api/admin.py +176 -0
- icdev/tools/dashboard/api/agents.py +53 -0
- icdev/tools/dashboard/api/ai_accountability.py +163 -0
- icdev/tools/dashboard/api/ai_transparency.py +198 -0
- icdev/tools/dashboard/api/audit.py +58 -0
- icdev/tools/dashboard/api/batch.py +666 -0
- icdev/tools/dashboard/api/chat.py +241 -0
- icdev/tools/dashboard/api/cicd.py +219 -0
- icdev/tools/dashboard/api/code_quality.py +223 -0
- icdev/tools/dashboard/api/compliance.py +171 -0
- icdev/tools/dashboard/api/cpmp.py +915 -0
- icdev/tools/dashboard/api/diagrams.py +65 -0
- icdev/tools/dashboard/api/events.py +250 -0
- icdev/tools/dashboard/api/evidence.py +99 -0
- icdev/tools/dashboard/api/fedramp_20x.py +77 -0
- icdev/tools/dashboard/api/govcon.py +1095 -0
- icdev/tools/dashboard/api/intake.py +1171 -0
- icdev/tools/dashboard/api/lineage.py +163 -0
- icdev/tools/dashboard/api/metrics.py +155 -0
- icdev/tools/dashboard/api/nlq.py +72 -0
- icdev/tools/dashboard/api/orchestration.py +472 -0
- icdev/tools/dashboard/api/oscal.py +183 -0
- icdev/tools/dashboard/api/prod_audit.py +183 -0
- icdev/tools/dashboard/api/projects.py +191 -0
- icdev/tools/dashboard/api/proposals.py +1084 -0
- icdev/tools/dashboard/api/traces.py +363 -0
- icdev/tools/dashboard/api/usage.py +234 -0
- icdev/tools/dashboard/app.py +1986 -0
- icdev/tools/dashboard/auth.py +500 -0
- icdev/tools/dashboard/byok.py +245 -0
- icdev/tools/dashboard/chat_manager.py +675 -0
- icdev/tools/dashboard/config.py +116 -0
- icdev/tools/dashboard/diagram_definitions.py +642 -0
- icdev/tools/dashboard/nlq_processor.py +323 -0
- icdev/tools/dashboard/phase_loader.py +136 -0
- icdev/tools/dashboard/sse_manager.py +89 -0
- icdev/tools/dashboard/state_tracker.py +267 -0
- icdev/tools/dashboard/static/css/style.css +706 -0
- icdev/tools/dashboard/static/css/ux.css +2047 -0
- icdev/tools/dashboard/static/js/activity.js +322 -0
- icdev/tools/dashboard/static/js/api.js +161 -0
- icdev/tools/dashboard/static/js/batch.js +814 -0
- icdev/tools/dashboard/static/js/charts.js +618 -0
- icdev/tools/dashboard/static/js/chat.js +1514 -0
- icdev/tools/dashboard/static/js/kanban.js +113 -0
- icdev/tools/dashboard/static/js/live.js +569 -0
- icdev/tools/dashboard/static/js/mermaid-icdev.js +332 -0
- icdev/tools/dashboard/static/js/proposals.js +588 -0
- icdev/tools/dashboard/static/js/shortcuts.js +544 -0
- icdev/tools/dashboard/static/js/tables.js +652 -0
- icdev/tools/dashboard/static/js/tour.js +524 -0
- icdev/tools/dashboard/static/js/ux.js +942 -0
- icdev/tools/dashboard/templates/404.html +10 -0
- icdev/tools/dashboard/templates/activity.html +80 -0
- icdev/tools/dashboard/templates/admin/users.html +144 -0
- icdev/tools/dashboard/templates/ai_accountability.html +235 -0
- icdev/tools/dashboard/templates/ai_transparency.html +263 -0
- icdev/tools/dashboard/templates/base.html +104 -0
- icdev/tools/dashboard/templates/batch.html +23 -0
- icdev/tools/dashboard/templates/chat.html +332 -0
- icdev/tools/dashboard/templates/children.html +149 -0
- icdev/tools/dashboard/templates/cicd.html +253 -0
- icdev/tools/dashboard/templates/code_quality.html +214 -0
- icdev/tools/dashboard/templates/cpmp/cor_detail.html +220 -0
- icdev/tools/dashboard/templates/cpmp/cor_portal.html +91 -0
- icdev/tools/dashboard/templates/cpmp/deliverable_detail.html +197 -0
- icdev/tools/dashboard/templates/cpmp/detail.html +578 -0
- icdev/tools/dashboard/templates/cpmp/portfolio.html +202 -0
- icdev/tools/dashboard/templates/dev_profiles.html +304 -0
- icdev/tools/dashboard/templates/diagrams.html +224 -0
- icdev/tools/dashboard/templates/events/timeline.html +232 -0
- icdev/tools/dashboard/templates/evidence.html +134 -0
- icdev/tools/dashboard/templates/fedramp_20x.html +207 -0
- icdev/tools/dashboard/templates/gateway.html +244 -0
- icdev/tools/dashboard/templates/govcon/capabilities.html +135 -0
- icdev/tools/dashboard/templates/govcon/pipeline.html +214 -0
- icdev/tools/dashboard/templates/govcon/requirements.html +120 -0
- icdev/tools/dashboard/templates/index.html +254 -0
- icdev/tools/dashboard/templates/lineage.html +141 -0
- icdev/tools/dashboard/templates/login.html +51 -0
- icdev/tools/dashboard/templates/monitoring/overview.html +193 -0
- icdev/tools/dashboard/templates/orchestration/dashboard.html +545 -0
- icdev/tools/dashboard/templates/oscal.html +263 -0
- icdev/tools/dashboard/templates/phases.html +150 -0
- icdev/tools/dashboard/templates/prod_audit.html +280 -0
- icdev/tools/dashboard/templates/profile.html +183 -0
- icdev/tools/dashboard/templates/projects/detail.html +583 -0
- icdev/tools/dashboard/templates/projects/list.html +47 -0
- icdev/tools/dashboard/templates/proposals/detail.html +1253 -0
- icdev/tools/dashboard/templates/proposals/list.html +179 -0
- icdev/tools/dashboard/templates/proposals/section_detail.html +193 -0
- icdev/tools/dashboard/templates/provenance.html +181 -0
- icdev/tools/dashboard/templates/query/nlq.html +234 -0
- icdev/tools/dashboard/templates/quick_paths.html +69 -0
- icdev/tools/dashboard/templates/traces.html +155 -0
- icdev/tools/dashboard/templates/translation_detail.html +199 -0
- icdev/tools/dashboard/templates/translations.html +162 -0
- icdev/tools/dashboard/templates/usage.html +225 -0
- icdev/tools/dashboard/templates/wizard.html +539 -0
- icdev/tools/dashboard/templates/xai.html +208 -0
- icdev/tools/dashboard/ux_helpers.py +962 -0
- icdev/tools/dashboard/websocket.py +81 -0
- icdev/tools/db/__init__.py +1 -0
- icdev/tools/db/backup.py +312 -0
- icdev/tools/db/backup_manager.py +832 -0
- icdev/tools/db/init_icdev_db.py +5900 -0
- icdev/tools/db/migrate.py +178 -0
- icdev/tools/db/migration_runner.py +549 -0
- icdev/tools/db/migrations/001_baseline/meta.json +9 -0
- icdev/tools/db/migrations/001_baseline/up.py +68 -0
- icdev/tools/db/migrations/002_memory_enhancements/down.sql +8 -0
- icdev/tools/db/migrations/002_memory_enhancements/meta.json +9 -0
- icdev/tools/db/migrations/002_memory_enhancements/up.py +118 -0
- icdev/tools/db/migrations/003_dev_profiles/meta.json +8 -0
- icdev/tools/db/migrations/003_dev_profiles/up.py +93 -0
- icdev/tools/db/migrations/004_innovation_engine/down.py +19 -0
- icdev/tools/db/migrations/004_innovation_engine/up.py +227 -0
- icdev/tools/db/migrations/005_phase_37_ai_security/down.py +19 -0
- icdev/tools/db/migrations/005_phase_37_ai_security/up.py +258 -0
- icdev/tools/db/migrations/006_phase_36_evolution/down.py +21 -0
- icdev/tools/db/migrations/006_phase_36_evolution/up.py +323 -0
- icdev/tools/db/migrations/007_phase_38_cloud/down.py +14 -0
- icdev/tools/db/migrations/007_phase_38_cloud/up.py +110 -0
- icdev/tools/db/migrations/008_phase36_37_integration/up.py +55 -0
- icdev/tools/db/migrations/__init__.py +2 -0
- icdev/tools/devsecops/__init__.py +2 -0
- icdev/tools/devsecops/attestation_manager.py +458 -0
- icdev/tools/devsecops/network_segmentation_generator.py +614 -0
- icdev/tools/devsecops/pdp_config_generator.py +1256 -0
- icdev/tools/devsecops/pipeline_security_generator.py +484 -0
- icdev/tools/devsecops/policy_generator.py +653 -0
- icdev/tools/devsecops/profile_manager.py +388 -0
- icdev/tools/devsecops/service_mesh_generator.py +1073 -0
- icdev/tools/devsecops/zta_maturity_scorer.py +368 -0
- icdev/tools/devsecops/zta_terraform_generator.py +1303 -0
- icdev/tools/dx/__init__.py +3 -0
- icdev/tools/dx/companion.py +266 -0
- icdev/tools/dx/instruction_generator.py +753 -0
- icdev/tools/dx/mcp_config_generator.py +282 -0
- icdev/tools/dx/skill_translator.py +425 -0
- icdev/tools/dx/tool_detector.py +144 -0
- icdev/tools/extensions/__init__.py +21 -0
- icdev/tools/extensions/builtins/010_ai_governance_chat.py +277 -0
- icdev/tools/extensions/builtins/__init__.py +2 -0
- icdev/tools/extensions/extension_manager.py +455 -0
- icdev/tools/infra/__init__.py +1 -0
- icdev/tools/infra/ansible_generator.py +869 -0
- icdev/tools/infra/dockerfile_generator.py +361 -0
- icdev/tools/infra/infra_status.py +393 -0
- icdev/tools/infra/ironbank_metadata_generator.py +411 -0
- icdev/tools/infra/k8s_generator.py +1002 -0
- icdev/tools/infra/pipeline_generator.py +832 -0
- icdev/tools/infra/rollback.py +400 -0
- icdev/tools/infra/terraform_generator.py +1142 -0
- icdev/tools/infra/terraform_generator_azure.py +1254 -0
- icdev/tools/infra/terraform_generator_gcp.py +953 -0
- icdev/tools/infra/terraform_generator_ibm.py +360 -0
- icdev/tools/infra/terraform_generator_oci.py +919 -0
- icdev/tools/infra/terraform_generator_onprem.py +319 -0
- icdev/tools/innovation/__init__.py +8 -0
- icdev/tools/innovation/competitive_intel.py +492 -0
- icdev/tools/innovation/innovation_manager.py +681 -0
- icdev/tools/innovation/introspective_analyzer.py +774 -0
- icdev/tools/innovation/register_external_patterns.py +440 -0
- icdev/tools/innovation/signal_ranker.py +1038 -0
- icdev/tools/innovation/solution_generator.py +697 -0
- icdev/tools/innovation/standards_monitor.py +466 -0
- icdev/tools/innovation/trend_detector.py +1046 -0
- icdev/tools/innovation/triage_engine.py +1149 -0
- icdev/tools/innovation/web_scanner.py +894 -0
- icdev/tools/installer/__init__.py +1 -0
- icdev/tools/installer/compliance_configurator.py +637 -0
- icdev/tools/installer/installer.py +1711 -0
- icdev/tools/installer/module_registry.py +805 -0
- icdev/tools/installer/platform_setup.py +961 -0
- icdev/tools/integration/__init__.py +2 -0
- icdev/tools/integration/approval_manager.py +561 -0
- icdev/tools/integration/doors_exporter.py +627 -0
- icdev/tools/integration/gitlab_connector.py +784 -0
- icdev/tools/integration/jira_connector.py +774 -0
- icdev/tools/integration/servicenow_connector.py +693 -0
- icdev/tools/knowledge/__init__.py +1 -0
- icdev/tools/knowledge/knowledge_ingest.py +293 -0
- icdev/tools/knowledge/pattern_detector.py +693 -0
- icdev/tools/knowledge/recommendation_engine.py +461 -0
- icdev/tools/knowledge/self_heal_analyzer.py +504 -0
- icdev/tools/llm/__init__.py +72 -0
- icdev/tools/llm/anthropic_provider.py +170 -0
- icdev/tools/llm/azure_openai_provider.py +338 -0
- icdev/tools/llm/bedrock_provider.py +315 -0
- icdev/tools/llm/embedding_provider.py +438 -0
- icdev/tools/llm/gemini_provider.py +381 -0
- icdev/tools/llm/ibm_watsonx_provider.py +232 -0
- icdev/tools/llm/oci_genai_provider.py +462 -0
- icdev/tools/llm/ollama_provider.py +340 -0
- icdev/tools/llm/openai_provider.py +225 -0
- icdev/tools/llm/provider.py +355 -0
- icdev/tools/llm/provider_sdk.py +175 -0
- icdev/tools/llm/router.py +780 -0
- icdev/tools/llm/vertex_ai_provider.py +374 -0
- icdev/tools/maintenance/__init__.py +2 -0
- icdev/tools/maintenance/dependency_scanner.py +1030 -0
- icdev/tools/maintenance/maintenance_auditor.py +815 -0
- icdev/tools/maintenance/remediation_engine.py +966 -0
- icdev/tools/maintenance/vulnerability_checker.py +987 -0
- icdev/tools/mbse/__init__.py +3 -0
- icdev/tools/mbse/des_assessor.py +1186 -0
- icdev/tools/mbse/des_report_generator.py +800 -0
- icdev/tools/mbse/diagram_extractor.py +811 -0
- icdev/tools/mbse/digital_thread.py +1665 -0
- icdev/tools/mbse/model_code_generator.py +1122 -0
- icdev/tools/mbse/model_control_mapper.py +420 -0
- icdev/tools/mbse/pi_model_tracker.py +1093 -0
- icdev/tools/mbse/reqif_parser.py +1483 -0
- icdev/tools/mbse/sync_engine.py +1805 -0
- icdev/tools/mbse/xmi_parser.py +1573 -0
- icdev/tools/mcp/__init__.py +1 -0
- icdev/tools/mcp/base_server.py +535 -0
- icdev/tools/mcp/builder_server.py +725 -0
- icdev/tools/mcp/compliance_server.py +1407 -0
- icdev/tools/mcp/context_indexer.py +199 -0
- icdev/tools/mcp/context_server.py +305 -0
- icdev/tools/mcp/core_server.py +679 -0
- icdev/tools/mcp/devsecops_server.py +432 -0
- icdev/tools/mcp/gap_handlers.py +1079 -0
- icdev/tools/mcp/gateway_server.py +339 -0
- icdev/tools/mcp/generate_registry.py +623 -0
- icdev/tools/mcp/infra_server.py +264 -0
- icdev/tools/mcp/innovation_server.py +316 -0
- icdev/tools/mcp/integration_server.py +527 -0
- icdev/tools/mcp/knowledge_server.py +429 -0
- icdev/tools/mcp/maintenance_server.py +248 -0
- icdev/tools/mcp/marketplace_server.py +499 -0
- icdev/tools/mcp/mbse_server.py +398 -0
- icdev/tools/mcp/modernization_server.py +496 -0
- icdev/tools/mcp/observability_server.py +354 -0
- icdev/tools/mcp/requirements_server.py +415 -0
- icdev/tools/mcp/simulation_server.py +468 -0
- icdev/tools/mcp/standalone/__init__.py +2 -0
- icdev/tools/mcp/standalone/builder.py +59 -0
- icdev/tools/mcp/standalone/compliance.py +59 -0
- icdev/tools/mcp/standalone/core.py +59 -0
- icdev/tools/mcp/standalone/knowledge.py +59 -0
- icdev/tools/mcp/standalone/maintenance.py +59 -0
- icdev/tools/mcp/supply_chain_server.py +476 -0
- icdev/tools/mcp/tool_registry.py +2008 -0
- icdev/tools/mcp/unified_server.py +158 -0
- icdev/tools/memory/__init__.py +2 -0
- icdev/tools/memory/auto_capture.py +347 -0
- icdev/tools/memory/embed_memory.py +158 -0
- icdev/tools/memory/history_compressor.py +334 -0
- icdev/tools/memory/hybrid_search.py +236 -0
- icdev/tools/memory/maintenance_cron.py +289 -0
- icdev/tools/memory/memory_consolidation.py +444 -0
- icdev/tools/memory/memory_db.py +133 -0
- icdev/tools/memory/memory_read.py +102 -0
- icdev/tools/memory/memory_write.py +222 -0
- icdev/tools/memory/semantic_search.py +139 -0
- icdev/tools/memory/time_decay.py +435 -0
- icdev/tools/modernization/__init__.py +3 -0
- icdev/tools/modernization/architecture_extractor.py +734 -0
- icdev/tools/modernization/compliance_bridge.py +1499 -0
- icdev/tools/modernization/db_migration_planner.py +1385 -0
- icdev/tools/modernization/doc_generator.py +1428 -0
- icdev/tools/modernization/framework_migrator.py +1525 -0
- icdev/tools/modernization/legacy_analyzer.py +1948 -0
- icdev/tools/modernization/migration_code_generator.py +1639 -0
- icdev/tools/modernization/migration_report_generator.py +1653 -0
- icdev/tools/modernization/migration_tracker.py +1726 -0
- icdev/tools/modernization/monolith_decomposer.py +1508 -0
- icdev/tools/modernization/seven_r_assessor.py +1658 -0
- icdev/tools/modernization/strangler_fig_manager.py +1705 -0
- icdev/tools/modernization/ui_analyzer.py +771 -0
- icdev/tools/modernization/version_migrator.py +1392 -0
- icdev/tools/monitor/__init__.py +1 -0
- icdev/tools/monitor/alert_correlator.py +495 -0
- icdev/tools/monitor/auto_resolver.py +612 -0
- icdev/tools/monitor/health_checker.py +509 -0
- icdev/tools/monitor/heartbeat_daemon.py +792 -0
- icdev/tools/monitor/log_analyzer.py +516 -0
- icdev/tools/monitor/metric_collector.py +496 -0
- icdev/tools/mosa/__init__.py +10 -0
- icdev/tools/mosa/icd_generator.py +370 -0
- icdev/tools/mosa/modular_design_analyzer.py +683 -0
- icdev/tools/mosa/mosa_code_enforcer.py +349 -0
- icdev/tools/mosa/tsp_generator.py +265 -0
- icdev/tools/observability/__init__.py +100 -0
- icdev/tools/observability/genai_attributes.py +88 -0
- icdev/tools/observability/instrumentation.py +140 -0
- icdev/tools/observability/mlflow_exporter.py +194 -0
- icdev/tools/observability/otel_tracer.py +168 -0
- icdev/tools/observability/provenance/__init__.py +3 -0
- icdev/tools/observability/provenance/prov_recorder.py +324 -0
- icdev/tools/observability/shap/__init__.py +3 -0
- icdev/tools/observability/shap/agent_shap.py +275 -0
- icdev/tools/observability/sqlite_tracer.py +361 -0
- icdev/tools/observability/trace_context.py +205 -0
- icdev/tools/observability/tracer.py +230 -0
- icdev/tools/orchestration/__init__.py +2 -0
- icdev/tools/orchestration/workflow_composer.py +361 -0
- icdev/tools/project/__init__.py +1 -0
- icdev/tools/project/manifest_loader.py +418 -0
- icdev/tools/project/project_create.py +350 -0
- icdev/tools/project/project_list.py +174 -0
- icdev/tools/project/project_scaffold.py +1715 -0
- icdev/tools/project/project_status.py +479 -0
- icdev/tools/project/session_context_builder.py +757 -0
- icdev/tools/project/validate_manifest.py +55 -0
- icdev/tools/registry/__init__.py +10 -0
- icdev/tools/registry/absorption_engine.py +832 -0
- icdev/tools/registry/capability_evaluator.py +668 -0
- icdev/tools/registry/child_registry.py +617 -0
- icdev/tools/registry/cross_pollinator.py +1065 -0
- icdev/tools/registry/genome_manager.py +671 -0
- icdev/tools/registry/learning_collector.py +912 -0
- icdev/tools/registry/propagation_manager.py +942 -0
- icdev/tools/registry/staging_manager.py +742 -0
- icdev/tools/registry/telemetry_collector.py +423 -0
- icdev/tools/requirements/__init__.py +1 -0
- icdev/tools/requirements/ai_governance_scorer.py +208 -0
- icdev/tools/requirements/boundary_analyzer.py +1293 -0
- icdev/tools/requirements/clarification_engine.py +618 -0
- icdev/tools/requirements/complexity_scorer.py +387 -0
- icdev/tools/requirements/consistency_analyzer.py +803 -0
- icdev/tools/requirements/constitution_manager.py +605 -0
- icdev/tools/requirements/decomposition_engine.py +778 -0
- icdev/tools/requirements/document_extractor.py +1016 -0
- icdev/tools/requirements/elicitation_techniques.py +519 -0
- icdev/tools/requirements/gap_detector.py +271 -0
- icdev/tools/requirements/intake_engine.py +2188 -0
- icdev/tools/requirements/prd_generator.py +847 -0
- icdev/tools/requirements/prd_validator.py +595 -0
- icdev/tools/requirements/readiness_scorer.py +313 -0
- icdev/tools/requirements/spec_organizer.py +1029 -0
- icdev/tools/requirements/spec_quality_checker.py +1097 -0
- icdev/tools/requirements/traceability_builder.py +579 -0
- icdev/tools/resilience/__init__.py +34 -0
- icdev/tools/resilience/circuit_breaker.py +340 -0
- icdev/tools/resilience/correlation.py +150 -0
- icdev/tools/resilience/errors.py +81 -0
- icdev/tools/resilience/retry.py +95 -0
- icdev/tools/schemas/__init__.py +27 -0
- icdev/tools/schemas/chat.py +61 -0
- icdev/tools/schemas/compliance.py +56 -0
- icdev/tools/schemas/core.py +85 -0
- icdev/tools/schemas/innovation.py +37 -0
- icdev/tools/schemas/validation.py +109 -0
- icdev/tools/sdk/__init__.py +3 -0
- icdev/tools/sdk/icdev_client.py +218 -0
- icdev/tools/security/__init__.py +1 -0
- icdev/tools/security/agent_output_validator.py +330 -0
- icdev/tools/security/agent_trust_scorer.py +466 -0
- icdev/tools/security/ai_bom_generator.py +725 -0
- icdev/tools/security/ai_telemetry_logger.py +469 -0
- icdev/tools/security/atlas_red_team.py +543 -0
- icdev/tools/security/code_pattern_scanner.py +378 -0
- icdev/tools/security/confabulation_detector.py +271 -0
- icdev/tools/security/container_scanner.py +491 -0
- icdev/tools/security/dependency_auditor.py +944 -0
- icdev/tools/security/endpoint_security_scanner.py +579 -0
- icdev/tools/security/mcp_tool_authorizer.py +243 -0
- icdev/tools/security/prompt_injection_detector.py +737 -0
- icdev/tools/security/sast_runner.py +948 -0
- icdev/tools/security/secret_detector.py +378 -0
- icdev/tools/security/tool_chain_validator.py +357 -0
- icdev/tools/security/vuln_scanner.py +539 -0
- icdev/tools/simulation/__init__.py +2 -0
- icdev/tools/simulation/coa_generator.py +1552 -0
- icdev/tools/simulation/monte_carlo.py +758 -0
- icdev/tools/simulation/scenario_manager.py +1073 -0
- icdev/tools/simulation/simulation_engine.py +1104 -0
- icdev/tools/supply_chain/__init__.py +2 -0
- icdev/tools/supply_chain/cve_triager.py +705 -0
- icdev/tools/supply_chain/dependency_graph.py +645 -0
- icdev/tools/supply_chain/isa_manager.py +540 -0
- icdev/tools/supply_chain/scrm_assessor.py +546 -0
- icdev/tools/testing/__init__.py +2 -0
- icdev/tools/testing/acceptance_validator.py +411 -0
- icdev/tools/testing/claude_dir_validator.py +831 -0
- icdev/tools/testing/data_types.py +199 -0
- icdev/tools/testing/e2e_runner.py +715 -0
- icdev/tools/testing/fuzz_cli.py +306 -0
- icdev/tools/testing/health_check.py +483 -0
- icdev/tools/testing/platform_check.py +143 -0
- icdev/tools/testing/production_audit.py +1862 -0
- icdev/tools/testing/production_remediate.py +804 -0
- icdev/tools/testing/screenshot_validator.py +539 -0
- icdev/tools/testing/smoke_test.py +283 -0
- icdev/tools/testing/test_agent_models.py +117 -0
- icdev/tools/testing/test_orchestrator.py +957 -0
- icdev/tools/testing/utils.py +229 -0
- icdev/tools/translation/__init__.py +17 -0
- icdev/tools/translation/code_translator.py +550 -0
- icdev/tools/translation/dependency_mapper.py +277 -0
- icdev/tools/translation/feature_map.py +395 -0
- icdev/tools/translation/project_assembler.py +439 -0
- icdev/tools/translation/source_extractor.py +609 -0
- icdev/tools/translation/test_translator.py +333 -0
- icdev/tools/translation/translation_manager.py +582 -0
- icdev/tools/translation/translation_validator.py +662 -0
- icdev/tools/translation/type_checker.py +371 -0
- icdev-1.0.0.dist-info/METADATA +868 -0
- icdev-1.0.0.dist-info/RECORD +1105 -0
- icdev-1.0.0.dist-info/WHEEL +5 -0
- icdev-1.0.0.dist-info/entry_points.txt +9 -0
- icdev-1.0.0.dist-info/licenses/LICENSE +254 -0
- icdev-1.0.0.dist-info/licenses/NOTICE +268 -0
- icdev-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,2047 @@
|
|
|
1
|
+
/* =========================================================================
|
|
2
|
+
ICDEV Dashboard - UX Enhancement Stylesheet
|
|
3
|
+
Complements style.css (dark government theme)
|
|
4
|
+
========================================================================= */
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
/* =========================================================================
|
|
8
|
+
1. Glossary Tooltips
|
|
9
|
+
========================================================================= */
|
|
10
|
+
|
|
11
|
+
/* Glossary tooltip trigger styling */
|
|
12
|
+
[data-glossary] {
|
|
13
|
+
/* Dotted underline to indicate interactive term */
|
|
14
|
+
border-bottom: 1px dotted var(--accent-blue-light, #6db3f8);
|
|
15
|
+
cursor: help;
|
|
16
|
+
position: relative;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* The tooltip itself - positioned absolutely */
|
|
20
|
+
.glossary-tooltip {
|
|
21
|
+
position: absolute;
|
|
22
|
+
bottom: calc(100% + 8px);
|
|
23
|
+
left: 50%;
|
|
24
|
+
transform: translateX(-50%);
|
|
25
|
+
background: #1a1a2e;
|
|
26
|
+
border: 1px solid var(--accent-blue, #4a90d9);
|
|
27
|
+
border-radius: 6px;
|
|
28
|
+
padding: 10px 14px;
|
|
29
|
+
font-size: 0.8rem;
|
|
30
|
+
line-height: 1.5;
|
|
31
|
+
color: var(--text-primary, #e0e0e0);
|
|
32
|
+
white-space: normal;
|
|
33
|
+
width: max-content;
|
|
34
|
+
max-width: 320px;
|
|
35
|
+
box-shadow: 0 4px 16px rgba(0,0,0,0.5);
|
|
36
|
+
z-index: 5000;
|
|
37
|
+
pointer-events: none;
|
|
38
|
+
animation: tooltipFadeIn 0.15s ease;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* Arrow on tooltip */
|
|
42
|
+
.glossary-tooltip::after {
|
|
43
|
+
content: "";
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: 100%;
|
|
46
|
+
left: 50%;
|
|
47
|
+
transform: translateX(-50%);
|
|
48
|
+
border: 6px solid transparent;
|
|
49
|
+
border-top-color: var(--accent-blue, #4a90d9);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Info icon in tooltip */
|
|
53
|
+
.glossary-tooltip .tooltip-icon {
|
|
54
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
55
|
+
margin-right: 6px;
|
|
56
|
+
font-weight: 700;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@keyframes tooltipFadeIn {
|
|
60
|
+
from { opacity: 0; transform: translateX(-50%) translateY(4px); }
|
|
61
|
+
to { opacity: 1; transform: translateX(-50%) translateY(0); }
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
/* =========================================================================
|
|
66
|
+
1b. Buttons — Base button styles used across dashboard
|
|
67
|
+
========================================================================= */
|
|
68
|
+
|
|
69
|
+
.btn {
|
|
70
|
+
display: inline-flex;
|
|
71
|
+
align-items: center;
|
|
72
|
+
gap: 6px;
|
|
73
|
+
padding: 10px 20px;
|
|
74
|
+
font-size: 0.9rem;
|
|
75
|
+
font-weight: 600;
|
|
76
|
+
border: 2px solid transparent;
|
|
77
|
+
border-radius: var(--radius-md, 6px);
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
text-decoration: none;
|
|
80
|
+
transition: all 0.2s;
|
|
81
|
+
font-family: inherit;
|
|
82
|
+
line-height: 1.4;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.btn:hover {
|
|
86
|
+
transform: translateY(-1px);
|
|
87
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.btn:active {
|
|
91
|
+
transform: translateY(0);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.btn:disabled {
|
|
95
|
+
opacity: 0.4;
|
|
96
|
+
cursor: not-allowed;
|
|
97
|
+
transform: none;
|
|
98
|
+
box-shadow: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.btn-primary {
|
|
102
|
+
background: var(--accent-blue, #4a90d9);
|
|
103
|
+
color: #fff;
|
|
104
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.btn-primary:hover:not(:disabled) {
|
|
108
|
+
background: #5a9fe8;
|
|
109
|
+
border-color: #5a9fe8;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.btn-secondary {
|
|
113
|
+
background: transparent;
|
|
114
|
+
color: var(--text-secondary, #a0a0b8);
|
|
115
|
+
border-color: var(--border-color, #2a2a40);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.btn-secondary:hover:not(:disabled) {
|
|
119
|
+
color: var(--text-primary, #e0e0e0);
|
|
120
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
121
|
+
background: rgba(74, 144, 217, 0.1);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.btn-success {
|
|
125
|
+
background: var(--status-green, #28a745);
|
|
126
|
+
color: #fff;
|
|
127
|
+
border-color: var(--status-green, #28a745);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.btn-success:hover:not(:disabled) {
|
|
131
|
+
background: #34b853;
|
|
132
|
+
border-color: #34b853;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.btn-danger {
|
|
136
|
+
background: var(--status-red, #dc3545);
|
|
137
|
+
color: #fff;
|
|
138
|
+
border-color: var(--status-red, #dc3545);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.btn-danger:hover:not(:disabled) {
|
|
142
|
+
background: #e04555;
|
|
143
|
+
border-color: #e04555;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.btn-sm {
|
|
147
|
+
padding: 6px 12px;
|
|
148
|
+
font-size: 0.8rem;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.btn-lg {
|
|
152
|
+
padding: 14px 28px;
|
|
153
|
+
font-size: 1rem;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
/* =========================================================================
|
|
158
|
+
2. Progress Pipeline
|
|
159
|
+
========================================================================= */
|
|
160
|
+
|
|
161
|
+
.progress-pipeline {
|
|
162
|
+
display: flex;
|
|
163
|
+
align-items: center;
|
|
164
|
+
gap: 0;
|
|
165
|
+
margin: 20px 0;
|
|
166
|
+
overflow-x: auto;
|
|
167
|
+
padding: 16px 0;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.pipeline-step {
|
|
171
|
+
display: flex;
|
|
172
|
+
flex-direction: column;
|
|
173
|
+
align-items: center;
|
|
174
|
+
min-width: 120px;
|
|
175
|
+
position: relative;
|
|
176
|
+
flex: 1;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.pipeline-dot {
|
|
180
|
+
width: 32px;
|
|
181
|
+
height: 32px;
|
|
182
|
+
border-radius: 50%;
|
|
183
|
+
display: flex;
|
|
184
|
+
align-items: center;
|
|
185
|
+
justify-content: center;
|
|
186
|
+
font-size: 14px;
|
|
187
|
+
font-weight: 700;
|
|
188
|
+
z-index: 1;
|
|
189
|
+
border: 3px solid;
|
|
190
|
+
transition: all 0.3s;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* Connector line between dots */
|
|
194
|
+
.pipeline-step:not(:last-child)::after {
|
|
195
|
+
content: "";
|
|
196
|
+
position: absolute;
|
|
197
|
+
top: 16px;
|
|
198
|
+
left: calc(50% + 16px);
|
|
199
|
+
right: calc(-50% + 16px);
|
|
200
|
+
height: 3px;
|
|
201
|
+
z-index: 0;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/* Status: completed */
|
|
205
|
+
.pipeline-step.completed .pipeline-dot {
|
|
206
|
+
background: var(--status-green, #28a745);
|
|
207
|
+
border-color: var(--status-green, #28a745);
|
|
208
|
+
color: white;
|
|
209
|
+
}
|
|
210
|
+
.pipeline-step.completed::after {
|
|
211
|
+
background: var(--status-green, #28a745);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* Status: active */
|
|
215
|
+
.pipeline-step.active .pipeline-dot {
|
|
216
|
+
background: var(--accent-blue, #4a90d9);
|
|
217
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
218
|
+
color: white;
|
|
219
|
+
box-shadow: 0 0 12px rgba(74, 144, 217, 0.5);
|
|
220
|
+
animation: pipelinePulse 2s ease-in-out infinite;
|
|
221
|
+
}
|
|
222
|
+
.pipeline-step.active::after {
|
|
223
|
+
background: var(--border-color, #2a2a40);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* Status: pending */
|
|
227
|
+
.pipeline-step.pending .pipeline-dot {
|
|
228
|
+
background: transparent;
|
|
229
|
+
border-color: var(--border-light, #3a3a55);
|
|
230
|
+
color: var(--text-muted, #6c6c80);
|
|
231
|
+
}
|
|
232
|
+
.pipeline-step.pending::after {
|
|
233
|
+
background: var(--border-color, #2a2a40);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/* Status: blocked */
|
|
237
|
+
.pipeline-step.blocked .pipeline-dot {
|
|
238
|
+
background: var(--status-red, #dc3545);
|
|
239
|
+
border-color: var(--status-red, #dc3545);
|
|
240
|
+
color: white;
|
|
241
|
+
}
|
|
242
|
+
.pipeline-step.blocked::after {
|
|
243
|
+
background: repeating-linear-gradient(
|
|
244
|
+
90deg,
|
|
245
|
+
var(--status-red, #dc3545) 0,
|
|
246
|
+
var(--status-red, #dc3545) 4px,
|
|
247
|
+
transparent 4px,
|
|
248
|
+
transparent 8px
|
|
249
|
+
);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* Status: skipped */
|
|
253
|
+
.pipeline-step.skipped .pipeline-dot {
|
|
254
|
+
background: transparent;
|
|
255
|
+
border-color: var(--text-muted, #6c6c80);
|
|
256
|
+
color: var(--text-muted, #6c6c80);
|
|
257
|
+
border-style: dashed;
|
|
258
|
+
}
|
|
259
|
+
.pipeline-step.skipped::after {
|
|
260
|
+
background: var(--border-color, #2a2a40);
|
|
261
|
+
border-top: 2px dashed var(--text-muted, #6c6c80);
|
|
262
|
+
height: 0;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.pipeline-label {
|
|
266
|
+
margin-top: 10px;
|
|
267
|
+
font-size: 0.8rem;
|
|
268
|
+
font-weight: 600;
|
|
269
|
+
color: var(--text-primary, #e0e0e0);
|
|
270
|
+
text-align: center;
|
|
271
|
+
max-width: 120px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.pipeline-detail {
|
|
275
|
+
font-size: 0.7rem;
|
|
276
|
+
color: var(--text-secondary, #a0a0b8);
|
|
277
|
+
text-align: center;
|
|
278
|
+
margin-top: 4px;
|
|
279
|
+
max-width: 140px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
@keyframes pipelinePulse {
|
|
283
|
+
0%, 100% { box-shadow: 0 0 8px rgba(74, 144, 217, 0.3); }
|
|
284
|
+
50% { box-shadow: 0 0 16px rgba(74, 144, 217, 0.6); }
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
/* =========================================================================
|
|
289
|
+
3. Getting Started Wizard
|
|
290
|
+
========================================================================= */
|
|
291
|
+
|
|
292
|
+
.wizard-container {
|
|
293
|
+
max-width: 800px;
|
|
294
|
+
margin: 0 auto;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.wizard-step {
|
|
298
|
+
display: none;
|
|
299
|
+
}
|
|
300
|
+
.wizard-step.active {
|
|
301
|
+
display: block;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.wizard-question {
|
|
305
|
+
font-size: 1.3rem;
|
|
306
|
+
font-weight: 600;
|
|
307
|
+
color: var(--text-primary, #e0e0e0);
|
|
308
|
+
margin-bottom: 24px;
|
|
309
|
+
text-align: center;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.wizard-options {
|
|
313
|
+
display: grid;
|
|
314
|
+
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
315
|
+
gap: 16px;
|
|
316
|
+
margin-bottom: 32px;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.wizard-option {
|
|
320
|
+
background: var(--bg-card, #16213e);
|
|
321
|
+
border: 2px solid var(--border-color, #2a2a40);
|
|
322
|
+
border-radius: var(--radius-lg, 10px);
|
|
323
|
+
padding: 24px 20px;
|
|
324
|
+
cursor: pointer;
|
|
325
|
+
text-align: center;
|
|
326
|
+
transition: all 0.2s;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.wizard-option:hover {
|
|
330
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
331
|
+
transform: translateY(-3px);
|
|
332
|
+
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.wizard-option.selected {
|
|
336
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
337
|
+
background: rgba(74, 144, 217, 0.1);
|
|
338
|
+
box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.2);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.wizard-option-icon {
|
|
342
|
+
font-size: 2rem;
|
|
343
|
+
margin-bottom: 12px;
|
|
344
|
+
display: block;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.wizard-option-title {
|
|
348
|
+
font-size: 1rem;
|
|
349
|
+
font-weight: 600;
|
|
350
|
+
color: var(--text-primary, #e0e0e0);
|
|
351
|
+
margin-bottom: 6px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.wizard-option-desc {
|
|
355
|
+
font-size: 0.8rem;
|
|
356
|
+
color: var(--text-secondary, #a0a0b8);
|
|
357
|
+
line-height: 1.4;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.wizard-nav {
|
|
361
|
+
display: flex;
|
|
362
|
+
justify-content: space-between;
|
|
363
|
+
align-items: center;
|
|
364
|
+
margin-top: 24px;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.wizard-progress {
|
|
368
|
+
display: flex;
|
|
369
|
+
justify-content: center;
|
|
370
|
+
gap: 8px;
|
|
371
|
+
margin-bottom: 32px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.wizard-progress-dot {
|
|
375
|
+
width: 10px;
|
|
376
|
+
height: 10px;
|
|
377
|
+
border-radius: 50%;
|
|
378
|
+
background: var(--border-color, #2a2a40);
|
|
379
|
+
transition: background 0.3s;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.wizard-progress-dot.active {
|
|
383
|
+
background: var(--accent-blue, #4a90d9);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.wizard-progress-dot.completed {
|
|
387
|
+
background: var(--status-green, #28a745);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
/* Wizard result card */
|
|
391
|
+
.wizard-result {
|
|
392
|
+
background: var(--bg-card, #16213e);
|
|
393
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
394
|
+
border-radius: var(--radius-lg, 10px);
|
|
395
|
+
padding: 32px;
|
|
396
|
+
text-align: center;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.wizard-result h2 {
|
|
400
|
+
font-size: 1.4rem;
|
|
401
|
+
margin-bottom: 16px;
|
|
402
|
+
color: var(--text-primary, #e0e0e0);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.wizard-result .recommended-path {
|
|
406
|
+
display: inline-block;
|
|
407
|
+
background: rgba(74, 144, 217, 0.15);
|
|
408
|
+
border: 1px solid var(--accent-blue, #4a90d9);
|
|
409
|
+
border-radius: 8px;
|
|
410
|
+
padding: 16px 24px;
|
|
411
|
+
margin: 16px 0;
|
|
412
|
+
font-size: 1.1rem;
|
|
413
|
+
font-weight: 600;
|
|
414
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.wizard-result .path-steps {
|
|
418
|
+
text-align: left;
|
|
419
|
+
margin: 20px auto;
|
|
420
|
+
max-width: 500px;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.wizard-result .path-step {
|
|
424
|
+
display: flex;
|
|
425
|
+
align-items: flex-start;
|
|
426
|
+
gap: 12px;
|
|
427
|
+
padding: 10px 0;
|
|
428
|
+
border-bottom: 1px solid var(--border-color, #2a2a40);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.wizard-result .path-step:last-child {
|
|
432
|
+
border-bottom: none;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.wizard-result .step-number {
|
|
436
|
+
flex: 0 0 28px;
|
|
437
|
+
height: 28px;
|
|
438
|
+
background: var(--accent-blue, #4a90d9);
|
|
439
|
+
color: white;
|
|
440
|
+
border-radius: 50%;
|
|
441
|
+
display: flex;
|
|
442
|
+
align-items: center;
|
|
443
|
+
justify-content: center;
|
|
444
|
+
font-size: 0.8rem;
|
|
445
|
+
font-weight: 700;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.wizard-result .step-text {
|
|
449
|
+
flex: 1;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.wizard-result .step-text strong {
|
|
453
|
+
display: block;
|
|
454
|
+
color: var(--text-primary, #e0e0e0);
|
|
455
|
+
margin-bottom: 2px;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.wizard-result .step-text span {
|
|
459
|
+
font-size: 0.8rem;
|
|
460
|
+
color: var(--text-secondary, #a0a0b8);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
/* =========================================================================
|
|
465
|
+
4. Quick Path Cards
|
|
466
|
+
========================================================================= */
|
|
467
|
+
|
|
468
|
+
.quick-path-grid {
|
|
469
|
+
display: grid;
|
|
470
|
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
471
|
+
gap: 20px;
|
|
472
|
+
margin: 20px 0;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.quick-path-card {
|
|
476
|
+
background: var(--bg-card, #16213e);
|
|
477
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
478
|
+
border-radius: var(--radius-lg, 10px);
|
|
479
|
+
padding: 24px;
|
|
480
|
+
transition: all 0.2s;
|
|
481
|
+
display: flex;
|
|
482
|
+
flex-direction: column;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.quick-path-card:hover {
|
|
486
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
487
|
+
transform: translateY(-2px);
|
|
488
|
+
box-shadow: var(--shadow-lg, 0 4px 16px rgba(0,0,0,0.4));
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.quick-path-icon {
|
|
492
|
+
font-size: 2rem;
|
|
493
|
+
margin-bottom: 12px;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.quick-path-title {
|
|
497
|
+
font-size: 1.1rem;
|
|
498
|
+
font-weight: 600;
|
|
499
|
+
color: var(--text-primary, #e0e0e0);
|
|
500
|
+
margin-bottom: 8px;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.quick-path-desc {
|
|
504
|
+
font-size: 0.85rem;
|
|
505
|
+
color: var(--text-secondary, #a0a0b8);
|
|
506
|
+
line-height: 1.5;
|
|
507
|
+
margin-bottom: 16px;
|
|
508
|
+
flex: 1;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.quick-path-meta {
|
|
512
|
+
display: flex;
|
|
513
|
+
gap: 16px;
|
|
514
|
+
font-size: 0.75rem;
|
|
515
|
+
color: var(--text-muted, #6c6c80);
|
|
516
|
+
margin-bottom: 16px;
|
|
517
|
+
border-top: 1px solid var(--border-color, #2a2a40);
|
|
518
|
+
padding-top: 12px;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.quick-path-meta span {
|
|
522
|
+
display: flex;
|
|
523
|
+
align-items: center;
|
|
524
|
+
gap: 4px;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.quick-path-steps {
|
|
528
|
+
list-style: none;
|
|
529
|
+
padding: 0;
|
|
530
|
+
margin: 0 0 16px 0;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.quick-path-steps li {
|
|
534
|
+
display: flex;
|
|
535
|
+
align-items: center;
|
|
536
|
+
gap: 8px;
|
|
537
|
+
padding: 6px 0;
|
|
538
|
+
font-size: 0.8rem;
|
|
539
|
+
color: var(--text-secondary, #a0a0b8);
|
|
540
|
+
border-bottom: 1px solid rgba(255,255,255,0.03);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.quick-path-steps li:last-child {
|
|
544
|
+
border-bottom: none;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.quick-path-steps .step-icon {
|
|
548
|
+
color: var(--accent-blue, #4a90d9);
|
|
549
|
+
font-size: 0.7rem;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.quick-path-action {
|
|
553
|
+
margin-top: auto;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.quick-path-action .btn {
|
|
557
|
+
width: 100%;
|
|
558
|
+
justify-content: center;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
/* =========================================================================
|
|
563
|
+
5. Breadcrumbs
|
|
564
|
+
========================================================================= */
|
|
565
|
+
|
|
566
|
+
.breadcrumbs {
|
|
567
|
+
display: flex;
|
|
568
|
+
align-items: center;
|
|
569
|
+
gap: 8px;
|
|
570
|
+
margin-bottom: 16px;
|
|
571
|
+
font-size: 0.85rem;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.breadcrumbs a {
|
|
575
|
+
color: var(--text-secondary, #a0a0b8);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.breadcrumbs a:hover {
|
|
579
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.breadcrumbs .separator {
|
|
583
|
+
color: var(--text-muted, #6c6c80);
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.breadcrumbs .current {
|
|
587
|
+
color: var(--text-primary, #e0e0e0);
|
|
588
|
+
font-weight: 500;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
/* =========================================================================
|
|
593
|
+
6. Accessibility Enhancements
|
|
594
|
+
========================================================================= */
|
|
595
|
+
|
|
596
|
+
/* Focus visible outlines for keyboard navigation */
|
|
597
|
+
*:focus-visible {
|
|
598
|
+
outline: 2px solid var(--accent-blue, #4a90d9);
|
|
599
|
+
outline-offset: 2px;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/* Skip to main content link */
|
|
603
|
+
.skip-link {
|
|
604
|
+
position: absolute;
|
|
605
|
+
top: -40px;
|
|
606
|
+
left: 0;
|
|
607
|
+
background: var(--accent-blue, #4a90d9);
|
|
608
|
+
color: white;
|
|
609
|
+
padding: 8px 16px;
|
|
610
|
+
z-index: 9999;
|
|
611
|
+
font-weight: 600;
|
|
612
|
+
border-radius: 0 0 6px 0;
|
|
613
|
+
transition: top 0.2s;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.skip-link:focus {
|
|
617
|
+
top: 0;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
/* Badge icons (prepended by JS) */
|
|
621
|
+
.badge-icon {
|
|
622
|
+
margin-right: 3px;
|
|
623
|
+
font-size: 0.7em;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/* Ensure color isn't the only indicator */
|
|
627
|
+
.status-indicator {
|
|
628
|
+
display: inline-flex;
|
|
629
|
+
align-items: center;
|
|
630
|
+
gap: 6px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.status-indicator .status-text {
|
|
634
|
+
font-size: 0.75rem;
|
|
635
|
+
text-transform: uppercase;
|
|
636
|
+
font-weight: 600;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
/* High contrast mode improvements */
|
|
640
|
+
@media (prefers-contrast: high) {
|
|
641
|
+
.badge {
|
|
642
|
+
border-width: 2px;
|
|
643
|
+
}
|
|
644
|
+
.card {
|
|
645
|
+
border-width: 2px;
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/* Reduced motion */
|
|
650
|
+
@media (prefers-reduced-motion: reduce) {
|
|
651
|
+
* {
|
|
652
|
+
animation-duration: 0.01ms !important;
|
|
653
|
+
transition-duration: 0.01ms !important;
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
/* =========================================================================
|
|
659
|
+
7. Notification Toasts (for dashboard - portal already has toasts)
|
|
660
|
+
========================================================================= */
|
|
661
|
+
|
|
662
|
+
.notification-container {
|
|
663
|
+
position: fixed;
|
|
664
|
+
bottom: 24px;
|
|
665
|
+
right: 24px;
|
|
666
|
+
z-index: 5000;
|
|
667
|
+
display: flex;
|
|
668
|
+
flex-direction: column-reverse;
|
|
669
|
+
gap: 8px;
|
|
670
|
+
pointer-events: none;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.notification {
|
|
674
|
+
padding: 14px 20px;
|
|
675
|
+
border-radius: 8px;
|
|
676
|
+
font-size: 0.85rem;
|
|
677
|
+
font-weight: 500;
|
|
678
|
+
box-shadow: var(--shadow-lg, 0 4px 16px rgba(0,0,0,0.4));
|
|
679
|
+
animation: notifSlideIn 0.3s ease;
|
|
680
|
+
max-width: 400px;
|
|
681
|
+
pointer-events: all;
|
|
682
|
+
cursor: pointer;
|
|
683
|
+
display: flex;
|
|
684
|
+
align-items: center;
|
|
685
|
+
gap: 10px;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.notification .notif-icon {
|
|
689
|
+
font-size: 1.1rem;
|
|
690
|
+
flex-shrink: 0;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.notification-success {
|
|
694
|
+
background: var(--status-green, #28a745);
|
|
695
|
+
color: white;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.notification-error {
|
|
699
|
+
background: var(--status-red, #dc3545);
|
|
700
|
+
color: white;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.notification-warning {
|
|
704
|
+
background: #b8860b;
|
|
705
|
+
color: white;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.notification-info {
|
|
709
|
+
background: var(--accent-blue, #4a90d9);
|
|
710
|
+
color: white;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
@keyframes notifSlideIn {
|
|
714
|
+
from { opacity: 0; transform: translateX(40px); }
|
|
715
|
+
to { opacity: 1; transform: translateX(0); }
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
/* =========================================================================
|
|
720
|
+
8. Score Display
|
|
721
|
+
========================================================================= */
|
|
722
|
+
|
|
723
|
+
.score-display {
|
|
724
|
+
display: inline-flex;
|
|
725
|
+
align-items: center;
|
|
726
|
+
gap: 8px;
|
|
727
|
+
padding: 6px 14px;
|
|
728
|
+
border-radius: 20px;
|
|
729
|
+
font-weight: 600;
|
|
730
|
+
font-size: 0.9rem;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.score-display.score-good {
|
|
734
|
+
background: var(--status-green-bg, rgba(40, 167, 69, 0.15));
|
|
735
|
+
color: var(--status-green, #28a745);
|
|
736
|
+
border: 1px solid var(--status-green, #28a745);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.score-display.score-warning {
|
|
740
|
+
background: var(--status-yellow-bg, rgba(255, 193, 7, 0.15));
|
|
741
|
+
color: var(--status-yellow, #ffc107);
|
|
742
|
+
border: 1px solid var(--status-yellow, #ffc107);
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.score-display.score-poor {
|
|
746
|
+
background: var(--status-red-bg, rgba(220, 53, 69, 0.15));
|
|
747
|
+
color: var(--status-red, #dc3545);
|
|
748
|
+
border: 1px solid var(--status-red, #dc3545);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.score-icon {
|
|
752
|
+
font-size: 1rem;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
/* =========================================================================
|
|
757
|
+
9. Inline Help
|
|
758
|
+
========================================================================= */
|
|
759
|
+
|
|
760
|
+
.help-text {
|
|
761
|
+
display: block;
|
|
762
|
+
font-size: 0.8rem;
|
|
763
|
+
color: var(--text-muted, #6c6c80);
|
|
764
|
+
margin-top: 4px;
|
|
765
|
+
line-height: 1.4;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.help-text::before {
|
|
769
|
+
content: "\2139 ";
|
|
770
|
+
color: var(--accent-blue, #4a90d9);
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.field-with-help {
|
|
774
|
+
position: relative;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.help-icon {
|
|
778
|
+
display: inline-flex;
|
|
779
|
+
align-items: center;
|
|
780
|
+
justify-content: center;
|
|
781
|
+
width: 18px;
|
|
782
|
+
height: 18px;
|
|
783
|
+
border-radius: 50%;
|
|
784
|
+
background: var(--accent-blue, #4a90d9);
|
|
785
|
+
color: white;
|
|
786
|
+
font-size: 0.65rem;
|
|
787
|
+
font-weight: 700;
|
|
788
|
+
cursor: help;
|
|
789
|
+
margin-left: 6px;
|
|
790
|
+
vertical-align: middle;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
/* =========================================================================
|
|
795
|
+
10. Responsive Adjustments
|
|
796
|
+
========================================================================= */
|
|
797
|
+
|
|
798
|
+
@media (max-width: 768px) {
|
|
799
|
+
.progress-pipeline {
|
|
800
|
+
flex-direction: column;
|
|
801
|
+
align-items: stretch;
|
|
802
|
+
}
|
|
803
|
+
.pipeline-step {
|
|
804
|
+
flex-direction: row;
|
|
805
|
+
min-width: auto;
|
|
806
|
+
gap: 12px;
|
|
807
|
+
}
|
|
808
|
+
.pipeline-step:not(:last-child)::after {
|
|
809
|
+
display: none;
|
|
810
|
+
}
|
|
811
|
+
.pipeline-label,
|
|
812
|
+
.pipeline-detail {
|
|
813
|
+
text-align: left;
|
|
814
|
+
max-width: none;
|
|
815
|
+
}
|
|
816
|
+
.wizard-options {
|
|
817
|
+
grid-template-columns: 1fr;
|
|
818
|
+
}
|
|
819
|
+
.quick-path-grid {
|
|
820
|
+
grid-template-columns: 1fr;
|
|
821
|
+
}
|
|
822
|
+
.glossary-tooltip {
|
|
823
|
+
max-width: 260px;
|
|
824
|
+
}
|
|
825
|
+
.chat-layout { flex-direction: column; }
|
|
826
|
+
.chat-sidebar { border-left: none; border-top: 1px solid var(--border-color); max-height: 300px; }
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
/* =========================================================================
|
|
830
|
+
10. Chat UI — Requirements Intake Conversation
|
|
831
|
+
========================================================================= */
|
|
832
|
+
|
|
833
|
+
.chat-layout {
|
|
834
|
+
display: flex;
|
|
835
|
+
height: calc(100vh - 200px);
|
|
836
|
+
min-height: 400px;
|
|
837
|
+
gap: 0;
|
|
838
|
+
background: var(--bg-card);
|
|
839
|
+
border-radius: var(--radius-lg);
|
|
840
|
+
border: 1px solid var(--border-color);
|
|
841
|
+
overflow: hidden;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.chat-messages-pane {
|
|
845
|
+
flex: 7;
|
|
846
|
+
display: flex;
|
|
847
|
+
flex-direction: column;
|
|
848
|
+
position: relative;
|
|
849
|
+
min-width: 0;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.chat-messages {
|
|
853
|
+
flex: 1;
|
|
854
|
+
overflow-y: auto;
|
|
855
|
+
padding: 16px 20px;
|
|
856
|
+
display: flex;
|
|
857
|
+
flex-direction: column;
|
|
858
|
+
gap: 12px;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
/* Message bubbles */
|
|
862
|
+
.message-bubble {
|
|
863
|
+
max-width: 75%;
|
|
864
|
+
padding: 10px 14px;
|
|
865
|
+
border-radius: 12px;
|
|
866
|
+
line-height: 1.5;
|
|
867
|
+
word-wrap: break-word;
|
|
868
|
+
white-space: pre-wrap;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.message-role {
|
|
872
|
+
font-size: 0.7rem;
|
|
873
|
+
font-weight: 600;
|
|
874
|
+
text-transform: uppercase;
|
|
875
|
+
letter-spacing: 0.5px;
|
|
876
|
+
margin-bottom: 4px;
|
|
877
|
+
opacity: 0.7;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.message-content {
|
|
881
|
+
font-size: 0.9rem;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.message-analyst {
|
|
885
|
+
align-self: flex-start;
|
|
886
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
887
|
+
color: var(--text-primary);
|
|
888
|
+
border-bottom-left-radius: 4px;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.message-customer {
|
|
892
|
+
align-self: flex-end;
|
|
893
|
+
background: var(--accent-blue);
|
|
894
|
+
color: #fff;
|
|
895
|
+
border-bottom-right-radius: 4px;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.message-system {
|
|
899
|
+
align-self: center;
|
|
900
|
+
max-width: 90%;
|
|
901
|
+
background: transparent;
|
|
902
|
+
color: var(--text-secondary);
|
|
903
|
+
font-style: italic;
|
|
904
|
+
font-size: 0.8rem;
|
|
905
|
+
text-align: center;
|
|
906
|
+
padding: 6px 12px;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
/* Typing indicator */
|
|
910
|
+
.typing-dots span {
|
|
911
|
+
animation: typingBlink 1.4s infinite both;
|
|
912
|
+
font-size: 1.5rem;
|
|
913
|
+
line-height: 1;
|
|
914
|
+
}
|
|
915
|
+
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
|
|
916
|
+
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
|
|
917
|
+
|
|
918
|
+
@keyframes typingBlink {
|
|
919
|
+
0%, 80%, 100% { opacity: 0.2; }
|
|
920
|
+
40% { opacity: 1; }
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
/* Input area */
|
|
924
|
+
.chat-input-area {
|
|
925
|
+
display: flex;
|
|
926
|
+
align-items: flex-end;
|
|
927
|
+
gap: 8px;
|
|
928
|
+
padding: 12px 16px;
|
|
929
|
+
border-top: 1px solid var(--border-color);
|
|
930
|
+
background: var(--bg-card);
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.chat-input {
|
|
934
|
+
flex: 1;
|
|
935
|
+
resize: none;
|
|
936
|
+
border: 1px solid var(--border-color);
|
|
937
|
+
border-radius: var(--radius-md);
|
|
938
|
+
padding: 10px 12px;
|
|
939
|
+
font-size: 0.9rem;
|
|
940
|
+
font-family: inherit;
|
|
941
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
942
|
+
color: var(--text-primary);
|
|
943
|
+
min-height: 40px;
|
|
944
|
+
max-height: 120px;
|
|
945
|
+
overflow-y: auto;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.chat-input:focus {
|
|
949
|
+
outline: none;
|
|
950
|
+
border-color: var(--accent-blue);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.chat-upload-btn {
|
|
954
|
+
background: transparent;
|
|
955
|
+
border: 1px solid var(--border-color);
|
|
956
|
+
border-radius: var(--radius-md);
|
|
957
|
+
padding: 8px 12px;
|
|
958
|
+
font-size: 1.1rem;
|
|
959
|
+
cursor: pointer;
|
|
960
|
+
color: var(--text-secondary);
|
|
961
|
+
transition: color 0.2s, border-color 0.2s;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.chat-upload-btn:hover {
|
|
965
|
+
color: var(--accent-blue);
|
|
966
|
+
border-color: var(--accent-blue);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.chat-send-btn {
|
|
970
|
+
white-space: nowrap;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
/* Drop zone overlay */
|
|
974
|
+
.chat-upload-zone {
|
|
975
|
+
display: none;
|
|
976
|
+
position: absolute;
|
|
977
|
+
inset: 0;
|
|
978
|
+
background: rgba(74, 144, 217, 0.15);
|
|
979
|
+
border: 2px dashed var(--accent-blue);
|
|
980
|
+
border-radius: var(--radius-md);
|
|
981
|
+
z-index: 10;
|
|
982
|
+
align-items: center;
|
|
983
|
+
justify-content: center;
|
|
984
|
+
pointer-events: none;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.chat-upload-zone.active {
|
|
988
|
+
display: flex;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.chat-upload-zone-text {
|
|
992
|
+
text-align: center;
|
|
993
|
+
color: var(--accent-blue);
|
|
994
|
+
font-size: 1rem;
|
|
995
|
+
font-weight: 600;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/* Sidebar */
|
|
999
|
+
.chat-sidebar {
|
|
1000
|
+
flex: 3;
|
|
1001
|
+
border-left: 1px solid var(--border-color);
|
|
1002
|
+
padding: 20px 16px;
|
|
1003
|
+
overflow-y: auto;
|
|
1004
|
+
background: var(--bg-card);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.chat-sidebar h3 {
|
|
1008
|
+
margin: 0 0 12px;
|
|
1009
|
+
font-size: 1rem;
|
|
1010
|
+
color: var(--text-primary);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
/* Readiness gauge */
|
|
1014
|
+
.readiness-gauge-container {
|
|
1015
|
+
display: flex;
|
|
1016
|
+
justify-content: center;
|
|
1017
|
+
margin-bottom: 16px;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.readiness-gauge-svg {
|
|
1021
|
+
width: 120px;
|
|
1022
|
+
height: 120px;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
/* Readiness dimension bars */
|
|
1026
|
+
.readiness-dimensions {
|
|
1027
|
+
display: flex;
|
|
1028
|
+
flex-direction: column;
|
|
1029
|
+
gap: 8px;
|
|
1030
|
+
margin-bottom: 16px;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.readiness-dim {
|
|
1034
|
+
display: flex;
|
|
1035
|
+
align-items: center;
|
|
1036
|
+
gap: 8px;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.readiness-dim-label {
|
|
1040
|
+
font-size: 0.75rem;
|
|
1041
|
+
color: var(--text-secondary);
|
|
1042
|
+
width: 90px;
|
|
1043
|
+
flex-shrink: 0;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.readiness-bar {
|
|
1047
|
+
flex: 1;
|
|
1048
|
+
height: 8px;
|
|
1049
|
+
background: var(--border-color);
|
|
1050
|
+
border-radius: 4px;
|
|
1051
|
+
overflow: hidden;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.readiness-bar-fill {
|
|
1055
|
+
height: 100%;
|
|
1056
|
+
background: var(--accent-blue);
|
|
1057
|
+
border-radius: 4px;
|
|
1058
|
+
transition: width 0.5s ease;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.readiness-dim-value {
|
|
1062
|
+
font-size: 0.75rem;
|
|
1063
|
+
color: var(--text-secondary);
|
|
1064
|
+
width: 32px;
|
|
1065
|
+
text-align: right;
|
|
1066
|
+
flex-shrink: 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
/* Chat stats */
|
|
1070
|
+
.chat-stats {
|
|
1071
|
+
display: flex;
|
|
1072
|
+
flex-direction: column;
|
|
1073
|
+
gap: 6px;
|
|
1074
|
+
padding: 12px 0;
|
|
1075
|
+
border-top: 1px solid var(--border-color);
|
|
1076
|
+
border-bottom: 1px solid var(--border-color);
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.chat-stat {
|
|
1080
|
+
display: flex;
|
|
1081
|
+
justify-content: space-between;
|
|
1082
|
+
font-size: 0.85rem;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.chat-stat-label {
|
|
1086
|
+
color: var(--text-secondary);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.chat-stat-value {
|
|
1090
|
+
color: var(--text-primary);
|
|
1091
|
+
font-weight: 600;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
/* =========================================================================
|
|
1096
|
+
11. Chat Sidebar — Framework Tags
|
|
1097
|
+
========================================================================= */
|
|
1098
|
+
|
|
1099
|
+
.sidebar-section {
|
|
1100
|
+
margin-bottom: 16px;
|
|
1101
|
+
padding-bottom: 12px;
|
|
1102
|
+
border-bottom: 1px solid var(--border-color, #2a2a40);
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.sidebar-section h3 {
|
|
1106
|
+
margin: 0 0 8px;
|
|
1107
|
+
font-size: 0.9rem;
|
|
1108
|
+
color: var(--text-primary);
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.framework-tags {
|
|
1112
|
+
display: flex;
|
|
1113
|
+
flex-wrap: wrap;
|
|
1114
|
+
gap: 6px;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.framework-tag {
|
|
1118
|
+
display: inline-block;
|
|
1119
|
+
padding: 3px 10px;
|
|
1120
|
+
font-size: 0.7rem;
|
|
1121
|
+
font-weight: 600;
|
|
1122
|
+
border-radius: 12px;
|
|
1123
|
+
background: rgba(74, 144, 217, 0.15);
|
|
1124
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
1125
|
+
border: 1px solid rgba(74, 144, 217, 0.3);
|
|
1126
|
+
white-space: nowrap;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
/* =========================================================================
|
|
1131
|
+
12. Chat Sidebar — BDD Preview
|
|
1132
|
+
========================================================================= */
|
|
1133
|
+
|
|
1134
|
+
.bdd-preview-list {
|
|
1135
|
+
display: flex;
|
|
1136
|
+
flex-direction: column;
|
|
1137
|
+
gap: 10px;
|
|
1138
|
+
max-height: 300px;
|
|
1139
|
+
overflow-y: auto;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.bdd-preview-item {
|
|
1143
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1144
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1145
|
+
border-radius: var(--radius-md, 6px);
|
|
1146
|
+
overflow: hidden;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.bdd-preview-label {
|
|
1150
|
+
padding: 6px 10px;
|
|
1151
|
+
font-size: 0.72rem;
|
|
1152
|
+
font-weight: 600;
|
|
1153
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1154
|
+
background: rgba(255,255,255,0.03);
|
|
1155
|
+
border-bottom: 1px solid var(--border-color, #2a2a40);
|
|
1156
|
+
white-space: nowrap;
|
|
1157
|
+
overflow: hidden;
|
|
1158
|
+
text-overflow: ellipsis;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.bdd-preview-block {
|
|
1162
|
+
margin: 0;
|
|
1163
|
+
padding: 8px 10px;
|
|
1164
|
+
font-family: "Fira Code", "JetBrains Mono", "SF Mono", Consolas, monospace;
|
|
1165
|
+
font-size: 0.68rem;
|
|
1166
|
+
line-height: 1.5;
|
|
1167
|
+
color: var(--status-green, #28a745);
|
|
1168
|
+
white-space: pre-wrap;
|
|
1169
|
+
word-wrap: break-word;
|
|
1170
|
+
overflow-x: auto;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
/* =========================================================================
|
|
1175
|
+
13. Chat — Post-Export Action Panel
|
|
1176
|
+
========================================================================= */
|
|
1177
|
+
|
|
1178
|
+
.post-export-actions {
|
|
1179
|
+
margin-top: 16px;
|
|
1180
|
+
padding-top: 16px;
|
|
1181
|
+
border-top: 1px solid var(--border-color, #2a2a40);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.post-export-actions h4 {
|
|
1185
|
+
margin: 0 0 12px;
|
|
1186
|
+
font-size: 0.9rem;
|
|
1187
|
+
color: var(--text-primary);
|
|
1188
|
+
text-align: center;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
/* Copyable command blocks in system messages */
|
|
1193
|
+
.cmd-copy {
|
|
1194
|
+
display: inline-block;
|
|
1195
|
+
background: var(--bg-secondary, #1a1f2e);
|
|
1196
|
+
color: var(--accent-blue, #4dabf7);
|
|
1197
|
+
padding: 4px 10px;
|
|
1198
|
+
border-radius: 4px;
|
|
1199
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
1200
|
+
font-size: 0.9em;
|
|
1201
|
+
cursor: pointer;
|
|
1202
|
+
border: 1px solid var(--border-color, #2d3348);
|
|
1203
|
+
user-select: all;
|
|
1204
|
+
}
|
|
1205
|
+
.cmd-copy:hover {
|
|
1206
|
+
background: var(--bg-hover, #252a3a);
|
|
1207
|
+
border-color: var(--accent-blue, #4dabf7);
|
|
1208
|
+
}
|
|
1209
|
+
.cmd-copy:active {
|
|
1210
|
+
background: var(--accent-blue, #4dabf7);
|
|
1211
|
+
color: var(--bg-primary, #0d1117);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
/* =========================================================================
|
|
1215
|
+
14. Wizard — Framework Checkboxes (Step 4)
|
|
1216
|
+
========================================================================= */
|
|
1217
|
+
|
|
1218
|
+
.wizard-framework-grid {
|
|
1219
|
+
display: grid;
|
|
1220
|
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
1221
|
+
gap: 10px;
|
|
1222
|
+
margin-bottom: 24px;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.wizard-framework-item {
|
|
1226
|
+
display: flex;
|
|
1227
|
+
align-items: flex-start;
|
|
1228
|
+
gap: 8px;
|
|
1229
|
+
padding: 10px 12px;
|
|
1230
|
+
background: var(--bg-card, #16213e);
|
|
1231
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1232
|
+
border-radius: var(--radius-md, 6px);
|
|
1233
|
+
cursor: pointer;
|
|
1234
|
+
transition: border-color 0.2s, background 0.2s;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.wizard-framework-item:hover {
|
|
1238
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.wizard-framework-item.checked {
|
|
1242
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1243
|
+
background: rgba(74, 144, 217, 0.1);
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.wizard-framework-item input[type="checkbox"] {
|
|
1247
|
+
margin-top: 2px;
|
|
1248
|
+
accent-color: var(--accent-blue, #4a90d9);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.wizard-framework-item .fw-name {
|
|
1252
|
+
font-size: 0.85rem;
|
|
1253
|
+
font-weight: 600;
|
|
1254
|
+
color: var(--text-primary, #e0e0e0);
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.wizard-framework-item .fw-desc {
|
|
1258
|
+
font-size: 0.72rem;
|
|
1259
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1260
|
+
margin-top: 2px;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.wizard-auto-suggest-note {
|
|
1264
|
+
text-align: center;
|
|
1265
|
+
font-size: 0.8rem;
|
|
1266
|
+
color: var(--text-muted, #6c6c80);
|
|
1267
|
+
margin-bottom: 16px;
|
|
1268
|
+
font-style: italic;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
/* =========================================================================
|
|
1272
|
+
14a. Elicitation Technique Chips — BMAD Pattern
|
|
1273
|
+
========================================================================= */
|
|
1274
|
+
|
|
1275
|
+
.technique-chips {
|
|
1276
|
+
display: flex;
|
|
1277
|
+
flex-wrap: wrap;
|
|
1278
|
+
gap: 6px;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.technique-chip {
|
|
1282
|
+
display: inline-flex;
|
|
1283
|
+
align-items: center;
|
|
1284
|
+
gap: 4px;
|
|
1285
|
+
padding: 4px 10px;
|
|
1286
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1287
|
+
border-radius: 14px;
|
|
1288
|
+
font-size: 0.72rem;
|
|
1289
|
+
color: var(--text-secondary, #aaa);
|
|
1290
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1291
|
+
cursor: pointer;
|
|
1292
|
+
transition: border-color 0.2s, color 0.2s, background 0.2s;
|
|
1293
|
+
white-space: nowrap;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.technique-chip:hover {
|
|
1297
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1298
|
+
color: var(--text-primary, #eee);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.technique-chip.active {
|
|
1302
|
+
border-color: var(--status-green, #28a745);
|
|
1303
|
+
color: var(--status-green, #28a745);
|
|
1304
|
+
background: rgba(40, 167, 69, 0.08);
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.technique-active-banner {
|
|
1308
|
+
display: flex;
|
|
1309
|
+
align-items: center;
|
|
1310
|
+
justify-content: space-between;
|
|
1311
|
+
background: rgba(40, 167, 69, 0.08);
|
|
1312
|
+
border: 1px solid var(--status-green, #28a745);
|
|
1313
|
+
border-radius: var(--radius-md, 6px);
|
|
1314
|
+
padding: 6px 10px;
|
|
1315
|
+
margin-bottom: 8px;
|
|
1316
|
+
font-size: 0.8rem;
|
|
1317
|
+
color: var(--status-green, #28a745);
|
|
1318
|
+
font-weight: 600;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.technique-deactivate-btn {
|
|
1322
|
+
background: none;
|
|
1323
|
+
border: none;
|
|
1324
|
+
color: var(--status-green, #28a745);
|
|
1325
|
+
cursor: pointer;
|
|
1326
|
+
font-size: 1.1rem;
|
|
1327
|
+
line-height: 1;
|
|
1328
|
+
padding: 0 2px;
|
|
1329
|
+
opacity: 0.7;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.technique-deactivate-btn:hover {
|
|
1333
|
+
opacity: 1;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
/* Technique activation message in chat */
|
|
1337
|
+
.technique-activation {
|
|
1338
|
+
border-left: 3px solid var(--accent-blue, #4a90d9) !important;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.technique-explain strong {
|
|
1342
|
+
font-size: 0.95rem;
|
|
1343
|
+
color: var(--text-primary, #eee);
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.technique-desc {
|
|
1347
|
+
margin: 6px 0 8px;
|
|
1348
|
+
font-size: 0.82rem;
|
|
1349
|
+
color: var(--text-secondary, #aaa);
|
|
1350
|
+
line-height: 1.5;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.technique-targets {
|
|
1354
|
+
font-size: 0.75rem;
|
|
1355
|
+
color: var(--text-secondary, #aaa);
|
|
1356
|
+
margin-bottom: 10px;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.technique-target-tag {
|
|
1360
|
+
display: inline-block;
|
|
1361
|
+
background: rgba(74, 144, 217, 0.12);
|
|
1362
|
+
color: var(--accent-blue, #4a90d9);
|
|
1363
|
+
border: 1px solid rgba(74, 144, 217, 0.25);
|
|
1364
|
+
border-radius: 10px;
|
|
1365
|
+
padding: 1px 8px;
|
|
1366
|
+
font-size: 0.7rem;
|
|
1367
|
+
margin-left: 4px;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
.technique-questions {
|
|
1371
|
+
border-top: 1px solid var(--border-color, #2a2a40);
|
|
1372
|
+
padding-top: 8px;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
.technique-questions-label {
|
|
1376
|
+
font-size: 0.75rem;
|
|
1377
|
+
color: var(--text-secondary, #aaa);
|
|
1378
|
+
margin-bottom: 6px;
|
|
1379
|
+
font-weight: 600;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.technique-question-btn {
|
|
1383
|
+
display: block;
|
|
1384
|
+
width: 100%;
|
|
1385
|
+
text-align: left;
|
|
1386
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1387
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1388
|
+
border-radius: var(--radius-md, 6px);
|
|
1389
|
+
padding: 8px 12px;
|
|
1390
|
+
margin-bottom: 4px;
|
|
1391
|
+
font-size: 0.8rem;
|
|
1392
|
+
color: var(--text-primary, #eee);
|
|
1393
|
+
cursor: pointer;
|
|
1394
|
+
transition: border-color 0.2s, background 0.15s;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.technique-question-btn:hover {
|
|
1398
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1399
|
+
background: rgba(74, 144, 217, 0.06);
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
/* =========================================================================
|
|
1403
|
+
14b. Complexity Indicator — Scale-Adaptive Planning
|
|
1404
|
+
========================================================================= */
|
|
1405
|
+
|
|
1406
|
+
.complexity-indicator {
|
|
1407
|
+
margin-bottom: 12px;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.complexity-level {
|
|
1411
|
+
font-size: 0.95rem;
|
|
1412
|
+
font-weight: 700;
|
|
1413
|
+
margin-bottom: 6px;
|
|
1414
|
+
display: flex;
|
|
1415
|
+
align-items: center;
|
|
1416
|
+
gap: 6px;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.complexity-level .level-badge {
|
|
1420
|
+
display: inline-block;
|
|
1421
|
+
padding: 2px 10px;
|
|
1422
|
+
border-radius: 10px;
|
|
1423
|
+
font-size: 0.75rem;
|
|
1424
|
+
font-weight: 600;
|
|
1425
|
+
text-transform: uppercase;
|
|
1426
|
+
letter-spacing: 0.04em;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.level-quick-flow { background: rgba(40,167,69,0.15); color: var(--status-green, #28a745); border: 1px solid var(--status-green, #28a745); }
|
|
1430
|
+
.level-standard { background: rgba(74,144,217,0.15); color: var(--accent-blue, #4a90d9); border: 1px solid var(--accent-blue, #4a90d9); }
|
|
1431
|
+
.level-full-pipeline { background: rgba(255,193,7,0.15); color: var(--status-yellow, #ffc107); border: 1px solid var(--status-yellow, #ffc107); }
|
|
1432
|
+
|
|
1433
|
+
.complexity-bar-container {
|
|
1434
|
+
height: 6px;
|
|
1435
|
+
background: var(--border-color, #2a2a40);
|
|
1436
|
+
border-radius: 3px;
|
|
1437
|
+
overflow: hidden;
|
|
1438
|
+
margin-bottom: 4px;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.complexity-bar-fill {
|
|
1442
|
+
height: 100%;
|
|
1443
|
+
border-radius: 3px;
|
|
1444
|
+
transition: width 0.6s ease, background 0.6s ease;
|
|
1445
|
+
background: var(--status-green, #28a745);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.complexity-bar-fill.bar-standard { background: var(--accent-blue, #4a90d9); }
|
|
1449
|
+
.complexity-bar-fill.bar-full-pipeline { background: var(--status-yellow, #ffc107); }
|
|
1450
|
+
|
|
1451
|
+
.complexity-score-text {
|
|
1452
|
+
font-size: 0.75rem;
|
|
1453
|
+
color: var(--text-secondary, #aaa);
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.complexity-recommendation {
|
|
1457
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1458
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1459
|
+
border-radius: var(--radius-md, 6px);
|
|
1460
|
+
padding: 10px 12px;
|
|
1461
|
+
font-size: 0.8rem;
|
|
1462
|
+
color: var(--text-secondary, #aaa);
|
|
1463
|
+
line-height: 1.5;
|
|
1464
|
+
margin-bottom: 12px;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
.complexity-recommendation strong {
|
|
1468
|
+
color: var(--text-primary, #eee);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
/* =========================================================================
|
|
1472
|
+
15. COA Cards — Courses of Action in Chat Sidebar
|
|
1473
|
+
========================================================================= */
|
|
1474
|
+
|
|
1475
|
+
.coa-card {
|
|
1476
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1477
|
+
border: 2px solid var(--border-color, #2a2a40);
|
|
1478
|
+
border-radius: var(--radius-md, 6px);
|
|
1479
|
+
padding: 12px;
|
|
1480
|
+
margin-bottom: 10px;
|
|
1481
|
+
transition: border-color 0.2s, opacity 0.3s;
|
|
1482
|
+
cursor: default;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.coa-card:hover {
|
|
1486
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.coa-card-selected {
|
|
1490
|
+
border-color: var(--status-green, #28a745);
|
|
1491
|
+
background: rgba(40, 167, 69, 0.08);
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
.coa-card-rejected {
|
|
1495
|
+
opacity: 0.45;
|
|
1496
|
+
pointer-events: none;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
.coa-card-header {
|
|
1500
|
+
display: flex;
|
|
1501
|
+
align-items: center;
|
|
1502
|
+
justify-content: space-between;
|
|
1503
|
+
margin-bottom: 8px;
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.coa-card-name {
|
|
1507
|
+
font-size: 0.85rem;
|
|
1508
|
+
font-weight: 700;
|
|
1509
|
+
color: var(--text-primary, #e0e0e0);
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.coa-tier-badge {
|
|
1513
|
+
display: inline-block;
|
|
1514
|
+
padding: 2px 8px;
|
|
1515
|
+
font-size: 0.65rem;
|
|
1516
|
+
font-weight: 700;
|
|
1517
|
+
border-radius: 10px;
|
|
1518
|
+
text-transform: uppercase;
|
|
1519
|
+
letter-spacing: 0.5px;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.coa-tier-green {
|
|
1523
|
+
background: rgba(40, 167, 69, 0.2);
|
|
1524
|
+
color: var(--status-green, #28a745);
|
|
1525
|
+
border: 1px solid var(--status-green, #28a745);
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.coa-tier-yellow {
|
|
1529
|
+
background: rgba(255, 193, 7, 0.2);
|
|
1530
|
+
color: var(--status-yellow, #ffc107);
|
|
1531
|
+
border: 1px solid var(--status-yellow, #ffc107);
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.coa-tier-orange {
|
|
1535
|
+
background: rgba(255, 152, 0, 0.2);
|
|
1536
|
+
color: #ff9800;
|
|
1537
|
+
border: 1px solid #ff9800;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.coa-tier-red {
|
|
1541
|
+
background: rgba(220, 53, 69, 0.2);
|
|
1542
|
+
color: var(--status-red, #dc3545);
|
|
1543
|
+
border: 1px solid var(--status-red, #dc3545);
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.coa-card-desc {
|
|
1547
|
+
font-size: 0.78rem;
|
|
1548
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1549
|
+
line-height: 1.4;
|
|
1550
|
+
margin-bottom: 8px;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.coa-card-stats {
|
|
1554
|
+
display: flex;
|
|
1555
|
+
gap: 12px;
|
|
1556
|
+
font-size: 0.72rem;
|
|
1557
|
+
color: var(--text-muted, #6c6c80);
|
|
1558
|
+
margin-bottom: 10px;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.coa-card-stats span {
|
|
1562
|
+
display: flex;
|
|
1563
|
+
align-items: center;
|
|
1564
|
+
gap: 3px;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.coa-card-actions {
|
|
1568
|
+
display: flex;
|
|
1569
|
+
justify-content: flex-end;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.coa-select-btn {
|
|
1573
|
+
padding: 4px 14px;
|
|
1574
|
+
font-size: 0.75rem;
|
|
1575
|
+
font-weight: 600;
|
|
1576
|
+
border: 1px solid var(--accent-blue, #4a90d9);
|
|
1577
|
+
border-radius: 4px;
|
|
1578
|
+
background: transparent;
|
|
1579
|
+
color: var(--accent-blue, #4a90d9);
|
|
1580
|
+
cursor: pointer;
|
|
1581
|
+
transition: all 0.2s;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.coa-select-btn:hover {
|
|
1585
|
+
background: var(--accent-blue, #4a90d9);
|
|
1586
|
+
color: #fff;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.coa-select-btn:disabled {
|
|
1590
|
+
opacity: 0.4;
|
|
1591
|
+
cursor: not-allowed;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.coa-selected-banner {
|
|
1595
|
+
background: rgba(40, 167, 69, 0.15);
|
|
1596
|
+
border: 1px solid var(--status-green, #28a745);
|
|
1597
|
+
border-radius: var(--radius-md, 6px);
|
|
1598
|
+
padding: 8px 12px;
|
|
1599
|
+
font-size: 0.82rem;
|
|
1600
|
+
font-weight: 600;
|
|
1601
|
+
color: var(--status-green, #28a745);
|
|
1602
|
+
text-align: center;
|
|
1603
|
+
margin-top: 8px;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
/* =========================================================================
|
|
1608
|
+
16. Build Pipeline — progress tracker in Chat Sidebar
|
|
1609
|
+
========================================================================= */
|
|
1610
|
+
|
|
1611
|
+
.build-pipeline {
|
|
1612
|
+
display: flex;
|
|
1613
|
+
flex-direction: column;
|
|
1614
|
+
gap: 0;
|
|
1615
|
+
margin-bottom: 12px;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.build-phase {
|
|
1619
|
+
display: flex;
|
|
1620
|
+
align-items: flex-start;
|
|
1621
|
+
gap: 10px;
|
|
1622
|
+
padding: 6px 0;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.build-phase-connector {
|
|
1626
|
+
width: 2px;
|
|
1627
|
+
height: 12px;
|
|
1628
|
+
margin-left: 9px;
|
|
1629
|
+
background: var(--border-color, #2a2a40);
|
|
1630
|
+
transition: background 0.3s;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.build-phase-connector-done {
|
|
1634
|
+
background: var(--status-green, #28a745);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.build-phase-connector-active {
|
|
1638
|
+
background: var(--accent-blue, #4a90d9);
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.build-phase-icon {
|
|
1642
|
+
flex-shrink: 0;
|
|
1643
|
+
width: 20px;
|
|
1644
|
+
height: 20px;
|
|
1645
|
+
display: flex;
|
|
1646
|
+
align-items: center;
|
|
1647
|
+
justify-content: center;
|
|
1648
|
+
font-size: 0.8rem;
|
|
1649
|
+
border-radius: 50%;
|
|
1650
|
+
transition: all 0.3s;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.build-phase-pending .build-phase-icon {
|
|
1654
|
+
color: var(--text-muted, #6c6c80);
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.build-phase-running .build-phase-icon {
|
|
1658
|
+
color: var(--accent-blue, #4a90d9);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.build-phase-done .build-phase-icon {
|
|
1662
|
+
color: var(--status-green, #28a745);
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.build-phase-error .build-phase-icon {
|
|
1666
|
+
color: var(--status-red, #dc3545);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.build-phase-warning .build-phase-icon {
|
|
1670
|
+
color: var(--status-yellow, #ffc107);
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.build-phase-icon-pulse {
|
|
1674
|
+
animation: phasePulse 1.2s ease-in-out infinite;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
@keyframes phasePulse {
|
|
1678
|
+
0%, 100% { opacity: 1; }
|
|
1679
|
+
50% { opacity: 0.3; }
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.build-phase-text {
|
|
1683
|
+
display: flex;
|
|
1684
|
+
flex-direction: column;
|
|
1685
|
+
gap: 2px;
|
|
1686
|
+
min-width: 0;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.build-phase-name {
|
|
1690
|
+
font-size: 0.8rem;
|
|
1691
|
+
font-weight: 600;
|
|
1692
|
+
color: var(--text-primary, #e0e0e0);
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.build-phase-pending .build-phase-name {
|
|
1696
|
+
color: var(--text-muted, #6c6c80);
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.build-phase-detail {
|
|
1700
|
+
font-size: 0.7rem;
|
|
1701
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1702
|
+
line-height: 1.3;
|
|
1703
|
+
overflow: hidden;
|
|
1704
|
+
text-overflow: ellipsis;
|
|
1705
|
+
white-space: nowrap;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.build-pipeline-status {
|
|
1709
|
+
text-align: center;
|
|
1710
|
+
padding: 8px 0;
|
|
1711
|
+
font-size: 0.8rem;
|
|
1712
|
+
font-weight: 600;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.build-status-running {
|
|
1716
|
+
color: var(--accent-blue, #4a90d9);
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.build-status-done {
|
|
1720
|
+
color: var(--status-green, #28a745);
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.build-status-error {
|
|
1724
|
+
color: var(--status-red, #dc3545);
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
/* Custom role text inputs in wizard */
|
|
1729
|
+
.wizard-custom-role-inputs {
|
|
1730
|
+
max-width: 500px;
|
|
1731
|
+
margin: 0 auto 24px;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.wizard-custom-role-inputs input,
|
|
1735
|
+
.wizard-custom-role-inputs textarea {
|
|
1736
|
+
width: 100%;
|
|
1737
|
+
padding: 10px 12px;
|
|
1738
|
+
margin-bottom: 12px;
|
|
1739
|
+
border: 1px solid var(--border-color, #2a2a40);
|
|
1740
|
+
border-radius: var(--radius-md, 6px);
|
|
1741
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1742
|
+
color: var(--text-primary, #e0e0e0);
|
|
1743
|
+
font-family: inherit;
|
|
1744
|
+
font-size: 0.9rem;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.wizard-custom-role-inputs textarea {
|
|
1748
|
+
resize: vertical;
|
|
1749
|
+
min-height: 60px;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.wizard-custom-role-inputs input:focus,
|
|
1753
|
+
.wizard-custom-role-inputs textarea:focus {
|
|
1754
|
+
outline: none;
|
|
1755
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
/* =========================================================================
|
|
1760
|
+
Phase 30: Dashboard Auth, Activity Feed, Usage, Profile Styles
|
|
1761
|
+
========================================================================= */
|
|
1762
|
+
|
|
1763
|
+
/* --- Login page --- */
|
|
1764
|
+
.login-container {
|
|
1765
|
+
display: flex;
|
|
1766
|
+
align-items: center;
|
|
1767
|
+
justify-content: center;
|
|
1768
|
+
min-height: 80vh;
|
|
1769
|
+
padding: 2rem;
|
|
1770
|
+
}
|
|
1771
|
+
.login-card {
|
|
1772
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1773
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1774
|
+
border-radius: 8px;
|
|
1775
|
+
padding: 2.5rem;
|
|
1776
|
+
width: 100%;
|
|
1777
|
+
max-width: 420px;
|
|
1778
|
+
box-shadow: 0 4px 24px rgba(0,0,0,0.3);
|
|
1779
|
+
}
|
|
1780
|
+
.login-title {
|
|
1781
|
+
font-size: 1.5rem;
|
|
1782
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
1783
|
+
margin: 0 0 0.25rem 0;
|
|
1784
|
+
text-align: center;
|
|
1785
|
+
}
|
|
1786
|
+
.login-subtitle {
|
|
1787
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1788
|
+
font-size: 0.9rem;
|
|
1789
|
+
text-align: center;
|
|
1790
|
+
margin: 0 0 1.5rem 0;
|
|
1791
|
+
}
|
|
1792
|
+
.login-card .form-group {
|
|
1793
|
+
margin-bottom: 1.25rem;
|
|
1794
|
+
}
|
|
1795
|
+
.login-card label {
|
|
1796
|
+
display: block;
|
|
1797
|
+
font-size: 0.85rem;
|
|
1798
|
+
color: var(--text-primary, #e0e0e0);
|
|
1799
|
+
margin-bottom: 0.35rem;
|
|
1800
|
+
}
|
|
1801
|
+
.login-card .form-control {
|
|
1802
|
+
width: 100%;
|
|
1803
|
+
padding: 0.6rem 0.75rem;
|
|
1804
|
+
background: var(--bg-primary, #0d0d1a);
|
|
1805
|
+
color: var(--text-primary, #e0e0e0);
|
|
1806
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1807
|
+
border-radius: 4px;
|
|
1808
|
+
font-size: 0.9rem;
|
|
1809
|
+
box-sizing: border-box;
|
|
1810
|
+
}
|
|
1811
|
+
.login-card .form-control:focus {
|
|
1812
|
+
outline: none;
|
|
1813
|
+
border-color: var(--accent-blue, #4a90d9);
|
|
1814
|
+
}
|
|
1815
|
+
.login-card .form-help {
|
|
1816
|
+
display: block;
|
|
1817
|
+
font-size: 0.75rem;
|
|
1818
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1819
|
+
margin-top: 0.3rem;
|
|
1820
|
+
}
|
|
1821
|
+
.btn-primary {
|
|
1822
|
+
display: block;
|
|
1823
|
+
width: 100%;
|
|
1824
|
+
padding: 0.65rem;
|
|
1825
|
+
background: var(--accent-blue, #4a90d9);
|
|
1826
|
+
color: #fff;
|
|
1827
|
+
border: none;
|
|
1828
|
+
border-radius: 4px;
|
|
1829
|
+
font-size: 0.95rem;
|
|
1830
|
+
cursor: pointer;
|
|
1831
|
+
text-align: center;
|
|
1832
|
+
}
|
|
1833
|
+
.btn-primary:hover {
|
|
1834
|
+
background: var(--accent-blue-light, #6db3f8);
|
|
1835
|
+
}
|
|
1836
|
+
.btn-block { display: block; width: 100%; }
|
|
1837
|
+
.alert {
|
|
1838
|
+
padding: 0.6rem 0.8rem;
|
|
1839
|
+
border-radius: 4px;
|
|
1840
|
+
margin-bottom: 1rem;
|
|
1841
|
+
font-size: 0.85rem;
|
|
1842
|
+
}
|
|
1843
|
+
.alert-danger {
|
|
1844
|
+
background: rgba(220, 53, 69, 0.15);
|
|
1845
|
+
border: 1px solid rgba(220, 53, 69, 0.4);
|
|
1846
|
+
color: #f88;
|
|
1847
|
+
}
|
|
1848
|
+
.alert-success {
|
|
1849
|
+
background: rgba(40, 167, 69, 0.15);
|
|
1850
|
+
border: 1px solid rgba(40, 167, 69, 0.4);
|
|
1851
|
+
color: #8f8;
|
|
1852
|
+
}
|
|
1853
|
+
.alert-info {
|
|
1854
|
+
background: rgba(74, 144, 217, 0.15);
|
|
1855
|
+
border: 1px solid rgba(74, 144, 217, 0.4);
|
|
1856
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
/* --- User badge (navbar) --- */
|
|
1860
|
+
.user-badge {
|
|
1861
|
+
display: flex;
|
|
1862
|
+
align-items: center;
|
|
1863
|
+
gap: 6px;
|
|
1864
|
+
padding: 3px 10px;
|
|
1865
|
+
background: rgba(74, 144, 217, 0.1);
|
|
1866
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1867
|
+
border-radius: 4px;
|
|
1868
|
+
text-decoration: none;
|
|
1869
|
+
font-size: 0.8rem;
|
|
1870
|
+
color: var(--text-primary, #e0e0e0);
|
|
1871
|
+
white-space: nowrap;
|
|
1872
|
+
}
|
|
1873
|
+
.user-badge:hover {
|
|
1874
|
+
background: rgba(74, 144, 217, 0.2);
|
|
1875
|
+
}
|
|
1876
|
+
.user-badge-name {
|
|
1877
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
1878
|
+
font-weight: 600;
|
|
1879
|
+
}
|
|
1880
|
+
.user-badge-role {
|
|
1881
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1882
|
+
font-size: 0.7rem;
|
|
1883
|
+
text-transform: uppercase;
|
|
1884
|
+
}
|
|
1885
|
+
.btn-logout {
|
|
1886
|
+
padding: 3px 8px;
|
|
1887
|
+
font-size: 0.75rem;
|
|
1888
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1889
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1890
|
+
border-radius: 4px;
|
|
1891
|
+
text-decoration: none;
|
|
1892
|
+
background: transparent;
|
|
1893
|
+
cursor: pointer;
|
|
1894
|
+
}
|
|
1895
|
+
.btn-logout:hover {
|
|
1896
|
+
color: #f88;
|
|
1897
|
+
border-color: #f88;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
/* --- Activity feed --- */
|
|
1901
|
+
.activity-filters {
|
|
1902
|
+
display: flex;
|
|
1903
|
+
flex-wrap: wrap;
|
|
1904
|
+
gap: 8px;
|
|
1905
|
+
margin-bottom: 1rem;
|
|
1906
|
+
align-items: center;
|
|
1907
|
+
}
|
|
1908
|
+
.activity-filters select,
|
|
1909
|
+
.activity-filters input {
|
|
1910
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1911
|
+
color: var(--text-primary, #e0e0e0);
|
|
1912
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1913
|
+
border-radius: 4px;
|
|
1914
|
+
padding: 4px 8px;
|
|
1915
|
+
font-size: 0.8rem;
|
|
1916
|
+
}
|
|
1917
|
+
.activity-stat-cards {
|
|
1918
|
+
display: grid;
|
|
1919
|
+
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
1920
|
+
gap: 10px;
|
|
1921
|
+
margin-bottom: 1rem;
|
|
1922
|
+
}
|
|
1923
|
+
.activity-stat-card {
|
|
1924
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1925
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1926
|
+
border-radius: 6px;
|
|
1927
|
+
padding: 12px;
|
|
1928
|
+
text-align: center;
|
|
1929
|
+
}
|
|
1930
|
+
.activity-stat-card .stat-value {
|
|
1931
|
+
font-size: 1.5rem;
|
|
1932
|
+
font-weight: 700;
|
|
1933
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
1934
|
+
}
|
|
1935
|
+
.activity-stat-card .stat-label {
|
|
1936
|
+
font-size: 0.75rem;
|
|
1937
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1938
|
+
}
|
|
1939
|
+
.source-badge {
|
|
1940
|
+
display: inline-block;
|
|
1941
|
+
padding: 1px 6px;
|
|
1942
|
+
border-radius: 3px;
|
|
1943
|
+
font-size: 0.7rem;
|
|
1944
|
+
font-weight: 600;
|
|
1945
|
+
text-transform: uppercase;
|
|
1946
|
+
}
|
|
1947
|
+
.source-badge.audit { background: rgba(74, 144, 217, 0.2); color: #6db3f8; }
|
|
1948
|
+
.source-badge.hook { background: rgba(40, 167, 69, 0.2); color: #8f8; }
|
|
1949
|
+
.ws-status {
|
|
1950
|
+
display: inline-flex;
|
|
1951
|
+
align-items: center;
|
|
1952
|
+
gap: 4px;
|
|
1953
|
+
font-size: 0.75rem;
|
|
1954
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1955
|
+
}
|
|
1956
|
+
.ws-dot {
|
|
1957
|
+
width: 8px;
|
|
1958
|
+
height: 8px;
|
|
1959
|
+
border-radius: 50%;
|
|
1960
|
+
display: inline-block;
|
|
1961
|
+
}
|
|
1962
|
+
.ws-dot.connected { background: #28a745; }
|
|
1963
|
+
.ws-dot.polling { background: #ffc107; }
|
|
1964
|
+
.ws-dot.disconnected { background: #dc3545; }
|
|
1965
|
+
|
|
1966
|
+
/* --- Usage dashboard --- */
|
|
1967
|
+
.usage-summary-grid {
|
|
1968
|
+
display: grid;
|
|
1969
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
1970
|
+
gap: 12px;
|
|
1971
|
+
margin-bottom: 1.5rem;
|
|
1972
|
+
}
|
|
1973
|
+
.usage-card {
|
|
1974
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1975
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1976
|
+
border-radius: 6px;
|
|
1977
|
+
padding: 16px;
|
|
1978
|
+
}
|
|
1979
|
+
.usage-card .card-title {
|
|
1980
|
+
font-size: 0.8rem;
|
|
1981
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1982
|
+
margin-bottom: 0.5rem;
|
|
1983
|
+
}
|
|
1984
|
+
.usage-card .card-value {
|
|
1985
|
+
font-size: 1.4rem;
|
|
1986
|
+
font-weight: 700;
|
|
1987
|
+
color: var(--text-primary, #e0e0e0);
|
|
1988
|
+
}
|
|
1989
|
+
.usage-card .card-sub {
|
|
1990
|
+
font-size: 0.75rem;
|
|
1991
|
+
color: var(--text-secondary, #a0a0b8);
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
/* --- Profile page --- */
|
|
1995
|
+
.profile-section {
|
|
1996
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
1997
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
1998
|
+
border-radius: 6px;
|
|
1999
|
+
padding: 1.5rem;
|
|
2000
|
+
margin-bottom: 1rem;
|
|
2001
|
+
}
|
|
2002
|
+
.profile-section h3 {
|
|
2003
|
+
color: var(--accent-blue-light, #6db3f8);
|
|
2004
|
+
margin: 0 0 1rem 0;
|
|
2005
|
+
font-size: 1.1rem;
|
|
2006
|
+
}
|
|
2007
|
+
.profile-field {
|
|
2008
|
+
display: flex;
|
|
2009
|
+
gap: 1rem;
|
|
2010
|
+
margin-bottom: 0.75rem;
|
|
2011
|
+
align-items: center;
|
|
2012
|
+
}
|
|
2013
|
+
.profile-field label {
|
|
2014
|
+
min-width: 120px;
|
|
2015
|
+
font-size: 0.85rem;
|
|
2016
|
+
color: var(--text-secondary, #a0a0b8);
|
|
2017
|
+
}
|
|
2018
|
+
.profile-field .field-value {
|
|
2019
|
+
color: var(--text-primary, #e0e0e0);
|
|
2020
|
+
font-size: 0.9rem;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
/* --- Admin panel --- */
|
|
2024
|
+
.admin-actions {
|
|
2025
|
+
display: flex;
|
|
2026
|
+
gap: 8px;
|
|
2027
|
+
margin-bottom: 1rem;
|
|
2028
|
+
}
|
|
2029
|
+
.btn-sm {
|
|
2030
|
+
padding: 4px 10px;
|
|
2031
|
+
font-size: 0.8rem;
|
|
2032
|
+
border-radius: 4px;
|
|
2033
|
+
border: 1px solid var(--border-color, #2d2d44);
|
|
2034
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
2035
|
+
color: var(--text-primary, #e0e0e0);
|
|
2036
|
+
cursor: pointer;
|
|
2037
|
+
}
|
|
2038
|
+
.btn-sm:hover {
|
|
2039
|
+
background: rgba(74, 144, 217, 0.15);
|
|
2040
|
+
}
|
|
2041
|
+
.btn-sm.btn-danger {
|
|
2042
|
+
color: #f88;
|
|
2043
|
+
border-color: rgba(220, 53, 69, 0.4);
|
|
2044
|
+
}
|
|
2045
|
+
.btn-sm.btn-danger:hover {
|
|
2046
|
+
background: rgba(220, 53, 69, 0.15);
|
|
2047
|
+
}
|