mission-directives 2.0.1__tar.gz

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.
Files changed (804) hide show
  1. mission_directives-2.0.1/.gitignore +47 -0
  2. mission_directives-2.0.1/LICENSE +7 -0
  3. mission_directives-2.0.1/LICENSE-APACHE +202 -0
  4. mission_directives-2.0.1/LICENSE-MIT +21 -0
  5. mission_directives-2.0.1/PKG-INFO +268 -0
  6. mission_directives-2.0.1/PROMPT_EXECUTION_ORDER.md +344 -0
  7. mission_directives-2.0.1/README.md +241 -0
  8. mission_directives-2.0.1/RELEASE_ID +1 -0
  9. mission_directives-2.0.1/SCENARIO_CATALOG.json +34683 -0
  10. mission_directives-2.0.1/VERSION +1 -0
  11. mission_directives-2.0.1/assets/readme/divider.svg +6 -0
  12. mission_directives-2.0.1/assets/readme/inventory.svg +15 -0
  13. mission_directives-2.0.1/assets/readme/mission-directives-banner.svg +31 -0
  14. mission_directives-2.0.1/assets/readme/routing-flow.svg +39 -0
  15. mission_directives-2.0.1/catalog.json +42915 -0
  16. mission_directives-2.0.1/compatibility/agent_skill_paths.json +46 -0
  17. mission_directives-2.0.1/compatibility/capability_identity_registry.json +2062 -0
  18. mission_directives-2.0.1/config/bundles.json +301 -0
  19. mission_directives-2.0.1/config/capability_graph.json +10065 -0
  20. mission_directives-2.0.1/config/category_taxonomy.json +1704 -0
  21. mission_directives-2.0.1/config/department_packs.json +451 -0
  22. mission_directives-2.0.1/config/installed_skills_inventory.json +1952 -0
  23. mission_directives-2.0.1/config/model_profiles.json +95 -0
  24. mission_directives-2.0.1/config/modifier_injections.json +216 -0
  25. mission_directives-2.0.1/config/prompt-frontmatter.schema.json +123 -0
  26. mission_directives-2.0.1/config/router_keywords.json +202 -0
  27. mission_directives-2.0.1/config/runtime_payload.json +71 -0
  28. mission_directives-2.0.1/config/skill_aliases.json +5 -0
  29. mission_directives-2.0.1/config/skills.lock.json +1415 -0
  30. mission_directives-2.0.1/config/template_registry.json +3808 -0
  31. mission_directives-2.0.1/docs/AGENT_LIBRARY_INTEGRATION_GUIDE.md +169 -0
  32. mission_directives-2.0.1/docs/ARCHITECTURE_GUIDE.md +156 -0
  33. mission_directives-2.0.1/docs/AUTO_ORCHESTRATION_RUNTIME_GUIDE.md +37 -0
  34. mission_directives-2.0.1/docs/AUTO_PROMPTS_AND_CONDITIONAL_ROUTING_GUIDE.md +218 -0
  35. mission_directives-2.0.1/docs/BOUNDED_LOOP_ORCHESTRATION_GUIDE.md +254 -0
  36. mission_directives-2.0.1/docs/CAPABILITY_ARCHITECTURE.md +112 -0
  37. mission_directives-2.0.1/docs/CI_AND_TESTING_GUIDE.md +162 -0
  38. mission_directives-2.0.1/docs/COMPATIBILITY_AND_IDENTITY_GUIDE.md +58 -0
  39. mission_directives-2.0.1/docs/COMPLETION_CRITERIA_GUIDE.md +156 -0
  40. mission_directives-2.0.1/docs/CONTRIBUTOR_GUIDE.md +140 -0
  41. mission_directives-2.0.1/docs/COVERAGE_INDEX.md +261 -0
  42. mission_directives-2.0.1/docs/CROSS_PLATFORM_TOOLING_GUIDE.md +228 -0
  43. mission_directives-2.0.1/docs/DOCUMENTATION_SITE_GUIDE.md +74 -0
  44. mission_directives-2.0.1/docs/EVALUATION_MANUAL.md +182 -0
  45. mission_directives-2.0.1/docs/EVIDENCE_LANES.md +34 -0
  46. mission_directives-2.0.1/docs/EXECUTIVE_DECISION_RULES_GUIDE.md +114 -0
  47. mission_directives-2.0.1/docs/GENERIC_SKILL_EXECUTION_GUIDE.md +189 -0
  48. mission_directives-2.0.1/docs/GITHUB_ACTIONS_FAILURE_HISTORY_AND_PRE_PUSH_GUIDE.md +186 -0
  49. mission_directives-2.0.1/docs/GSTACK_INTEGRATION.md +79 -0
  50. mission_directives-2.0.1/docs/INSTALLATION_AND_PROJECT_INTEGRATION_GUIDE.md +106 -0
  51. mission_directives-2.0.1/docs/INSTALLED_RUNTIME_PAYLOAD_GUIDE.md +89 -0
  52. mission_directives-2.0.1/docs/INSTALLED_SKILLS_INVENTORY_GUIDE.md +133 -0
  53. mission_directives-2.0.1/docs/LOCAL_OUTPUT_VIEWER_GUIDE.md +34 -0
  54. mission_directives-2.0.1/docs/LOCAL_SKILL_REGISTRATION_GUIDE.md +85 -0
  55. mission_directives-2.0.1/docs/LOGGING_AND_TELEMETRY_GUIDE.md +206 -0
  56. mission_directives-2.0.1/docs/MANUALS.md +118 -0
  57. mission_directives-2.0.1/docs/MANUAL_QUALITY_STANDARD.md +95 -0
  58. mission_directives-2.0.1/docs/MD_MASTERY_MANUAL.md +947 -0
  59. mission_directives-2.0.1/docs/MIGRATION_GUIDE.md +26 -0
  60. mission_directives-2.0.1/docs/MODEL_ROUTING_GUIDE.md +168 -0
  61. mission_directives-2.0.1/docs/OPERATOR_GUIDE.md +180 -0
  62. mission_directives-2.0.1/docs/PACKAGING_AND_RELEASE_GUIDE.md +33 -0
  63. mission_directives-2.0.1/docs/PAIR_AUTHORING_AND_VERIFICATION_GUIDE.md +148 -0
  64. mission_directives-2.0.1/docs/PLAN_REVIEW_AND_EXACT_TWIN_EXECUTION_GUIDE.md +203 -0
  65. mission_directives-2.0.1/docs/PROJECT_CLEANUP_AND_UNINSTALL_GUIDE.md +55 -0
  66. mission_directives-2.0.1/docs/PROJECT_CONFIG_GUIDE.md +42 -0
  67. mission_directives-2.0.1/docs/PROMPT_ADDITION_AND_REGISTRATION_GUIDE.md +225 -0
  68. mission_directives-2.0.1/docs/PROMPT_BODY_AUTHORING_GUIDE.md +240 -0
  69. mission_directives-2.0.1/docs/PROMPT_BODY_VALIDATION_GUIDE.md +151 -0
  70. mission_directives-2.0.1/docs/PROMPT_CATALOG.md +265 -0
  71. mission_directives-2.0.1/docs/PROMPT_ENGINEERING_METHODS.md +40 -0
  72. mission_directives-2.0.1/docs/PROMPT_STRUCTURE_STANDARD.md +281 -0
  73. mission_directives-2.0.1/docs/PROMPT_SUITE_CONVENTIONS.md +173 -0
  74. mission_directives-2.0.1/docs/README.md +66 -0
  75. mission_directives-2.0.1/docs/RECOMMENDED_SKILL_STACKS.md +153 -0
  76. mission_directives-2.0.1/docs/RECOVERY_AND_ROLLBACK_GUIDE.md +142 -0
  77. mission_directives-2.0.1/docs/RESEARCH_BASIS.md +35 -0
  78. mission_directives-2.0.1/docs/ROOT_AGENT_GUIDANCE_AND_KEYWORD_ROUTING_GUIDE.md +340 -0
  79. mission_directives-2.0.1/docs/ROUTER_KEYWORD_CATALOG_AND_SCORING_GUIDE.md +90 -0
  80. mission_directives-2.0.1/docs/RUNTIME_MARKER_PROTOCOL.md +168 -0
  81. mission_directives-2.0.1/docs/SCENARIO_AUTHORING_GUIDE.md +199 -0
  82. mission_directives-2.0.1/docs/SECURITY_BOUNDARIES.md +23 -0
  83. mission_directives-2.0.1/docs/SECURITY_OPERATIONS_GUIDE.md +115 -0
  84. mission_directives-2.0.1/docs/SKILL_INSTALL_COMMANDS.md +186 -0
  85. mission_directives-2.0.1/docs/SKILL_ROUTING.md +79 -0
  86. mission_directives-2.0.1/docs/SKILL_SUPPLY_CHAIN_GUIDE.md +186 -0
  87. mission_directives-2.0.1/docs/TELEMETRY_AND_OBSERVABILITY_GUIDE.md +164 -0
  88. mission_directives-2.0.1/docs/TEMPLATE_SYSTEM_GUIDE.md +226 -0
  89. mission_directives-2.0.1/docs/TOOL_POLICY_AND_AUTHORIZATION_GUIDE.md +162 -0
  90. mission_directives-2.0.1/docs/TROUBLESHOOTING_GUIDE.md +119 -0
  91. mission_directives-2.0.1/docs/TUI_AND_OPERATOR_EXPERIENCE_GUIDE.md +215 -0
  92. mission_directives-2.0.1/docs/USER_MANUAL.md +221 -0
  93. mission_directives-2.0.1/docs/VISUAL_ASSETS_INTEGRATION_GUIDE.md +197 -0
  94. mission_directives-2.0.1/examples/academic_paper.md +12 -0
  95. mission_directives-2.0.1/examples/audit_fix_verify_loop.md +3 -0
  96. mission_directives-2.0.1/examples/auto_orchestration/audit_fix_verify_loop.md +25 -0
  97. mission_directives-2.0.1/examples/auto_orchestration/installed_unmapped_skill.md +20 -0
  98. mission_directives-2.0.1/examples/auto_orchestration/missing_skill_acquisition.md +18 -0
  99. mission_directives-2.0.1/examples/auto_orchestration/strudel_refinement.md +23 -0
  100. mission_directives-2.0.1/examples/auto_orchestration/visual_assets_batch.md +39 -0
  101. mission_directives-2.0.1/examples/auto_orchestration/wasteful_loop_rejection.md +17 -0
  102. mission_directives-2.0.1/examples/bounded_generic_loop.md +16 -0
  103. mission_directives-2.0.1/examples/brand_and_campaign.md +11 -0
  104. mission_directives-2.0.1/examples/dashboard.md +12 -0
  105. mission_directives-2.0.1/examples/debugging_run.md +5 -0
  106. mission_directives-2.0.1/examples/failed_execution_rollback.md +3 -0
  107. mission_directives-2.0.1/examples/generic_skill_execution.md +16 -0
  108. mission_directives-2.0.1/examples/grant_proposal.md +20 -0
  109. mission_directives-2.0.1/examples/html_slide_deck.md +14 -0
  110. mission_directives-2.0.1/examples/learning_program.md +20 -0
  111. mission_directives-2.0.1/examples/missing_skill_acquisition.md +11 -0
  112. mission_directives-2.0.1/examples/no_model_selection.md +3 -0
  113. mission_directives-2.0.1/examples/professional_application.md +20 -0
  114. mission_directives-2.0.1/examples/research_backed_article.md +14 -0
  115. mission_directives-2.0.1/examples/root_agent_guidance_sync.md +71 -0
  116. mission_directives-2.0.1/examples/safe_cleanup_run.md +15 -0
  117. mission_directives-2.0.1/examples/security_simulation_run.md +5 -0
  118. mission_directives-2.0.1/examples/social_content_series.md +20 -0
  119. mission_directives-2.0.1/examples/stale_handoff_refusal.md +3 -0
  120. mission_directives-2.0.1/examples/unresolved_skill_fallback.md +3 -0
  121. mission_directives-2.0.1/examples/visual_assets_batch_loop.md +5 -0
  122. mission_directives-2.0.1/hatch_build.py +51 -0
  123. mission_directives-2.0.1/integrations/agent_catalog_snapshot.json +3336 -0
  124. mission_directives-2.0.1/integrations/logging_event_catalog.json +22 -0
  125. mission_directives-2.0.1/integrations/md_to_agent_library_crosswalk.json +8447 -0
  126. mission_directives-2.0.1/integrations/md_to_prompt_type_library_crosswalk.json +8680 -0
  127. mission_directives-2.0.1/integrations/platform_tool_matrix.json +54 -0
  128. mission_directives-2.0.1/integrations/prompt_type_catalog_snapshot.json +9241 -0
  129. mission_directives-2.0.1/integrations/template_to_prompt_crosswalk.json +2949 -0
  130. mission_directives-2.0.1/integrations/template_to_skill_crosswalk.json +50 -0
  131. mission_directives-2.0.1/policies/action_policy.json +14 -0
  132. mission_directives-2.0.1/policies/action_risk_rubric.json +113 -0
  133. mission_directives-2.0.1/policies/agent_guidance_policy.json +212 -0
  134. mission_directives-2.0.1/policies/artifact_export_policy.json +10 -0
  135. mission_directives-2.0.1/policies/assurance_profiles.json +40 -0
  136. mission_directives-2.0.1/policies/auto_prompt_policy.json +102 -0
  137. mission_directives-2.0.1/policies/cross_platform_tooling_policy.json +11 -0
  138. mission_directives-2.0.1/policies/data_handling_policy.json +11 -0
  139. mission_directives-2.0.1/policies/documentation_system_policy.json +11 -0
  140. mission_directives-2.0.1/policies/employment_policy.json +10 -0
  141. mission_directives-2.0.1/policies/execution_lock_rules.json +84 -0
  142. mission_directives-2.0.1/policies/financial_policy.json +10 -0
  143. mission_directives-2.0.1/policies/gates.json +95 -0
  144. mission_directives-2.0.1/policies/legal_policy.json +11 -0
  145. mission_directives-2.0.1/policies/logging_policy.json +50 -0
  146. mission_directives-2.0.1/policies/loop_execution_policy.json +44 -0
  147. mission_directives-2.0.1/policies/osint_policy.json +14 -0
  148. mission_directives-2.0.1/policies/project_installation_policy.json +37 -0
  149. mission_directives-2.0.1/policies/prompt_addition_policy.json +57 -0
  150. mission_directives-2.0.1/policies/prompt_shape_policy.json +35 -0
  151. mission_directives-2.0.1/policies/publication_policy.json +13 -0
  152. mission_directives-2.0.1/policies/role_authority_profiles.json +50 -0
  153. mission_directives-2.0.1/policies/run_state_machine.json +103 -0
  154. mission_directives-2.0.1/policies/security_testing_policy.json +16 -0
  155. mission_directives-2.0.1/policies/skill_acquisition_policy.json +71 -0
  156. mission_directives-2.0.1/policies/skill_permission_policy.json +12 -0
  157. mission_directives-2.0.1/policies/template_routing_policy.json +32 -0
  158. mission_directives-2.0.1/policies/template_usage_policy.json +22 -0
  159. mission_directives-2.0.1/policies/tui_policy.json +20 -0
  160. mission_directives-2.0.1/prompts/00_PROJECT_CONTEXT_AND_RUN_CONFIGURATION.md +156 -0
  161. mission_directives-2.0.1/prompts/01_UNIVERSAL_SAFETY_AUTHORIZATION_AND_EVIDENCE_CONTRACT.md +147 -0
  162. mission_directives-2.0.1/prompts/02_CAPABILITY_ROUTER_AND_EXECUTION_GRAPH.md +149 -0
  163. mission_directives-2.0.1/prompts/03_ARTIFACT_HANDOFF_AND_VERIFICATION_CONTRACT.md +222 -0
  164. mission_directives-2.0.1/prompts/04_PROMPT_STRUCTURE_AND_INPUT_TRUST_CONTRACT.md +155 -0
  165. mission_directives-2.0.1/prompts/05_PROBLEM_OPPORTUNITY_AND_STRATEGY_FRAMING.md +265 -0
  166. mission_directives-2.0.1/prompts/06_MARKET_USER_AND_COMPETITIVE_RESEARCH.md +198 -0
  167. mission_directives-2.0.1/prompts/07_REQUIREMENTS_SCOPE_AND_SUCCESS_CRITERIA.md +199 -0
  168. mission_directives-2.0.1/prompts/08_FEASIBILITY_PROTOTYPE_RISK_AND_ROADMAP.md +196 -0
  169. mission_directives-2.0.1/prompts/09_ARCHITECTURE_AND_TECHNOLOGY_DECISION_ANALYSIS.md +354 -0
  170. mission_directives-2.0.1/prompts/100_PITCH_PROPOSAL_AND_BUSINESS_CASE_DEVELOPMENT.md +222 -0
  171. mission_directives-2.0.1/prompts/101_PRESENTATION_NARRATIVE_STORY_ARCHITECTURE_AND_DECK_BLUEPRINT.md +246 -0
  172. mission_directives-2.0.1/prompts/102_HTML_CSS_AND_JAVASCRIPT_SLIDES_AND_PRESENTATION_PRODUCTION.md +270 -0
  173. mission_directives-2.0.1/prompts/103_DASHBOARD_AND_ANALYTICAL_INTERFACE_PRODUCTION.md +302 -0
  174. mission_directives-2.0.1/prompts/104_INFOGRAPHIC_AND_DATA_STORYTELLING_PRODUCTION.md +232 -0
  175. mission_directives-2.0.1/prompts/105_BLUEPRINT_DIAGRAM_ARCHITECTURE_AND_PROCESS_VISUALIZATION_PRODUCTION.md +235 -0
  176. mission_directives-2.0.1/prompts/106_EXCALIDRAW_AND_COLLABORATIVE_WHITEBOARD_DIAGRAM_PRODUCTION.md +239 -0
  177. mission_directives-2.0.1/prompts/107_INTERACTIVE_WEB_ARTIFACT_MICROSITE_AND_PROTOTYPE_PRODUCTION.md +228 -0
  178. mission_directives-2.0.1/prompts/108_FRONTEND_VISUAL_DESIGN_INTERACTION_AND_EXPERIENCE_POLISH.md +226 -0
  179. mission_directives-2.0.1/prompts/109_VISUAL_QUALITY_ACCESSIBILITY_BRAND_AND_RESPONSIVE_REVIEW.md +227 -0
  180. mission_directives-2.0.1/prompts/10_PROJECT_DISCOVERY_INVENTORY_AND_BASELINE.md +231 -0
  181. mission_directives-2.0.1/prompts/110_EVENT_STRATEGY_AGENDA_RUN_OF_SHOW_AND_FACILITATION_DESIGN.md +222 -0
  182. mission_directives-2.0.1/prompts/111_PROGRAM_PROJECT_AND_OPERATIONS_PLANNING.md +465 -0
  183. mission_directives-2.0.1/prompts/112_WORKSHOP_MEETING_AND_COLLABORATIVE_SESSION_DESIGN.md +294 -0
  184. mission_directives-2.0.1/prompts/113_DOCUMENT_MEMO_REPORT_SOP_AND_POLICY_PRODUCTION.md +469 -0
  185. mission_directives-2.0.1/prompts/114_MARKETING_AUDIENCE_AND_GO_TO_MARKET_STRATEGY.md +468 -0
  186. mission_directives-2.0.1/prompts/115_SALES_ENABLEMENT_CUSTOMER_COMMUNICATION_AND_LIFECYCLE_CONTENT.md +296 -0
  187. mission_directives-2.0.1/prompts/116_SPREADSHEET_FINANCIAL_FORECAST_AND_SCENARIO_MODEL_SPECIFICATION.md +214 -0
  188. mission_directives-2.0.1/prompts/117_LEARNING_EXPERIENCE_CURRICULUM_COURSE_LESSON_AND_ASSESSMENT_RESEARCH_AND_DESIGN_BRIEF.md +318 -0
  189. mission_directives-2.0.1/prompts/118_LEARNING_EXPERIENCE_CURRICULUM_COURSE_LESSON_AND_ASSESSMENT_MATERIAL_PRODUCTION_AND_VALIDATION.md +258 -0
  190. mission_directives-2.0.1/prompts/119_SURVEY_INTERVIEW_QUESTIONNAIRE_AND_RESEARCH_INSTRUMENT_DESIGN.md +347 -0
  191. mission_directives-2.0.1/prompts/11_THREAT_MODELING_AND_ATTACK_SURFACE_ANALYSIS.md +478 -0
  192. mission_directives-2.0.1/prompts/120_GRANT_FUNDING_SPONSORSHIP_AND_AWARD_PROPOSAL_PRODUCTION.md +288 -0
  193. mission_directives-2.0.1/prompts/121_PROFESSIONAL_PROFILE_RESUME_PORTFOLIO_BIO_AND_APPLICATION_PACKAGE.md +217 -0
  194. mission_directives-2.0.1/prompts/122_EMAIL_LETTER_MESSAGE_SPEECH_ANNOUNCEMENT_AND_GENERAL_COMMUNICATION_PRODUCTION.md +217 -0
  195. mission_directives-2.0.1/prompts/123_SOCIAL_MEDIA_SHORT_FORM_AND_COMMUNITY_CONTENT_PRODUCTION.md +295 -0
  196. mission_directives-2.0.1/prompts/124_FEATURE_CHANGE_AND_INTEGRATION_IMPLEMENTATION.md +335 -0
  197. mission_directives-2.0.1/prompts/125_EXPERIMENT_A_B_TEST_AND_CAUSAL_MEASUREMENT_DESIGN.md +304 -0
  198. mission_directives-2.0.1/prompts/126_TRANSLATION_LOCALIZATION_AND_TRANSCREATION.md +298 -0
  199. mission_directives-2.0.1/prompts/127_MEDIA_PRODUCTION_EDITING_AND_DISTRIBUTION_BLUEPRINT.md +303 -0
  200. mission_directives-2.0.1/prompts/128_CONTENT_PERFORMANCE_AND_EDITORIAL_OPTIMIZATION.md +229 -0
  201. mission_directives-2.0.1/prompts/129_ACADEMIC_PEER_REVIEW_METHODOLOGICAL_CRITIQUE_AND_REBUTTAL.md +226 -0
  202. mission_directives-2.0.1/prompts/12_AUTHORIZED_ATTACK_SIMULATION_AND_ADVERSARIAL_VALIDATION.md +188 -0
  203. mission_directives-2.0.1/prompts/130_SEARCH_DISCOVERABILITY_SEO_AEO_AND_INFORMATION_ARCHITECTURE.md +235 -0
  204. mission_directives-2.0.1/prompts/131_PROCUREMENT_VENDOR_EVALUATION_RFP_AND_DUE_DILIGENCE.md +304 -0
  205. mission_directives-2.0.1/prompts/132_WORKFORCE_STRATEGY_AND_CAPACITY_PLANNING.md +228 -0
  206. mission_directives-2.0.1/prompts/133_HIRING_INTERVIEW_SELECTION_AND_ONBOARDING_DESIGN.md +306 -0
  207. mission_directives-2.0.1/prompts/134_PERFORMANCE_COMPETENCY_CAREER_AND_LEARNING_FRAMEWORKS.md +296 -0
  208. mission_directives-2.0.1/prompts/135_CUSTOMER_SUPPORT_AND_SERVICE_OPERATIONS.md +298 -0
  209. mission_directives-2.0.1/prompts/136_CUSTOMER_SUCCESS_RETENTION_AND_VOICE_OF_CUSTOMER.md +227 -0
  210. mission_directives-2.0.1/prompts/137_NEGOTIATION_AND_DECISION_PREPARATION.md +228 -0
  211. mission_directives-2.0.1/prompts/138_PERSONAL_KNOWLEDGE_PRODUCTIVITY_AND_WORK_SYSTEM.md +296 -0
  212. mission_directives-2.0.1/prompts/139_OSINT_RESEARCH_PLANNING_AUTHORIZATION_AND_COLLECTION_GOVERNANCE.md +237 -0
  213. mission_directives-2.0.1/prompts/13_SAFE_EXPLOIT_REPRODUCTION_AND_PATCH_VALIDATION.md +254 -0
  214. mission_directives-2.0.1/prompts/140_OSINT_COLLECTION_SOURCE_VALIDATION_AND_PRESERVATION.md +231 -0
  215. mission_directives-2.0.1/prompts/141_OSINT_ENTITY_TIMELINE_GEOSPATIAL_AND_NETWORK_ANALYSIS.md +230 -0
  216. mission_directives-2.0.1/prompts/142_INTELLIGENCE_ESTIMATE_WARNING_AND_EXECUTIVE_BRIEF.md +236 -0
  217. mission_directives-2.0.1/prompts/143_LEGAL_RESEARCH_AND_ISSUE_ANALYSIS.md +227 -0
  218. mission_directives-2.0.1/prompts/144_CONTRACT_POLICY_AND_CLAUSE_REVIEW.md +302 -0
  219. mission_directives-2.0.1/prompts/145_FINANCE_FP_A_BUDGET_AND_MANAGEMENT_ANALYSIS.md +305 -0
  220. mission_directives-2.0.1/prompts/146_ACCOUNTING_CLOSE_RECONCILIATION_AND_CONTROL_REVIEW.md +234 -0
  221. mission_directives-2.0.1/prompts/147_TREASURY_CASH_FLOW_LIQUIDITY_AND_RUNWAY_PLANNING.md +229 -0
  222. mission_directives-2.0.1/prompts/148_INTERNAL_AUDIT_CONTROL_TESTING_AND_ASSURANCE.md +300 -0
  223. mission_directives-2.0.1/prompts/149_OPERATIONS_PROCESS_DESIGN_AND_CONTINUOUS_IMPROVEMENT.md +228 -0
  224. mission_directives-2.0.1/prompts/14_MODEL_AND_AI_SYSTEM_RED_TEAM_EVALUATION.md +253 -0
  225. mission_directives-2.0.1/prompts/150_SUPPLY_CHAIN_INVENTORY_LOGISTICS_AND_RESILIENCE_PLANNING.md +225 -0
  226. mission_directives-2.0.1/prompts/151_PRODUCT_DISCOVERY_STRATEGY_ROADMAP_AND_LIFECYCLE.md +233 -0
  227. mission_directives-2.0.1/prompts/152_PRODUCT_REQUIREMENTS_ACCEPTANCE_AND_RELEASE_PACKAGE.md +338 -0
  228. mission_directives-2.0.1/prompts/153_BUSINESS_PROCESS_AUTOMATION_AND_WORKFLOW_DESIGN.md +301 -0
  229. mission_directives-2.0.1/prompts/154_DATA_GOVERNANCE_QUALITY_LINEAGE_AND_MASTER_DATA.md +503 -0
  230. mission_directives-2.0.1/prompts/155_COMPETITIVE_INTELLIGENCE_AND_STRATEGIC_SCENARIO_PLANNING.md +303 -0
  231. mission_directives-2.0.1/prompts/156_CRISIS_COMMUNICATION_AND_ISSUES_MANAGEMENT.md +411 -0
  232. mission_directives-2.0.1/prompts/157_PUBLIC_RELATIONS_MEDIA_BRIEFING_AND_THOUGHT_LEADERSHIP.md +580 -0
  233. mission_directives-2.0.1/prompts/158_PARTNERSHIP_ALLIANCE_AND_ECOSYSTEM_STRATEGY.md +231 -0
  234. mission_directives-2.0.1/prompts/159_BOARD_EXECUTIVE_INVESTOR_AND_MANAGEMENT_REPORTING.md +305 -0
  235. mission_directives-2.0.1/prompts/15_INCIDENT_TRIAGE_CONTAINMENT_ERADICATION_AND_RECOVERY.md +274 -0
  236. mission_directives-2.0.1/prompts/160_MEETING_INTELLIGENCE_DECISION_CAPTURE_AND_FOLLOW_THROUGH.md +356 -0
  237. mission_directives-2.0.1/prompts/161_POLICY_ANALYSIS_PUBLIC_AFFAIRS_AND_REGULATORY_MONITORING.md +227 -0
  238. mission_directives-2.0.1/prompts/162_SUSTAINABILITY_ESG_AND_IMPACT_REPORTING.md +231 -0
  239. mission_directives-2.0.1/prompts/163_ETHICS_RESPONSIBLE_AI_HUMAN_RIGHTS_AND_SOCIETAL_IMPACT.md +230 -0
  240. mission_directives-2.0.1/prompts/164_ACCESSIBILITY_PLAIN_LANGUAGE_AND_INCLUSIVE_CONTENT_TRANSFORMATION.md +226 -0
  241. mission_directives-2.0.1/prompts/165_PROMPT_CREATION_AND_SPECIFICATION.md +235 -0
  242. mission_directives-2.0.1/prompts/166_PROMPT_OPTIMIZATION_AND_ENHANCEMENT.md +231 -0
  243. mission_directives-2.0.1/prompts/167_PROMPT_REVIEW_EVALUATION_AND_ADVERSARIAL_TESTING.md +424 -0
  244. mission_directives-2.0.1/prompts/168_PROMPT_REPAIR_REFACTORING_AND_FAILURE_RESOLUTION.md +230 -0
  245. mission_directives-2.0.1/prompts/169_REPORT_ARCHITECTURE_AND_DECISION_NARRATIVE.md +359 -0
  246. mission_directives-2.0.1/prompts/16_PROJECT_SCAFFOLDING_AND_REPOSITORY_BOOTSTRAP.md +229 -0
  247. mission_directives-2.0.1/prompts/170_REPORT_PRODUCTION_VISUALIZATION_BRIEF_AND_QUALITY_ASSURANCE.md +321 -0
  248. mission_directives-2.0.1/prompts/171_CHANGE_MANAGEMENT_ADOPTION_AND_ENABLEMENT.md +239 -0
  249. mission_directives-2.0.1/prompts/172_STAKEHOLDER_MAPPING_ENGAGEMENT_AND_COALITION_PLANNING.md +294 -0
  250. mission_directives-2.0.1/prompts/173_ORGANIZATIONAL_DESIGN_OPERATING_MODEL_AND_GOVERNANCE.md +231 -0
  251. mission_directives-2.0.1/prompts/174_QUALITY_MANAGEMENT_SOP_AUDIT_AND_CONTINUOUS_IMPROVEMENT.md +226 -0
  252. mission_directives-2.0.1/prompts/175_BUSINESS_CONTINUITY_DISASTER_RECOVERY_AND_TABLETOP_EXERCISE.md +230 -0
  253. mission_directives-2.0.1/prompts/176_CORPORATE_STRATEGY_PORTFOLIO_AND_CAPITAL_ALLOCATION.md +231 -0
  254. mission_directives-2.0.1/prompts/177_INNOVATION_PIPELINE_IDEA_PORTFOLIO_AND_EXPERIMENT_GOVERNANCE.md +229 -0
  255. mission_directives-2.0.1/prompts/178_LANGUAGE_MODEL_TASK_INTAKE_CONTEXT_ENGINEERING_AND_PROMPT_PACK.md +236 -0
  256. mission_directives-2.0.1/prompts/179_DEPARTMENT_OPERATING_PLAN_AND_CROSS_FUNCTIONAL_COORDINATION.md +231 -0
  257. mission_directives-2.0.1/prompts/17_STAKEHOLDER_STATUS_ROADMAP_AND_RELEASE_COMMUNICATION.md +260 -0
  258. mission_directives-2.0.1/prompts/180_RECORDS_MANAGEMENT_RETENTION_AND_INSTITUTIONAL_MEMORY.md +228 -0
  259. mission_directives-2.0.1/prompts/181_EMPLOYEE_COMMUNICATION_CULTURE_AND_ENGAGEMENT.md +228 -0
  260. mission_directives-2.0.1/prompts/182_CYBER_THREAT_INTELLIGENCE_AND_SECURITY_RESEARCH.md +231 -0
  261. mission_directives-2.0.1/prompts/183_FRAUD_ABUSE_AND_INTEGRITY_RISK_ANALYSIS.md +223 -0
  262. mission_directives-2.0.1/prompts/184_SALES_OPERATIONS_PIPELINE_FORECAST_AND_REVENUE_PLANNING.md +232 -0
  263. mission_directives-2.0.1/prompts/185_REVENUE_OPERATIONS_AND_LIFECYCLE_MEASUREMENT.md +308 -0
  264. mission_directives-2.0.1/prompts/186_ADMINISTRATIVE_OPERATIONS_TRAVEL_SCHEDULING_AND_EXECUTIVE_SUPPORT.md +294 -0
  265. mission_directives-2.0.1/prompts/187_MODEL_EVALUATION_BENCHMARKING_AND_SELECTION.md +230 -0
  266. mission_directives-2.0.1/prompts/188_LLM_APPLICATION_RAG_MEMORY_AND_TOOL_ARCHITECTURE.md +240 -0
  267. mission_directives-2.0.1/prompts/189_KNOWLEDGE_RETRIEVAL_SEARCH_AND_RAG_QUALITY_EVALUATION.md +320 -0
  268. mission_directives-2.0.1/prompts/18_PROJECT_HEALTH_COMPLETENESS_AND_RELEASE_READINESS_GATE.md +311 -0
  269. mission_directives-2.0.1/prompts/190_AI_GOVERNANCE_MODEL_RISK_AND_DEPLOYMENT_APPROVAL.md +296 -0
  270. mission_directives-2.0.1/prompts/191_INTENT_INTERROGATION_AND_ROUTE_CLARIFICATION.md +229 -0
  271. mission_directives-2.0.1/prompts/192_SKILL_REQUIREMENT_AND_CAPABILITY_FIT_RESOLUTION.md +220 -0
  272. mission_directives-2.0.1/prompts/193_MISSING_SKILL_DISCOVERY_AND_CANDIDATE_QUALIFICATION.md +224 -0
  273. mission_directives-2.0.1/prompts/194_GOVERNED_SKILL_INSTALLATION_AND_DUAL_LOCATION_REGISTRATION.md +232 -0
  274. mission_directives-2.0.1/prompts/195_SKILL_CREATION_EVALUATION_AND_DUAL_LOCATION_REGISTRATION.md +238 -0
  275. mission_directives-2.0.1/prompts/196_GENERIC_CONDITIONAL_SKILL_EXECUTION_ADAPTER.md +232 -0
  276. mission_directives-2.0.1/prompts/197_BOUNDED_PROMPT_AND_SKILL_LOOP_ORCHESTRATOR.md +244 -0
  277. mission_directives-2.0.1/prompts/198_LOOP_EXIT_PLATEAU_AND_COMPLETION_ADJUDICATION_GATE.md +222 -0
  278. mission_directives-2.0.1/prompts/199_PROMPT_ADDITION_REGISTRATION_AND_ECOSYSTEM_INTEGRATION.md +281 -0
  279. mission_directives-2.0.1/prompts/19_RETROSPECTIVE_CONTINUOUS_IMPROVEMENT_AND_LEARNING.md +335 -0
  280. mission_directives-2.0.1/prompts/200_REPOSITORY_MISSION_PROMISE_DEVIATION_BLOAT_AND_SIMPLIFICATION_AUDIT.md +265 -0
  281. mission_directives-2.0.1/prompts/201_HEALTHCARE_CLINICAL_OPERATIONS.md +284 -0
  282. mission_directives-2.0.1/prompts/202_PATIENT_INTAKE.md +285 -0
  283. mission_directives-2.0.1/prompts/203_CARE_PLAN_SUMMARY.md +268 -0
  284. mission_directives-2.0.1/prompts/204_CLINICAL_NOTE_QA.md +274 -0
  285. mission_directives-2.0.1/prompts/205_INSURANCE_PRIOR_AUTH_PACKET.md +275 -0
  286. mission_directives-2.0.1/prompts/206_MEDICAL_BILLING_DENIAL_TRIAGE.md +274 -0
  287. mission_directives-2.0.1/prompts/207_HIPAA_EVIDENCE_CHECKLIST.md +279 -0
  288. mission_directives-2.0.1/prompts/208_INSURANCE_CLAIMS_INTAKE.md +270 -0
  289. mission_directives-2.0.1/prompts/209_UNDERWRITING_RISK_MEMO.md +273 -0
  290. mission_directives-2.0.1/prompts/20_LICENSE_COMPLIANCE_AND_GOVERNANCE_REVIEW.md +197 -0
  291. mission_directives-2.0.1/prompts/210_INSURANCE_POLICY_COMPARISON.md +274 -0
  292. mission_directives-2.0.1/prompts/211_INSURANCE_DENIAL_APPEAL_PREP.md +274 -0
  293. mission_directives-2.0.1/prompts/212_INSURANCE_FRAUD_SIGNAL_REVIEW.md +274 -0
  294. mission_directives-2.0.1/prompts/213_TAX_DOCUMENT_CHECKLIST.md +274 -0
  295. mission_directives-2.0.1/prompts/214_DEDUCTION_EVIDENCE_ORGANIZER.md +270 -0
  296. mission_directives-2.0.1/prompts/215_FILING_RISK_REVIEW.md +277 -0
  297. mission_directives-2.0.1/prompts/216_ENTITY_TAX_PLANNING_BRIEF.md +278 -0
  298. mission_directives-2.0.1/prompts/217_REAL_ESTATE_LISTING_STRATEGY.md +274 -0
  299. mission_directives-2.0.1/prompts/218_PROPERTY_DUE_DILIGENCE.md +280 -0
  300. mission_directives-2.0.1/prompts/219_LEASE_ABSTRACTION.md +283 -0
  301. mission_directives-2.0.1/prompts/21_CONTRIBUTOR_AND_SUPPORT_EXPERIENCE_IMPROVEMENT.md +268 -0
  302. mission_directives-2.0.1/prompts/220_BUYER_SELLER_CHECKLIST.md +270 -0
  303. mission_directives-2.0.1/prompts/221_MARKET_COMP_MEMO.md +274 -0
  304. mission_directives-2.0.1/prompts/222_CONSTRUCTION_SCOPE_OF_WORK.md +274 -0
  305. mission_directives-2.0.1/prompts/223_CONSTRUCTION_PUNCH_LIST.md +270 -0
  306. mission_directives-2.0.1/prompts/224_RFI_TRACKER.md +268 -0
  307. mission_directives-2.0.1/prompts/225_CHANGE_ORDER_REVIEW.md +286 -0
  308. mission_directives-2.0.1/prompts/226_SITE_SAFETY_CHECKLIST.md +279 -0
  309. mission_directives-2.0.1/prompts/227_CONTRACTOR_BID_COMPARISON.md +270 -0
  310. mission_directives-2.0.1/prompts/228_MANUFACTURING_ROOT_CAUSE_QUALITY_ISSUE.md +288 -0
  311. mission_directives-2.0.1/prompts/229_MAINTENANCE_SCHEDULE.md +270 -0
  312. mission_directives-2.0.1/prompts/22_RISK_AND_TECHNICAL_DEBT_PORTFOLIO.md +339 -0
  313. mission_directives-2.0.1/prompts/230_SUPPLIER_DEFECT_REPORT.md +270 -0
  314. mission_directives-2.0.1/prompts/231_QA_ACCEPTANCE_PLAN.md +286 -0
  315. mission_directives-2.0.1/prompts/232_RETAIL_ECOMMERCE_PRODUCT_LISTING_OPTIMIZATION.md +270 -0
  316. mission_directives-2.0.1/prompts/233_MERCHANDISING_CALENDAR.md +270 -0
  317. mission_directives-2.0.1/prompts/234_SKU_RATIONALIZATION.md +273 -0
  318. mission_directives-2.0.1/prompts/235_RETURN_RATE_ANALYSIS.md +285 -0
  319. mission_directives-2.0.1/prompts/236_MARKETPLACE_COMPLIANCE.md +273 -0
  320. mission_directives-2.0.1/prompts/237_HOSPITALITY_GUEST_EXPERIENCE_AUDIT.md +270 -0
  321. mission_directives-2.0.1/prompts/238_ITINERARY_OPERATIONS_PLAN.md +270 -0
  322. mission_directives-2.0.1/prompts/239_EVENT_HOSPITALITY_CHECKLIST.md +270 -0
  323. mission_directives-2.0.1/prompts/23_INFRASTRUCTURE_COST_AND_SUSTAINABILITY_REVIEW.md +196 -0
  324. mission_directives-2.0.1/prompts/240_TRAVEL_DISRUPTION_RESPONSE.md +270 -0
  325. mission_directives-2.0.1/prompts/241_NONPROFIT_DONOR_CAMPAIGN.md +270 -0
  326. mission_directives-2.0.1/prompts/242_NONPROFIT_IMPACT_REPORT.md +270 -0
  327. mission_directives-2.0.1/prompts/243_VOLUNTEER_OPERATIONS.md +270 -0
  328. mission_directives-2.0.1/prompts/244_GRANT_COMPLIANCE_TRACKING.md +274 -0
  329. mission_directives-2.0.1/prompts/245_FIELD_PROGRAM_MONITORING.md +274 -0
  330. mission_directives-2.0.1/prompts/246_GOVERNMENT_PUBLIC_NOTICE_DRAFTING.md +274 -0
  331. mission_directives-2.0.1/prompts/247_CITIZEN_RESPONSE_PACKET.md +270 -0
  332. mission_directives-2.0.1/prompts/248_PROCUREMENT_COMPLIANCE.md +278 -0
  333. mission_directives-2.0.1/prompts/249_POLICY_MEMO.md +268 -0
  334. mission_directives-2.0.1/prompts/24_AGENT_EVALUATION_DRIFT_COST_AND_RATE_GOVERNANCE.md +197 -0
  335. mission_directives-2.0.1/prompts/250_LEGISLATIVE_BILL_SUMMARY.md +283 -0
  336. mission_directives-2.0.1/prompts/251_PRE_PRODUCTION_COMMAND_CENTER.md +274 -0
  337. mission_directives-2.0.1/prompts/252_PUBLICIST_OUTREACH_OPERATIONS.md +270 -0
  338. mission_directives-2.0.1/prompts/253_MEDIA_AGENCY_ACCOUNT_OPERATIONS.md +270 -0
  339. mission_directives-2.0.1/prompts/254_INFLUENCER_CREATOR_CAMPAIGN_OPERATIONS.md +274 -0
  340. mission_directives-2.0.1/prompts/255_CONTENT_PRODUCTION_GRUNTWORK.md +270 -0
  341. mission_directives-2.0.1/prompts/256_CREATIVE_LEGAL_CLEARANCE.md +278 -0
  342. mission_directives-2.0.1/prompts/25_PROJECT_CONSISTENCY_UNIFORMITY_AND_COHERENCE_INVESTIGATION_AND_PLAN.md +219 -0
  343. mission_directives-2.0.1/prompts/26_PROJECT_CONSISTENCY_UNIFORMITY_AND_COHERENCE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +211 -0
  344. mission_directives-2.0.1/prompts/27_CODE_QUALITY_AND_MAINTAINABILITY_INVESTIGATION_AND_PLAN.md +303 -0
  345. mission_directives-2.0.1/prompts/28_CODE_QUALITY_AND_MAINTAINABILITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +213 -0
  346. mission_directives-2.0.1/prompts/29_DEBUGGING_ROOT_CAUSE_AND_BUG_RESOLUTION_INVESTIGATION_AND_PLAN.md +219 -0
  347. mission_directives-2.0.1/prompts/30_DEBUGGING_ROOT_CAUSE_AND_BUG_RESOLUTION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +211 -0
  348. mission_directives-2.0.1/prompts/31_SAFE_CLEANUP_DEAD_CODE_AND_REPOSITORY_HYGIENE_INVESTIGATION_AND_PLAN.md +226 -0
  349. mission_directives-2.0.1/prompts/32_SAFE_CLEANUP_DEAD_CODE_AND_REPOSITORY_HYGIENE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +218 -0
  350. mission_directives-2.0.1/prompts/33_REFACTORING_AND_MODERNIZATION_INVESTIGATION_AND_PLAN.md +219 -0
  351. mission_directives-2.0.1/prompts/34_REFACTORING_AND_MODERNIZATION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +213 -0
  352. mission_directives-2.0.1/prompts/35_TESTING_AND_VERIFICATION_INVESTIGATION_AND_PLAN.md +413 -0
  353. mission_directives-2.0.1/prompts/36_TESTING_AND_VERIFICATION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +212 -0
  354. mission_directives-2.0.1/prompts/37_SECURITY_POSTURE_VULNERABILITY_AND_FIXES_INVESTIGATION_AND_PLAN.md +419 -0
  355. mission_directives-2.0.1/prompts/38_SECURITY_POSTURE_VULNERABILITY_AND_FIXES_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  356. mission_directives-2.0.1/prompts/39_DEPENDENCY_AND_SOFTWARE_SUPPLY_CHAIN_SECURITY_INVESTIGATION_AND_PLAN.md +350 -0
  357. mission_directives-2.0.1/prompts/40_DEPENDENCY_AND_SOFTWARE_SUPPLY_CHAIN_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  358. mission_directives-2.0.1/prompts/41_CONFIGURATION_ENVIRONMENT_AND_SECRETS_SECURITY_INVESTIGATION_AND_PLAN.md +355 -0
  359. mission_directives-2.0.1/prompts/42_CONFIGURATION_ENVIRONMENT_AND_SECRETS_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +220 -0
  360. mission_directives-2.0.1/prompts/43_IDENTITY_AUTHENTICATION_AUTHORIZATION_AND_SESSION_SECURITY_INVESTIGATION_AND_PLAN.md +295 -0
  361. mission_directives-2.0.1/prompts/44_IDENTITY_AUTHENTICATION_AUTHORIZATION_AND_SESSION_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  362. mission_directives-2.0.1/prompts/45_API_CLI_AND_PUBLIC_CONTRACT_INTEGRITY_INVESTIGATION_AND_PLAN.md +306 -0
  363. mission_directives-2.0.1/prompts/46_API_CLI_AND_PUBLIC_CONTRACT_INTEGRITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +215 -0
  364. mission_directives-2.0.1/prompts/47_DATA_STORAGE_SCHEMA_AND_MIGRATION_INVESTIGATION_AND_PLAN.md +362 -0
  365. mission_directives-2.0.1/prompts/48_DATA_STORAGE_SCHEMA_AND_MIGRATION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  366. mission_directives-2.0.1/prompts/49_PERFORMANCE_AND_EFFICIENCY_INVESTIGATION_AND_PLAN.md +290 -0
  367. mission_directives-2.0.1/prompts/50_PERFORMANCE_AND_EFFICIENCY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +214 -0
  368. mission_directives-2.0.1/prompts/51_RELIABILITY_RESILIENCE_AND_RECOVERY_INVESTIGATION_AND_PLAN.md +289 -0
  369. mission_directives-2.0.1/prompts/52_RELIABILITY_RESILIENCE_AND_RECOVERY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +215 -0
  370. mission_directives-2.0.1/prompts/53_CI_BUILD_DELIVERY_AND_RELEASE_PIPELINE_INVESTIGATION_AND_PLAN.md +220 -0
  371. mission_directives-2.0.1/prompts/54_CI_BUILD_DELIVERY_AND_RELEASE_PIPELINE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +214 -0
  372. mission_directives-2.0.1/prompts/55_OBSERVABILITY_DETECTION_AND_OPERATIONS_INVESTIGATION_AND_PLAN.md +347 -0
  373. mission_directives-2.0.1/prompts/56_OBSERVABILITY_DETECTION_AND_OPERATIONS_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +214 -0
  374. mission_directives-2.0.1/prompts/57_CLOUD_CONTAINER_AND_INFRASTRUCTURE_SECURITY_INVESTIGATION_AND_PLAN.md +222 -0
  375. mission_directives-2.0.1/prompts/58_CLOUD_CONTAINER_AND_INFRASTRUCTURE_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  376. mission_directives-2.0.1/prompts/59_PRIVACY_AND_DATA_PROTECTION_INVESTIGATION_AND_PLAN.md +299 -0
  377. mission_directives-2.0.1/prompts/60_PRIVACY_AND_DATA_PROTECTION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  378. mission_directives-2.0.1/prompts/61_AGENT_SKILL_TOOL_AND_MCP_CAPABILITY_LIFECYCLE_INVESTIGATION_AND_PLAN.md +285 -0
  379. mission_directives-2.0.1/prompts/62_AGENT_SKILL_TOOL_AND_MCP_CAPABILITY_LIFECYCLE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +215 -0
  380. mission_directives-2.0.1/prompts/63_AGENTIC_SECURITY_PERMISSIONS_AND_TRUST_BOUNDARIES_INVESTIGATION_AND_PLAN.md +482 -0
  381. mission_directives-2.0.1/prompts/64_AGENTIC_SECURITY_PERMISSIONS_AND_TRUST_BOUNDARIES_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  382. mission_directives-2.0.1/prompts/65_MULTI_AGENT_ARCHITECTURE_AND_AGENT_DEFINITIONS_INVESTIGATION_AND_PLAN.md +222 -0
  383. mission_directives-2.0.1/prompts/66_MULTI_AGENT_ARCHITECTURE_AND_AGENT_DEFINITIONS_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +219 -0
  384. mission_directives-2.0.1/prompts/67_MODEL_AND_AI_SYSTEM_SECURITY_INVESTIGATION_AND_PLAN.md +221 -0
  385. mission_directives-2.0.1/prompts/68_MODEL_AND_AI_SYSTEM_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  386. mission_directives-2.0.1/prompts/69_PROMPT_INJECTION_UNTRUSTED_INPUT_AND_TOOL_OUTPUT_SECURITY_INVESTIGATION_AND_PLAN.md +290 -0
  387. mission_directives-2.0.1/prompts/70_PROMPT_INJECTION_UNTRUSTED_INPUT_AND_TOOL_OUTPUT_SECURITY_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +216 -0
  388. mission_directives-2.0.1/prompts/71_USER_EXPERIENCE_ACCESSIBILITY_AND_LOCALIZATION_INVESTIGATION_AND_PLAN.md +363 -0
  389. mission_directives-2.0.1/prompts/72_USER_EXPERIENCE_ACCESSIBILITY_AND_LOCALIZATION_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +211 -0
  390. mission_directives-2.0.1/prompts/73_BRAND_DESIGN_SYSTEM_AND_CONTENT_COHERENCE_INVESTIGATION_AND_PLAN.md +217 -0
  391. mission_directives-2.0.1/prompts/74_BRAND_DESIGN_SYSTEM_AND_CONTENT_COHERENCE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +211 -0
  392. mission_directives-2.0.1/prompts/75_DOCUMENTATION_KNOWLEDGE_TAXONOMY_AND_TROUBLESHOOTING_INVESTIGATION_AND_PLAN.md +614 -0
  393. mission_directives-2.0.1/prompts/76_DOCUMENTATION_KNOWLEDGE_TAXONOMY_AND_TROUBLESHOOTING_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +470 -0
  394. mission_directives-2.0.1/prompts/77_PROMPT_SUITE_CONSISTENCY_SECURITY_AND_COHERENCE_INVESTIGATION_AND_PLAN.md +289 -0
  395. mission_directives-2.0.1/prompts/78_PROMPT_SUITE_CONSISTENCY_SECURITY_AND_COHERENCE_AUTHORIZED_EXECUTION_AND_VERIFICATION.md +212 -0
  396. mission_directives-2.0.1/prompts/79_DEEP_RESEARCH_AND_EVIDENCE_SYNTHESIS.md +275 -0
  397. mission_directives-2.0.1/prompts/80_RESEARCH_PROTOCOL_LITERATURE_SEARCH_AND_SOURCE_STRATEGY.md +212 -0
  398. mission_directives-2.0.1/prompts/81_DATA_ANALYSIS_STATISTICAL_REASONING_AND_DECISION_SUPPORT.md +343 -0
  399. mission_directives-2.0.1/prompts/82_RESEARCH_INTEGRITY_CITATION_AND_FACT_VERIFICATION.md +223 -0
  400. mission_directives-2.0.1/prompts/83_RESEARCH_BACKED_BLOG_ARTICLE_AND_NEWSLETTER_INVESTIGATION_AND_EDITORIAL_BRIEF.md +238 -0
  401. mission_directives-2.0.1/prompts/84_RESEARCH_BACKED_BLOG_ARTICLE_AND_NEWSLETTER_DRAFTING_EDITING_AND_PUBLICATION_PACKAGE.md +252 -0
  402. mission_directives-2.0.1/prompts/85_SCRIPT_VIDEO_PODCAST_AND_STORYBOARD_RESEARCH_AND_PRODUCTION_BRIEF.md +246 -0
  403. mission_directives-2.0.1/prompts/86_SCRIPT_VIDEO_PODCAST_AND_STORYBOARD_WRITING_AND_PRODUCTION_PACKAGE.md +255 -0
  404. mission_directives-2.0.1/prompts/87_ACADEMIC_PAPER_AND_SCHOLARLY_MANUSCRIPT_RESEARCH_DESIGN_AND_EVIDENCE_PLAN.md +246 -0
  405. mission_directives-2.0.1/prompts/88_ACADEMIC_PAPER_AND_SCHOLARLY_MANUSCRIPT_DRAFTING_CITATION_AND_REVISION_PACKAGE.md +255 -0
  406. mission_directives-2.0.1/prompts/89_FICTION_WORLD_CHARACTER_AND_NARRATIVE_DESIGN.md +204 -0
  407. mission_directives-2.0.1/prompts/90_STORY_FICTION_AND_NARRATIVE_DRAFTING.md +209 -0
  408. mission_directives-2.0.1/prompts/91_POETRY_PROSE_AND_LITERARY_COMPOSITION.md +213 -0
  409. mission_directives-2.0.1/prompts/92_CREATIVE_CRITIQUE_EDITING_AND_ANTI_SLOP_REFINEMENT.md +336 -0
  410. mission_directives-2.0.1/prompts/93_CONTENT_STRATEGY_PORTFOLIO_AND_EDITORIAL_ARCHITECTURE.md +220 -0
  411. mission_directives-2.0.1/prompts/94_CONTENT_GRAPH_KNOWLEDGE_ARCHITECTURE_AND_REPURPOSING_SYSTEM.md +282 -0
  412. mission_directives-2.0.1/prompts/95_CONTENT_CALENDAR_SCHEDULING_AND_DISTRIBUTION_PLANNING.md +465 -0
  413. mission_directives-2.0.1/prompts/96_IDEA_EXPLORATION_CONCEPT_DEVELOPMENT_AND_MOODBOARD_BRIEF.md +405 -0
  414. mission_directives-2.0.1/prompts/97_BRAND_STRATEGY_POSITIONING_NAMING_AND_ARCHITECTURE.md +227 -0
  415. mission_directives-2.0.1/prompts/98_BRAND_IDENTITY_GUIDELINES_AND_ASSET_SYSTEM_PRODUCTION.md +233 -0
  416. mission_directives-2.0.1/prompts/99_CAMPAIGN_CREATIVE_CONCEPT_AND_ACTIVATION_PLANNING.md +222 -0
  417. mission_directives-2.0.1/pyproject.toml +83 -0
  418. mission_directives-2.0.1/requirements-runtime.txt +4 -0
  419. mission_directives-2.0.1/schemas/acceptance_criteria.schema.json +45 -0
  420. mission_directives-2.0.1/schemas/action_plan.schema.json +79 -0
  421. mission_directives-2.0.1/schemas/approval_receipt.schema.json +65 -0
  422. mission_directives-2.0.1/schemas/artifact_lineage.schema.json +121 -0
  423. mission_directives-2.0.1/schemas/auto_orchestration_request.schema.json +79 -0
  424. mission_directives-2.0.1/schemas/claim_ledger.schema.json +88 -0
  425. mission_directives-2.0.1/schemas/cleanup_receipt.schema.json +168 -0
  426. mission_directives-2.0.1/schemas/coherence_fingerprint.schema.json +110 -0
  427. mission_directives-2.0.1/schemas/creative_brief.schema.json +110 -0
  428. mission_directives-2.0.1/schemas/cross_catalog_mapping.schema.json +21 -0
  429. mission_directives-2.0.1/schemas/daily_log_event.schema.json +109 -0
  430. mission_directives-2.0.1/schemas/dashboard_spec.schema.json +121 -0
  431. mission_directives-2.0.1/schemas/deck_blueprint.schema.json +88 -0
  432. mission_directives-2.0.1/schemas/deck_manifest.schema.json +42 -0
  433. mission_directives-2.0.1/schemas/documentation_package_manifest.schema.json +45 -0
  434. mission_directives-2.0.1/schemas/dry_run_manifest.schema.json +77 -0
  435. mission_directives-2.0.1/schemas/evidence_index.schema.json +84 -0
  436. mission_directives-2.0.1/schemas/execution_consent_receipt.schema.json +51 -0
  437. mission_directives-2.0.1/schemas/execution_log.schema.json +49 -0
  438. mission_directives-2.0.1/schemas/finding_register.schema.json +84 -0
  439. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/README.md +7 -0
  440. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-001-pr-code-review-workflow.schema.json +403 -0
  441. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-002-incident-postmortem.schema.json +443 -0
  442. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-003-migration-plan.schema.json +416 -0
  443. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-004-dependency-upgrade-replacement.schema.json +417 -0
  444. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-005-api-contract-design.schema.json +404 -0
  445. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-006-test-strategy-test-repair.schema.json +432 -0
  446. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-007-observability-plan.schema.json +411 -0
  447. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-008-data-pipeline-validation.schema.json +398 -0
  448. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-009-release-notes-changelog.schema.json +429 -0
  449. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-010-repo-developer-onboarding-audit.schema.json +426 -0
  450. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-011-security-threat-model.schema.json +446 -0
  451. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-012-prompt-regression-evaluation.schema.json +411 -0
  452. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-013-agent-handoff-quality-review.schema.json +439 -0
  453. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-014-connector-integration-plan.schema.json +415 -0
  454. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-015-documentation-gap-audit.schema.json +428 -0
  455. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-016-performance-investigation.schema.json +407 -0
  456. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-017-architecture-drift-audit.schema.json +427 -0
  457. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-018-technical-debt-triage.schema.json +419 -0
  458. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-019-rollback-recovery-plan.schema.json +418 -0
  459. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-020-config-environment-audit.schema.json +448 -0
  460. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-021-cli-ux-review.schema.json +530 -0
  461. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-022-schema-evolution-plan.schema.json +408 -0
  462. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-023-eval-dataset-design.schema.json +396 -0
  463. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-024-agent-policy-conflict-audit.schema.json +437 -0
  464. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-025-prompt-catalog-deduplication.schema.json +427 -0
  465. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-026-workflow-wrapper-parity.schema.json +447 -0
  466. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-027-external-action-readiness.schema.json +404 -0
  467. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-028-knowledge-graph-gap-analysis.schema.json +417 -0
  468. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-029-human-approval-packet.schema.json +425 -0
  469. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-030-prompt-injection-red-team-audit.schema.json +396 -0
  470. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-031-attack-path-analysis.schema.json +405 -0
  471. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-032-abuse-case-modeling.schema.json +414 -0
  472. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-033-agent-tool-abuse-audit.schema.json +440 -0
  473. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-034-secrets-exposure-audit.schema.json +436 -0
  474. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-035-supply-chain-risk-review.schema.json +448 -0
  475. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-036-ci-cd-attack-surface-audit.schema.json +426 -0
  476. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-037-agentic-workflow-threat-model.schema.json +416 -0
  477. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-038-security-regression-test-design.schema.json +407 -0
  478. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-039-vulnerability-triage.schema.json +408 -0
  479. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-040-safe-exploit-reproduction-plan.schema.json +407 -0
  480. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-041-auth-authz-review.schema.json +428 -0
  481. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-042-data-exfiltration-audit.schema.json +448 -0
  482. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-043-sandbox-escape-risk-audit.schema.json +425 -0
  483. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-044-red-team-report-generation.schema.json +426 -0
  484. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-045-blue-team-detection-plan.schema.json +416 -0
  485. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-046-security-hardening-plan.schema.json +417 -0
  486. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-047-third-party-connector-security-review.schema.json +446 -0
  487. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-048-malicious-prompt-corpus-builder.schema.json +398 -0
  488. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-049-responsible-disclosure-packet.schema.json +432 -0
  489. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-050-creative-brief-interrogation.schema.json +421 -0
  490. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-051-project-kickoff-interviewer.schema.json +451 -0
  491. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-052-timeline-builder.schema.json +436 -0
  492. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-053-production-schedule-planner.schema.json +464 -0
  493. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-054-content-pipeline-manager.schema.json +407 -0
  494. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-055-previz-planner.schema.json +415 -0
  495. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-056-moodboard-analysis-and-direction-synthesis.schema.json +440 -0
  496. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-057-idea-board-workshop-and-interrogation.schema.json +400 -0
  497. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-058-campaign-calendar-planner.schema.json +457 -0
  498. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-059-stakeholder-alignment-memo.schema.json +412 -0
  499. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-060-manager-status-report.schema.json +426 -0
  500. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-061-meeting-agenda-and-decision-tracker.schema.json +422 -0
  501. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-062-creative-review-interviewer.schema.json +438 -0
  502. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-063-content-repurposing-planner.schema.json +439 -0
  503. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-064-editorial-calendar-gap-audit.schema.json +432 -0
  504. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-065-asset-dependency-tracker.schema.json +418 -0
  505. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-066-approval-workflow-planner.schema.json +414 -0
  506. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-067-risk-register-and-treatment-plan.schema.json +436 -0
  507. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-068-content-and-creative-experiment-design.schema.json +407 -0
  508. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-069-launch-readiness-checklist.schema.json +411 -0
  509. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-070-personal-manager-cockpit.schema.json +398 -0
  510. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-071-client-and-agency-engagement-intake.schema.json +431 -0
  511. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-072-storyboard-critique.schema.json +433 -0
  512. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-073-thumbnail-title-ideation-board.schema.json +427 -0
  513. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-074-creative-decision-log.schema.json +422 -0
  514. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-075-legal-contract-review-triage.schema.json +414 -0
  515. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-076-finance-model-sanity-check.schema.json +431 -0
  516. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-077-hiring-scorecard-builder.schema.json +388 -0
  517. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-078-performance-review-writer.schema.json +398 -0
  518. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-079-procurement-vendor-evaluation.schema.json +433 -0
  519. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-080-customer-support-escalation.schema.json +419 -0
  520. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-081-sales-discovery-interviewer.schema.json +396 -0
  521. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-082-product-requirements-document.schema.json +432 -0
  522. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-083-go-to-market-plan.schema.json +398 -0
  523. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-084-ux-research-plan.schema.json +418 -0
  524. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-085-usability-test-moderator.schema.json +418 -0
  525. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-086-accessibility-audit.schema.json +393 -0
  526. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-087-localization-readiness.schema.json +454 -0
  527. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-088-data-governance-audit.schema.json +438 -0
  528. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-089-privacy-impact-assessment.schema.json +415 -0
  529. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-090-compliance-control-mapping.schema.json +456 -0
  530. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-091-incident-comms-planner.schema.json +408 -0
  531. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-092-training-curriculum-builder.schema.json +396 -0
  532. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-093-sop-and-operational-runbook-creator.schema.json +410 -0
  533. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-094-research-synthesis.schema.json +402 -0
  534. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-095-competitive-teardown.schema.json +401 -0
  535. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-096-community-moderation-policy.schema.json +406 -0
  536. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-097-grant-proposal-builder.schema.json +419 -0
  537. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-098-decision-memo.schema.json +424 -0
  538. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-099-data-cleaning-plan.schema.json +428 -0
  539. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-100-data-quality-report.schema.json +418 -0
  540. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-101-analyst-question-framing.schema.json +429 -0
  541. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-102-exploratory-data-analysis.schema.json +426 -0
  542. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-103-dashboard-requirements-interviewer.schema.json +432 -0
  543. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-104-metric-definition-registry.schema.json +439 -0
  544. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-105-insight-memo.schema.json +427 -0
  545. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-106-pr-strategy-brief.schema.json +411 -0
  546. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-107-press-release-drafting.schema.json +415 -0
  547. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-108-media-pitch-builder.schema.json +419 -0
  548. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-109-publicist-crisis-response.schema.json +396 -0
  549. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-110-media-list-planner.schema.json +409 -0
  550. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-111-campaign-messaging-house.schema.json +409 -0
  551. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-112-marketer-funnel-audit.schema.json +419 -0
  552. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-113-paid-media-brief.schema.json +414 -0
  553. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-114-agency-sow-builder.schema.json +453 -0
  554. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-115-campaign-postmortem.schema.json +397 -0
  555. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-116-influencer-creator-brief.schema.json +397 -0
  556. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-117-brand-reputation-monitor.schema.json +412 -0
  557. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-118-editorial-pitch-calendar.schema.json +425 -0
  558. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-119-pr-risk-review.schema.json +428 -0
  559. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-120-media-kit-builder.schema.json +418 -0
  560. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-121-audience-segmentation-brief.schema.json +417 -0
  561. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-122-healthcare-clinical-operations.schema.json +414 -0
  562. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-123-patient-intake.schema.json +588 -0
  563. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-124-care-plan-summary.schema.json +426 -0
  564. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-125-clinical-note-qa.schema.json +425 -0
  565. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-126-insurance-prior-auth-packet.schema.json +451 -0
  566. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-127-medical-billing-denial-triage.schema.json +418 -0
  567. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-128-hipaa-evidence-checklist.schema.json +436 -0
  568. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-129-insurance-claims-intake.schema.json +419 -0
  569. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-130-underwriting-risk-memo.schema.json +427 -0
  570. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-131-insurance-policy-comparison.schema.json +414 -0
  571. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-132-insurance-denial-appeal-prep.schema.json +429 -0
  572. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-133-insurance-fraud-signal-review.schema.json +407 -0
  573. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-134-tax-document-checklist.schema.json +386 -0
  574. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-135-deduction-evidence-organizer.schema.json +405 -0
  575. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-136-filing-risk-review.schema.json +453 -0
  576. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-137-entity-tax-planning-brief.schema.json +439 -0
  577. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-138-real-estate-listing-strategy.schema.json +417 -0
  578. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-139-property-due-diligence.schema.json +417 -0
  579. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-140-lease-abstraction.schema.json +447 -0
  580. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-141-buyer-seller-checklist.schema.json +418 -0
  581. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-142-market-comp-memo.schema.json +398 -0
  582. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-143-construction-scope-of-work.schema.json +444 -0
  583. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-144-construction-punch-list.schema.json +419 -0
  584. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-145-rfi-tracker.schema.json +405 -0
  585. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-146-change-order-review.schema.json +437 -0
  586. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-147-site-safety-checklist.schema.json +418 -0
  587. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-148-contractor-bid-comparison.schema.json +433 -0
  588. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-149-manufacturing-root-cause-quality-issue.schema.json +465 -0
  589. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-150-maintenance-schedule.schema.json +447 -0
  590. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-151-supplier-defect-report.schema.json +408 -0
  591. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-152-qa-acceptance-plan.schema.json +423 -0
  592. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-153-retail-ecommerce-product-listing-optimization.schema.json +416 -0
  593. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-154-merchandising-calendar.schema.json +440 -0
  594. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-155-sku-rationalization.schema.json +400 -0
  595. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-156-return-rate-analysis.schema.json +398 -0
  596. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-157-marketplace-compliance.schema.json +435 -0
  597. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-158-hospitality-guest-experience-audit.schema.json +439 -0
  598. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-159-itinerary-operations-plan.schema.json +397 -0
  599. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-160-event-hospitality-checklist.schema.json +398 -0
  600. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-161-travel-disruption-response.schema.json +428 -0
  601. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-162-nonprofit-donor-campaign.schema.json +397 -0
  602. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-163-nonprofit-impact-report.schema.json +398 -0
  603. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-164-volunteer-operations.schema.json +402 -0
  604. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-165-grant-compliance-tracking.schema.json +421 -0
  605. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-166-field-program-monitoring.schema.json +405 -0
  606. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-167-government-public-notice-drafting.schema.json +411 -0
  607. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-168-citizen-response-packet.schema.json +439 -0
  608. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-169-procurement-compliance.schema.json +449 -0
  609. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-170-policy-memo.schema.json +533 -0
  610. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-171-legislative-bill-summary.schema.json +403 -0
  611. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-172-pre-production-command-center.schema.json +419 -0
  612. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-173-publicist-outreach-operations.schema.json +419 -0
  613. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-174-media-agency-account-operations.schema.json +421 -0
  614. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-175-influencer-creator-campaign-operations.schema.json +419 -0
  615. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-176-content-production-gruntwork.schema.json +418 -0
  616. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-177-creative-legal-clearance.schema.json +439 -0
  617. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-178-data-incident-response.schema.json +516 -0
  618. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-179-dashboard-qa.schema.json +541 -0
  619. mission_directives-2.0.1/schemas/imported/generic_prompt_library_v3_1/cp-180-executive-assistant-operations.schema.json +505 -0
  620. mission_directives-2.0.1/schemas/installation_receipt.schema.json +50 -0
  621. mission_directives-2.0.1/schemas/installed_skill_inventory.schema.json +41 -0
  622. mission_directives-2.0.1/schemas/intent_clarification.schema.json +47 -0
  623. mission_directives-2.0.1/schemas/loop_exit_decision.schema.json +39 -0
  624. mission_directives-2.0.1/schemas/loop_iteration.schema.json +49 -0
  625. mission_directives-2.0.1/schemas/loop_plan.schema.json +52 -0
  626. mission_directives-2.0.1/schemas/model_profile.schema.json +52 -0
  627. mission_directives-2.0.1/schemas/not_applicable_record.schema.json +40 -0
  628. mission_directives-2.0.1/schemas/pair_adversarial_fixture.schema.json +80 -0
  629. mission_directives-2.0.1/schemas/paired_workflow.schema.json +96 -0
  630. mission_directives-2.0.1/schemas/plan_review_receipt.schema.json +56 -0
  631. mission_directives-2.0.1/schemas/platform_dispatch.schema.json +35 -0
  632. mission_directives-2.0.1/schemas/progress_event.schema.json +38 -0
  633. mission_directives-2.0.1/schemas/project_context.schema.json +427 -0
  634. mission_directives-2.0.1/schemas/prompt_addition_preview.schema.json +40 -0
  635. mission_directives-2.0.1/schemas/prompt_addition_receipt.schema.json +193 -0
  636. mission_directives-2.0.1/schemas/prompt_addition_request.schema.json +133 -0
  637. mission_directives-2.0.1/schemas/prompt_evaluation.schema.json +143 -0
  638. mission_directives-2.0.1/schemas/report_blueprint.schema.json +121 -0
  639. mission_directives-2.0.1/schemas/residual_register.schema.json +61 -0
  640. mission_directives-2.0.1/schemas/run_manifest.schema.json +121 -0
  641. mission_directives-2.0.1/schemas/run_metrics.schema.json +80 -0
  642. mission_directives-2.0.1/schemas/runtime_context.schema.json +133 -0
  643. mission_directives-2.0.1/schemas/scenario_fixture.schema.json +46 -0
  644. mission_directives-2.0.1/schemas/skill_acquisition_record.schema.json +50 -0
  645. mission_directives-2.0.1/schemas/skill_conformance.schema.json +36 -0
  646. mission_directives-2.0.1/schemas/skill_creation_spec.schema.json +80 -0
  647. mission_directives-2.0.1/schemas/skill_execution_request.schema.json +40 -0
  648. mission_directives-2.0.1/schemas/skill_lock.schema.json +48 -0
  649. mission_directives-2.0.1/schemas/skill_requirement.schema.json +49 -0
  650. mission_directives-2.0.1/schemas/template_conformance_report.schema.json +38 -0
  651. mission_directives-2.0.1/schemas/template_descriptor.schema.json +49 -0
  652. mission_directives-2.0.1/schemas/template_route.schema.json +40 -0
  653. mission_directives-2.0.1/schemas/tool_execution_receipt.schema.json +57 -0
  654. mission_directives-2.0.1/schemas/verification_result.schema.json +71 -0
  655. mission_directives-2.0.1/schemas/visual_asset_brief.schema.json +101 -0
  656. mission_directives-2.0.1/skill_registry.json +7322 -0
  657. mission_directives-2.0.1/src/mission_directives/__about__.py +1 -0
  658. mission_directives-2.0.1/src/mission_directives/__init__.py +5 -0
  659. mission_directives-2.0.1/src/mission_directives/__main__.py +3 -0
  660. mission_directives-2.0.1/src/mission_directives/cli.py +163 -0
  661. mission_directives-2.0.1/src/mission_directives/installer.py +484 -0
  662. mission_directives-2.0.1/src/mission_directives/project_config.py +971 -0
  663. mission_directives-2.0.1/src/mission_directives/site/static/viewer.css +289 -0
  664. mission_directives-2.0.1/src/mission_directives/site/templates/base.html +21 -0
  665. mission_directives-2.0.1/src/mission_directives/viewer.py +1178 -0
  666. mission_directives-2.0.1/templates/core/acceptance-criteria.md +178 -0
  667. mission_directives-2.0.1/templates/core/artifact-specification.md +178 -0
  668. mission_directives-2.0.1/templates/core/decision-record.md +178 -0
  669. mission_directives-2.0.1/templates/core/evidence-register.md +178 -0
  670. mission_directives-2.0.1/templates/core/review-receipt.md +178 -0
  671. mission_directives-2.0.1/templates/core/rollback-plan.md +178 -0
  672. mission_directives-2.0.1/templates/core/run-manifest.md +178 -0
  673. mission_directives-2.0.1/templates/core/verification-record.md +178 -0
  674. mission_directives-2.0.1/templates/decks/board-update.md +194 -0
  675. mission_directives-2.0.1/templates/decks/data-story.md +194 -0
  676. mission_directives-2.0.1/templates/decks/design-review.md +194 -0
  677. mission_directives-2.0.1/templates/decks/executive-brief.md +194 -0
  678. mission_directives-2.0.1/templates/decks/incident-review.md +194 -0
  679. mission_directives-2.0.1/templates/decks/investor-update.md +194 -0
  680. mission_directives-2.0.1/templates/decks/presentation-master.md +194 -0
  681. mission_directives-2.0.1/templates/decks/product-strategy.md +194 -0
  682. mission_directives-2.0.1/templates/decks/project-kickoff.md +194 -0
  683. mission_directives-2.0.1/templates/decks/release-readiness.md +194 -0
  684. mission_directives-2.0.1/templates/decks/research-findings.md +194 -0
  685. mission_directives-2.0.1/templates/decks/technical-architecture.md +194 -0
  686. mission_directives-2.0.1/templates/decks/training-workshop.md +194 -0
  687. mission_directives-2.0.1/templates/docs/administrator-manual.md +242 -0
  688. mission_directives-2.0.1/templates/docs/adr.md +242 -0
  689. mission_directives-2.0.1/templates/docs/api-reference.md +242 -0
  690. mission_directives-2.0.1/templates/docs/architecture-guide.md +242 -0
  691. mission_directives-2.0.1/templates/docs/binary-distribution-manual.md +251 -0
  692. mission_directives-2.0.1/templates/docs/cli-reference.md +242 -0
  693. mission_directives-2.0.1/templates/docs/configuration-reference.md +242 -0
  694. mission_directives-2.0.1/templates/docs/contributor-guide.md +242 -0
  695. mission_directives-2.0.1/templates/docs/data-model-reference.md +242 -0
  696. mission_directives-2.0.1/templates/docs/decision-log.md +242 -0
  697. mission_directives-2.0.1/templates/docs/deployment-guide.md +242 -0
  698. mission_directives-2.0.1/templates/docs/developer-guide.md +242 -0
  699. mission_directives-2.0.1/templates/docs/faq.md +242 -0
  700. mission_directives-2.0.1/templates/docs/glossary.md +242 -0
  701. mission_directives-2.0.1/templates/docs/knowledge-base-article.md +242 -0
  702. mission_directives-2.0.1/templates/docs/maintainer-guide.md +242 -0
  703. mission_directives-2.0.1/templates/docs/migration-guide.md +242 -0
  704. mission_directives-2.0.1/templates/docs/observability-guide.md +242 -0
  705. mission_directives-2.0.1/templates/docs/onboarding-guide.md +242 -0
  706. mission_directives-2.0.1/templates/docs/operator-runbook.md +242 -0
  707. mission_directives-2.0.1/templates/docs/performance-guide.md +242 -0
  708. mission_directives-2.0.1/templates/docs/policy.md +242 -0
  709. mission_directives-2.0.1/templates/docs/privacy-guide.md +242 -0
  710. mission_directives-2.0.1/templates/docs/project-handoff.md +242 -0
  711. mission_directives-2.0.1/templates/docs/readme-complete.md +242 -0
  712. mission_directives-2.0.1/templates/docs/release-guide.md +242 -0
  713. mission_directives-2.0.1/templates/docs/requirements-specification.md +242 -0
  714. mission_directives-2.0.1/templates/docs/sdk-reference.md +242 -0
  715. mission_directives-2.0.1/templates/docs/security-guide.md +242 -0
  716. mission_directives-2.0.1/templates/docs/sop.md +242 -0
  717. mission_directives-2.0.1/templates/docs/support-playbook.md +242 -0
  718. mission_directives-2.0.1/templates/docs/system-design.md +242 -0
  719. mission_directives-2.0.1/templates/docs/technical-specification.md +242 -0
  720. mission_directives-2.0.1/templates/docs/testing-guide.md +242 -0
  721. mission_directives-2.0.1/templates/docs/troubleshooting-guide.md +242 -0
  722. mission_directives-2.0.1/templates/docs/upgrade-guide.md +242 -0
  723. mission_directives-2.0.1/templates/docs/user-manual.md +242 -0
  724. mission_directives-2.0.1/templates/reports/audit-report.md +210 -0
  725. mission_directives-2.0.1/templates/reports/compliance-report.md +210 -0
  726. mission_directives-2.0.1/templates/reports/evaluation-report.md +210 -0
  727. mission_directives-2.0.1/templates/reports/executive-report.md +210 -0
  728. mission_directives-2.0.1/templates/reports/experiment-analysis.md +210 -0
  729. mission_directives-2.0.1/templates/reports/incident-report.md +210 -0
  730. mission_directives-2.0.1/templates/reports/professional-report.md +210 -0
  731. mission_directives-2.0.1/templates/reports/research-report.md +210 -0
  732. mission_directives-2.0.1/templates/reports/security-assessment.md +210 -0
  733. mission_directives-2.0.1/templates/reports/status-report.md +210 -0
  734. mission_directives-2.0.1/templates/visual/animated-illustration-specification.md +210 -0
  735. mission_directives-2.0.1/templates/visual/data-visualization-specification.md +210 -0
  736. mission_directives-2.0.1/templates/visual/diagram-specification.md +210 -0
  737. mission_directives-2.0.1/templates/visual/infographic-specification.md +210 -0
  738. mission_directives-2.0.1/templates/visual/visual-asset-brief.md +210 -0
  739. mission_directives-2.0.1/tools/add-prompt.ps1 +14 -0
  740. mission_directives-2.0.1/tools/add-prompt.sh +14 -0
  741. mission_directives-2.0.1/tools/add_prompt.py +1490 -0
  742. mission_directives-2.0.1/tools/agent_paths.py +66 -0
  743. mission_directives-2.0.1/tools/apply_exact_twin_review_gate.py +92 -0
  744. mission_directives-2.0.1/tools/audit_prompt_bodies.py +324 -0
  745. mission_directives-2.0.1/tools/build_capability_graph.py +103 -0
  746. mission_directives-2.0.1/tools/build_crosswalk.py +46 -0
  747. mission_directives-2.0.1/tools/build_manifest.py +187 -0
  748. mission_directives-2.0.1/tools/build_schema_contract_fixtures.py +97 -0
  749. mission_directives-2.0.1/tools/check_documentation_links.py +96 -0
  750. mission_directives-2.0.1/tools/check_generated_reproducibility.py +96 -0
  751. mission_directives-2.0.1/tools/check_release_consistency.py +141 -0
  752. mission_directives-2.0.1/tools/check_script_parity.py +22 -0
  753. mission_directives-2.0.1/tools/check_skill_lock.py +34 -0
  754. mission_directives-2.0.1/tools/cleanup.ps1 +73 -0
  755. mission_directives-2.0.1/tools/cleanup.py +824 -0
  756. mission_directives-2.0.1/tools/cleanup.sh +14 -0
  757. mission_directives-2.0.1/tools/console.py +114 -0
  758. mission_directives-2.0.1/tools/import_prompt_library.py +502 -0
  759. mission_directives-2.0.1/tools/install.ps1 +81 -0
  760. mission_directives-2.0.1/tools/install.py +71 -0
  761. mission_directives-2.0.1/tools/install.sh +14 -0
  762. mission_directives-2.0.1/tools/install_skill_dual.ps1 +14 -0
  763. mission_directives-2.0.1/tools/install_skill_dual.sh +14 -0
  764. mission_directives-2.0.1/tools/intent_router.py +429 -0
  765. mission_directives-2.0.1/tools/keyword_context.py +141 -0
  766. mission_directives-2.0.1/tools/log_query.py +51 -0
  767. mission_directives-2.0.1/tools/md.py +2033 -0
  768. mission_directives-2.0.1/tools/package_smoke.py +181 -0
  769. mission_directives-2.0.1/tools/platform_dispatch.py +45 -0
  770. mission_directives-2.0.1/tools/project_runtime.py +50 -0
  771. mission_directives-2.0.1/tools/promote_golden_run.py +71 -0
  772. mission_directives-2.0.1/tools/prompt_lifecycle.py +93 -0
  773. mission_directives-2.0.1/tools/rebuild_suite_metadata.py +198 -0
  774. mission_directives-2.0.1/tools/refine_prompt_bodies.py +331 -0
  775. mission_directives-2.0.1/tools/register_local_skill_dual.ps1 +14 -0
  776. mission_directives-2.0.1/tools/register_local_skill_dual.py +179 -0
  777. mission_directives-2.0.1/tools/register_local_skill_dual.sh +14 -0
  778. mission_directives-2.0.1/tools/release_meta.py +23 -0
  779. mission_directives-2.0.1/tools/resolve_skill_lock.py +138 -0
  780. mission_directives-2.0.1/tools/run-suite.ps1 +14 -0
  781. mission_directives-2.0.1/tools/run-suite.sh +14 -0
  782. mission_directives-2.0.1/tools/run-tests.ps1 +14 -0
  783. mission_directives-2.0.1/tools/run-tests.sh +14 -0
  784. mission_directives-2.0.1/tools/run_evaluations.py +259 -0
  785. mission_directives-2.0.1/tools/run_model_benchmarks.py +160 -0
  786. mission_directives-2.0.1/tools/run_pair_comparison.py +87 -0
  787. mission_directives-2.0.1/tools/run_skill_conformance.py +145 -0
  788. mission_directives-2.0.1/tools/run_tests.py +202 -0
  789. mission_directives-2.0.1/tools/security_utils.py +449 -0
  790. mission_directives-2.0.1/tools/skill_dual.py +326 -0
  791. mission_directives-2.0.1/tools/summarize_metrics.py +19 -0
  792. mission_directives-2.0.1/tools/sync-agent-guidance.cmd +4 -0
  793. mission_directives-2.0.1/tools/sync-agent-guidance.ps1 +28 -0
  794. mission_directives-2.0.1/tools/sync-agent-guidance.sh +14 -0
  795. mission_directives-2.0.1/tools/sync_agent_guidance.py +509 -0
  796. mission_directives-2.0.1/tools/sync_installed_skills.py +56 -0
  797. mission_directives-2.0.1/tools/telemetry.py +193 -0
  798. mission_directives-2.0.1/tools/template_router.py +104 -0
  799. mission_directives-2.0.1/tools/tool_runtime.py +84 -0
  800. mission_directives-2.0.1/tools/tui.py +83 -0
  801. mission_directives-2.0.1/tools/validate-suite.ps1 +19 -0
  802. mission_directives-2.0.1/tools/validate-suite.sh +14 -0
  803. mission_directives-2.0.1/tools/validate_suite.py +1242 -0
  804. mission_directives-2.0.1/tools/validate_templates.py +71 -0
