Modular_Intelligence / modules.json
botbottingbot's picture
Update modules.json
be82b64 verified
{
"modules": [
{
"id": "analysis_note_v1",
"type": "generator",
"label": "Analysis Note",
"domain": "analysis",
"description": "Structured breakdown of any text, situation, event, or problem.",
"has_checker": true,
"checker_id": "analysis_note_checker_v1",
"input_placeholders": {
"context": "What is being analyzed?",
"goal": "What do you want to understand?",
"constraints": "Any limits or angles?"
},
"output_sections": [
"SUMMARY",
"KEY_POINTS",
"INSIGHTS",
"IMPLICATIONS",
"RISKS",
"RECOMMENDATION"
]
},
{
"id": "document_explainer_v1",
"type": "generator",
"label": "Document Explainer",
"domain": "legal",
"description": "Explain long documents like contracts, judgments, policies, articles.",
"has_checker": true,
"checker_id": "document_explainer_checker_v1",
"input_placeholders": {
"document_text": "Paste the document or excerpt",
"objective": "What do you want extracted or explained?",
"reader_level": "Audience difficulty level"
},
"output_sections": [
"SUMMARY",
"KEY_CLAUSES_OR_SECTIONS",
"MAIN_ISSUES",
"RISKS_OR_IMPLICATIONS",
"ACTION_POINTS",
"SIMPLIFIED_VERSION"
]
},
{
"id": "strategy_memo_v1",
"type": "generator",
"label": "Strategy Memo",
"domain": "strategy",
"description": "Structured decision memo: options → evaluation → recommendation → risks.",
"has_checker": true,
"checker_id": "strategy_memo_checker_v1",
"input_placeholders": {
"context": "Background situation",
"objective": "What outcome do you want?",
"constraints": "Budget / time / legal limits etc."
},
"output_sections": [
"CONTEXT",
"OBJECTIVE",
"CONSTRAINTS",
"OPTIONS",
"RECOMMENDATION",
"RISKS",
"NEXT_ACTIONS"
]
},
{
"id": "message_reply_v1",
"type": "generator",
"label": "Message / Post Reply",
"domain": "analysis",
"description": "Generate replies to posts, emails, chats, comments with structured clarity.",
"has_checker": true,
"checker_id": "message_reply_checker_v1",
"input_placeholders": {
"incoming_text": "What message/post are you replying to?",
"tone": "Desired tone: neutral, firm, polite, concise etc.",
"objective": "What outcome do you want from the reply?"
},
"output_sections": [
"INTENT",
"KEY_POINTS_TO_CONVEY",
"OPTIMAL_REPLY",
"RISKS_IF_MISUNDERSTOOD"
]
},
{
"id": "profile_application_v1",
"type": "generator",
"label": "Profile / Application Writer",
"domain": "analysis",
"description": "Generate bios, statements of purpose, applications, personal summaries.",
"has_checker": true,
"checker_id": "profile_application_checker_v1",
"input_placeholders": {
"profile_data": "Your background or inputs",
"purpose": "Job / application / platform / audience",
"tone": "Professional / concise / confident etc."
},
"output_sections": [
"SUMMARY",
"STRENGTHS",
"RELEVANCE",
"FINAL_OUTPUT",
"RISKS_OR_WEAK_POINTS"
]
},
{
"id": "system_blueprint_v1",
"type": "generator",
"label": "System Blueprint",
"domain": "systems",
"description": "Map, design, or improve systems, workflows, processes, or architectures.",
"has_checker": true,
"checker_id": "system_blueprint_checker_v1",
"input_placeholders": {
"system_context": "Describe the system or process",
"goal": "What improvement or design change is desired?",
"constraints": "Technology, budget, legal, organisational constraints"
},
"output_sections": [
"CONTEXT",
"SYSTEM_MODEL",
"BOTTLENECKS",
"DESIGN_PRINCIPLES",
"IMPROVEMENTS",
"RISKS",
"NEXT_STEPS"
]
},
{
"id": "modular_brainstorm_v1",
"type": "generator",
"label": "Modular Brainstorm",
"domain": "analysis",
"description": "Break any domain or problem into modules + checkers + flows.",
"has_checker": true,
"checker_id": "modular_brainstorm_checker_v1",
"input_placeholders": {
"theme": "What domain or area are you exploring?",
"objective": "What outcome do you want from the brainstorm?",
"constraints": "Any boundaries or assumptions"
},
"output_sections": [
"DOMAIN_BREAKDOWN",
"CORE_MODULES",
"CHECKERS",
"SYSTEM_FLOW",
"KEY_OPPORTUNITIES",
"RISKS",
"NEXT_ACTIONS"
]
},
// ===========================
// CHECKER MODULES
// ===========================
{
"id": "analysis_note_checker_v1",
"type": "checker",
"label": "Analysis Note Checker",
"domain": "analysis",
"output_sections": [
"VERDICT",
"CLARITY_ISSUES",
"MISSING_ELEMENTS",
"LOGIC_GAPS",
"FIXES"
]
},
{
"id": "document_explainer_checker_v1",
"type": "checker",
"label": "Document Explainer Checker",
"domain": "legal",
"output_sections": [
"VERDICT",
"ALIGNMENT",
"CLAUSE_COVERAGE",
"RISKS_MISSED",
"FIXES"
]
},
{
"id": "strategy_memo_checker_v1",
"type": "checker",
"label": "Strategy Memo Checker",
"domain": "strategy",
"output_sections": [
"VERDICT",
"OBJECTIVE_ALIGNMENT",
"OPTION_QUALITY",
"RISKS_GAPS",
"FIXES"
]
},
{
"id": "message_reply_checker_v1",
"type": "checker",
"label": "Message Reply Checker",
"domain": "analysis",
"output_sections": [
"VERDICT",
"TONE_ALIGNMENT",
"MISUNDERSTANDING_RISKS",
"IMPROVEMENT_POINTS",
"FIXES"
]
},
{
"id": "profile_application_checker_v1",
"type": "checker",
"label": "Profile/Application Checker",
"domain": "analysis",
"output_sections": [
"VERDICT",
"TONE_ISSUES",
"CLARITY_GAPS",
"RELEVANCE_GAPS",
"FIXES"
]
},
{
"id": "system_blueprint_checker_v1",
"type": "checker",
"label": "System Blueprint Checker",
"domain": "systems",
"output_sections": [
"VERDICT",
"SYSTEM_VALIDITY",
"BOTTLENECK_GAPS",
"RISK_ISSUES",
"FIXES"
]
},
{
"id": "modular_brainstorm_checker_v1",
"type": "checker",
"label": "Modular Brainstorm Checker",
"domain": "analysis",
"output_sections": [
"VERDICT",
"COVERAGE_GAPS",
"MODULE_VALIDITY",
"SYSTEM_FLOW_ISSUES",
"FIXES"
]
}
]
}