game-analysis-types
Version:
Common TypeScript types and utilities for game analysis tools.
32 lines • 3.82 kB
JavaScript
// Prompt mapping for transformation templates
export const PROMPT_TEMPLATES = {
rule_explanation: {
model: 'claude',
prompt: `You are an expert in tabletop wargaming rules and strategy. Transform the following rules explanation on [topic] into a clear, accessible tactical guide following the Architect of War format. Focus on practical applications and strategic implications rather than just explaining the rules.\n\nRules source: [Insert content]\n\nTransform into:\n1. Clear explanation of the core rule mechanics\n2. Strategic implications of these rules\n3. Tactical applications and exploitation\n4. Common misconceptions or mistakes\n5. Advanced applications for competitive play\n\nStructure the content as:\n[Standard content structure requirements]\n\nInclude practical examples that show:\n- Basic application of the rule\n- Intermediate applications\n- Advanced/competitive uses\n- Interaction with other rule systems\n- Counter-play considerations`
},
battle_report: {
model: 'claude',
prompt: `Extract the deployment principles from multiple Tabletop Tactics battle reports to create a comprehensive deployment guide organized by army type, mission type, and terrain configuration.`
},
youtube_video: {
model: 'gemini',
prompt: `Transform Auspex Tactics' video on 'Nine Basic 40K Gameplay Tips' into a structured tactical guide with added examples, decision trees, and visual aids while maintaining proper attribution.`
},
data_analysis: {
model: 'gemini',
prompt: `You are an expert in tabletop wargaming strategy and data analysis. Transform the following statistical data on [topic] into a structured tactical guide following the Architect of War format. Focus on extracting clear, actionable insights from the data while presenting it in an accessible format.\n\nData source: [Insert content]\n\nExtract and present:\n1. Key statistical patterns and trends\n2. Strategic implications of the data\n3. Tactical recommendations based on the analysis\n4. Practical applications for players\n5. Data-based predictions or forecasts\n\nStructure the content as:\n[Standard content structure requirements]\n\nInclude data visualizations that effectively communicate:\n- Win rate distributions\n- Unit performance comparisons\n- Cost-efficiency analysis\n- Matchup success rates\n- Meta trends over time`
},
expert_interview: {
model: 'claude',
prompt: `You are an expert in tabletop wargaming strategy and content creation. Transform the following interview with [expert name] on [topic] into a structured tactical guide following the Architect of War format. Maintain proper attribution to the expert while organizing their insights into our standard format.\n\nInterview transcript: [Insert content]\n\nExtract and organize key tactical insights focusing on:\n1. Core strategic principles\n2. Practical implementation steps\n3. Common mistakes and how to avoid them\n4. Advanced applications\n5. Matchup considerations\n\nStructure the content as:\n[Standard content structure requirements]\n\nEnsure the expert's unique perspective and approach is preserved while making the content accessible to [target audience level].`
},
blog_content: {
model: 'gemini',
prompt: `Convert Goonhammer's 'Start Competing: How to Assess an Opponent's Army' article into an interactive tactical framework with added scenario analysis and specific counter-strategies for different army archetypes.`
},
coaching_method: {
model: 'claude',
prompt: `Convert Vanguard Tactics' coaching methodology into a structured self-assessment framework that players can use to identify and improve their tactical weaknesses.`
}
};
//# sourceMappingURL=prompts.js.map