@@ -0,0 +1,47 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .pytest_cache/
4
+ .ruff_cache/
5
+ .mypy_cache/
6
+ .coverage
7
+ coverage/
8
+ htmlcov/
9
+ *.log
10
+ npm-debug.log*
11
+ pnpm-debug.log*
12
+ yarn-debug.log*
13
+ .DS_Store
14
+ Thumbs.db
15
+ .prompt_suite/logs/
16
+ BODY_QUALITY_AUDIT.json
17
+ BODY_QUALITY_AUDIT.md
18
+ EVALUATION_STATUS.json
19
+ TEST_RESULTS.json
20
+ VALIDATION.json
21
+
22
+ .prompt_suite/results/
23
+ .prompt_suite/runtime/
24
+ .prompt_suite/*.lock
25
+ .prompt_suite/agent-guidance-receipt.json
26
+ agent-guidance-receipt.json
27
+
28
+ .agents/
29
+ .codex/
30
+ .venv/
31
+ venv/
32
+
33
+ # Astro generated and dependency trees
34
+ site/node_modules/
35
+ site/dist/
36
+ site/.astro/
37
+ prompt_imports/
38
+ infographics/
39
+ infographic/
40
+ blog/
41
+ blog.zip
42
+
43
+ # Python package build output
44
+ dist/
45
+ build/
46
+ *.egg-info/
47
+ src/mission_directives/_runtime/
@@ -0,0 +1,7 @@
1
+ Mission Directives is dual-licensed under either of the following licenses at
2
+ your option:
3
+
4
+ - MIT License (see LICENSE-MIT)
5
+ - Apache License, Version 2.0 (see LICENSE-APACHE)
6
+
7
+ SPDX-License-Identifier: MIT OR Apache-2.0
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Manoj Pisini
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,268 @@
1
+ Metadata-Version: 2.4
2
+ Name: mission-directives
3
+ Version: 2.0.1
4
+ Summary: Deterministic prompt routing, project context, and verifiable agent workflows.
5
+ Project-URL: Homepage, https://manojpisini.github.io/mission-directives/
6
+ Project-URL: Documentation, https://manojpisini.github.io/mission-directives/
7
+ Project-URL: Repository, https://github.com/manojpisini/mission-directives
8
+ Project-URL: Issues, https://github.com/manojpisini/mission-directives/issues
9
+ Author: Manoj Pisini
10
+ License-Expression: MIT OR Apache-2.0
11
+ License-File: LICENSE-APACHE
12
+ License-File: LICENSE-MIT
13
+ Keywords: agents,automation,cli,orchestration,prompts
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Environment :: Console
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: jsonschema<5,>=4.20
23
+ Requires-Dist: markdown-it-py<5,>=3
24
+ Requires-Dist: pyyaml<7,>=6.0
25
+ Requires-Dist: uvicorn<1,>=0.30
26
+ Description-Content-Type: text/markdown
27
+
28
+ <p align="center">
29
+ <img src="assets/readme/mission-directives-banner.svg" alt="Mission Directives" width="100%" />
30
+ </p>
31
+
32
+ <p align="center">
33
+ <a href="https://github.com/manojpisini/mission-directives/actions/workflows/validate.yml"><img src="https://github.com/manojpisini/mission-directives/actions/workflows/validate.yml/badge.svg" alt="Validate Mission Directives" /></a>
34
+ <a href="https://github.com/manojpisini/mission-directives/actions/workflows/deploy-docs.yml"><img src="https://github.com/manojpisini/mission-directives/actions/workflows/deploy-docs.yml/badge.svg" alt="Deploy documentation" /></a>
35
+ </p>
36
+
37
+ <p align="center">
38
+ <strong>Bounded, reviewable, and verifiable agent work.</strong><br />
39
+ <a href="https://manojpisini.github.io/mission-directives/">Documentation site</a>
40
+ </p>
41
+
42
+ <p align="center">
43
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
44
+ </p>
45
+
46
+ Mission Directives is a curated prompt and orchestration suite for turning natural-language requests into the smallest coherent prompt, scenario, or workflow graph needed for the outcome. It keeps selection deterministic, authority explicit, and completion tied to evidence instead of asking a model to load a whole library and guess.
47
+
48
+ Current release: **2.0.1**
49
+
50
+ <p align="center">
51
+ <img src="assets/readme/routing-flow.svg" alt="Mission Directives routing flow: route, explain, plan, and verify." width="100%" />
52
+ </p>
53
+
54
+ <p align="center">
55
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
56
+ </p>
57
+
58
+ ## What It Provides
59
+
60
+ - **Deterministic routing:** exact IDs, shortcuts, keyword concepts, route hints, typo recovery, metadata scoring, and calibrated no-match behavior.
61
+ - **Stable prompt contracts:** permanent `MD-*` identities, typed inputs and outputs, operating modes, risk levels, evidence lanes, and completion gates.
62
+ - **Scenario graphs:** atomic and composite workflows with phases, locks, branches, approvals, assurance requirements, and external-action boundaries.
63
+ - **Pinned project runtime:** the installed CLI creates an isolated `.mission-directives/` workspace containing prompts, catalogs, schemas, configuration, outputs, and an independent local viewer.
64
+ - **Project context fast path:** schema-validated project knowledge reduces repeated repository scans without granting authority or overriding current evidence.
65
+ - **Verification discipline:** every route is complete only when the requested artifact satisfies its task-specific verification contract and residuals are explicit.
66
+
67
+ <p align="center">
68
+ <img src="assets/readme/inventory.svg" alt="Repository inventory: 257 prompts, 257 atomic routes, 110 composite scenarios, 62 manuals, and 32 reciprocal pairs." width="100%" />
69
+ </p>
70
+
71
+ Repository inventory: **257 prompts**, **257 atomic routes**, **110 composite scenarios**, **32 reciprocal investigation/execution pairs**, and **62 repository manuals**.
72
+
73
+ <p align="center">
74
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
75
+ </p>
76
+
77
+ ## How It Works
78
+
79
+ ```text
80
+ request
81
+ -> parse MD invocation, exact IDs, intent, depth, and assurance modifiers
82
+ -> resolve shortcut owners and candidate metadata without loading prompt bodies
83
+ -> rank prompt, scenario, pack, and skill candidates
84
+ -> explain the selected graph, modes, inputs, approvals, and verification duties
85
+ -> plan or execute inside the declared authority boundary
86
+ -> verify the exact result and record evidence, unknowns, residuals, and receipts
87
+ ```
88
+
89
+ Prompt numbers are stable addresses, not lifecycle state. Department packs help discovery; they are not bundles to load in full.
90
+
91
+ <p align="center">
92
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
93
+ </p>
94
+
95
+ ## Requirements
96
+
97
+ - Python 3.11 or newer.
98
+ - Git is required for normal development.
99
+ - PowerShell 7 is recommended for Windows wrappers.
100
+ - Bash is required only for POSIX wrappers.
101
+ - The documentation site uses `pnpm`.
102
+
103
+ Runtime dependencies for installed projects are in [requirements-runtime.txt](requirements-runtime.txt). Repository development and validation dependencies are in [requirements-dev.txt](requirements-dev.txt).
104
+
105
+ <p align="center">
106
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
107
+ </p>
108
+
109
+ ## Quick Start
110
+
111
+ ```bash
112
+ uv tool install mission-directives
113
+ cd /path/to/project
114
+ mission-directives init --tracking ignored
115
+ mission-directives config validate
116
+ mission-directives route "MD advanced audit fix verify repository"
117
+ mission-directives view
118
+ ```
119
+
120
+ `pipx install mission-directives` and `python -m pip install --user mission-directives` are also supported. The `mission-directives` executable is used deliberately; `md` is already an all-scope PowerShell alias.
121
+
122
+ <p align="center">
123
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
124
+ </p>
125
+
126
+ ## Install Into a Project
127
+
128
+ Initialize the current directory or an explicit project path:
129
+
130
+ ```bash
131
+ mission-directives init
132
+ mission-directives init /absolute/path/to/project --tracking outputs
133
+ ```
134
+
135
+ The initializer stages and verifies the declared runtime payload before promoting it to `.mission-directives/runtime`. It also creates Project Config, the independent local viewer, seven output categories, managed guidance blocks, state receipts, and the selected `.gitignore` policy in one rollback-capable transaction.
136
+
137
+ Tracking modes are `ignored` (ignore the full workspace), `outputs` (track Project Config and output categories), and `all` (track the pinned runtime and local site while ignoring transient state). Existing managed installations can use `mission-directives upgrade`; legacy managed layouts use `mission-directives migrate . --dry-run` before `--apply`.
138
+
139
+ <p align="center">
140
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
141
+ </p>
142
+
143
+ ## Daily Usage
144
+
145
+ Route the full request:
146
+
147
+ ```bash
148
+ mission-directives route "MD advanced repository mission drift and simplification audit"
149
+ mission-directives lookup "cleanup dead code safely" --limit 8
150
+ mission-directives compare C-108 C-63
151
+ mission-directives explain C-108
152
+ mission-directives plan C-108 --mode AUDIT_ONLY --root . --dry-run
153
+ ```
154
+
155
+ Installed-project routing dispatches through the pinned `.mission-directives/runtime`, so a later global package upgrade cannot silently change project behavior.
156
+
157
+ ## Project Config and Outputs
158
+
159
+ `.mission-directives/project.json` is a validated project knowledge cache. Agents read it before broad discovery, then verify only fields that are missing, stale, contradicted, or material to a high-risk decision. Current user instructions and repository evidence always win; the config cannot authorize mutation, deployment, publication, credentials, or external actions.
160
+
161
+ ```bash
162
+ mission-directives config show
163
+ mission-directives config validate
164
+ mission-directives config refresh --dry-run
165
+ mission-directives config open
166
+ ```
167
+
168
+ Existing logical paths under `results/`, `reports/`, `artifacts/`, `plans/`, `outputs/`, `docs/`, and `logs/` resolve beneath `.mission-directives/`. `mission-directives view` serves those unchanged files through a loopback-only Uvicorn application with category indexes, Markdown articles, attachment previews, Project Config editing, and an authorized shutdown control. Restart it from any project subdirectory with the same command.
169
+
170
+ Common entry points:
171
+
172
+ | Request | Route | Purpose |
173
+ | --- | --- | --- |
174
+ | Clarify route-changing ambiguity | `MD-191` | Ask only questions that alter authority, evidence, output, budget, or acceptance criteria. |
175
+ | Add or refine a prompt | `MD-199` | Review overlap, normalize, register, test, and add one prompt. |
176
+ | Audit, fix, and verify | `C-108` | Run a convergent remediation workflow. |
177
+ | Deep research | `C-26` | Produce an evidence-backed research report. |
178
+ | Professional report | `C-95` | Build and verify a report pipeline. |
179
+ | Feature delivery | `C-63` | Plan, implement, test, and document a feature. |
180
+ | Prompt engineering | `C-94` | Create, optimize, evaluate, or repair prompts. |
181
+ | Personal work system | `MD-138` | Organize goals, projects, tasks, notes, and decisions. |
182
+
183
+ <p align="center">
184
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
185
+ </p>
186
+
187
+ ## Operating Modes
188
+
189
+ | Mode | Boundary |
190
+ | --- | --- |
191
+ | `AUDIT_ONLY` | Inspect, retrieve, analyze, compare, and report without mutation. |
192
+ | `PLAN_ONLY` | Produce plans, specifications, decisions, or acceptance criteria. |
193
+ | `DRAFT_ONLY` | Produce local drafts without implying publication or acceptance. |
194
+ | `APPLY_SAFE` | Make reversible local changes inside explicit authority. |
195
+ | `APPLY_APPROVED` | Perform the exact approved consequential action with receipts and recovery controls. |
196
+ | `VERIFY_ONLY` | Independently verify an artifact or claimed result without changing it. |
197
+
198
+ <p align="center">
199
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
200
+ </p>
201
+
202
+ ## Documentation Site
203
+
204
+ The documentation site is a static Astro build that uses the checked-in landing/documentation HTML, CSS, and JS shell. The generator publishes a sectioned documentation hub: `docs.html` for overview, `guides.html` for task guides, `manuals.html` for the generated manual library, `reference.html` for runtime contracts, `prompts.html` for every prompt, `scenarios.html` for atomic and composite scenarios, `pairs.html` for reciprocal pairs, and every root `docs/*.md` file as a static manual page under `reference/manuals/`.
205
+
206
+ ```bash
207
+ cd site
208
+ pnpm install
209
+ pnpm run generate
210
+ pnpm run build
211
+ pnpm run check
212
+ ```
213
+
214
+ <p align="center">
215
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
216
+ </p>
217
+
218
+ ## Repository Layout
219
+
220
+ | Path | Purpose |
221
+ | --- | --- |
222
+ | `prompts/` | Canonical prompt bodies. |
223
+ | `catalog.json` | Prompt identities, metadata, and relationships. |
224
+ | `SCENARIO_CATALOG.json` | Atomic and composite route graphs. |
225
+ | `config/` | Router keywords, runtime payload allowlist, templates, packs, and capability graph. |
226
+ | `policies/` | Authorization, evidence, routing, install, loop, and agent guidance policies. |
227
+ | `schemas/` | Typed contracts and imported source schemas. |
228
+ | `tools/` | Router, installer, generators, validators, and wrappers. |
229
+ | `src/mission_directives/` | Packaged CLI, project lifecycle, Project Config, and local viewer. |
230
+ | `pyproject.toml` | Public Python distribution metadata and console entry point. |
231
+ | `docs/` | User, operator, authoring, security, and maintenance manuals. |
232
+ | `site/` | Static documentation site source. |
233
+ | `tests/` / `evaluations/` | Repository-only validation and evaluation assets. |
234
+
235
+ <p align="center">
236
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
237
+ </p>
238
+
239
+ ## Validation
240
+
241
+ Before committing runtime, manifest, prompt, schema, docs, or site changes, run the smallest checks that cover the touched surface. For broad changes:
242
+
243
+ ```bash
244
+ python tools/build_manifest.py
245
+ python -m pytest
246
+ python tools/validate_suite.py
247
+ uv build
248
+ python tools/package_smoke.py dist
249
+ cd site && pnpm run check
250
+ ```
251
+
252
+ `tools/validate_suite.py` checks structural contracts, deterministic runtime tests, fixture coverage, identity contracts, CI configuration, lock safety, generated artifact reproducibility, and manifest integrity. It does not certify live model quality or external-world outcomes.
253
+
254
+ Before every broad push, follow the complete ordered checklist in the [GitHub Actions Failure History and Pre-Push Guide](docs/GITHUB_ACTIONS_FAILURE_HISTORY_AND_PRE_PUSH_GUIDE.md). It records all 30 historical validation failures, their fixes, cross-platform prevention rules, the Node 24 action baseline, and the package/site checks required before a push.
255
+
256
+ Repository agents read [MEMORY.md](MEMORY.md) before workflow, manifest, release, installer, wrapper, documentation-generation, or publishing changes and append only verified durable lessons after completion.
257
+
258
+ <p align="center">
259
+ <img src="assets/readme/divider.svg" alt="" width="100%" />
260
+ </p>
261
+
262
+ ## Contributing
263
+
264
+ Start with the [Contributor Guide](docs/CONTRIBUTOR_GUIDE.md) and [pre-push guide](docs/GITHUB_ACTIONS_FAILURE_HISTORY_AND_PRE_PUSH_GUIDE.md). Keep prompt identities stable, update generated registries through their owning tools, add focused regression coverage, rebuild `MANIFEST.json`, and run the validation commands above. Commit messages use past-tense declarative wording without first-person pronouns, for example `Added packaged runtime validation`.
265
+
266
+ ## License
267
+
268
+ Mission Directives is available under your choice of [MIT](LICENSE-MIT) or [Apache-2.0](LICENSE-APACHE). See [LICENSE](LICENSE) for the dual-license notice.