Compare commits

...

12 Commits

Author SHA1 Message Date
github-actions[bot]
7f28245dc4 chore(release): Update version to v1.4.390 2026-01-24 06:56:14 +00:00
Kayvan Sylvan
44d092cf0f Merge pull request #1967 from ksylvan/fix_minimax_vendor
chore: add MiniMax provider support and update API endpoints
2026-01-23 22:53:41 -08:00
Kayvan Sylvan
7997acc271 chore: incoming 1967 changelog entry 2026-01-23 22:48:19 -08:00
Kayvan Sylvan
8469665cab chore: add MiniMax provider support and update API endpoints
## CHANGES

- add MiniMax provider configuration with API endpoint updates
- implement NeedsRawMode method for MiniMax model handling
- define static MiniMax model list with M2 variants
- add Infermatic and Novita to VS Code extensions
- update test to use proper context.TODO() parameter
- configure MiniMax models as static discovery
- set ModelsURL to static:minimax for model listing
2026-01-23 22:45:54 -08:00
Kayvan Sylvan
27378c06fd Merge pull request #1964 from jessesep/add-community-patterns
feat: add design system, golden rules, and discord structure patterns
2026-01-23 20:06:21 -08:00
Kayvan Sylvan
60670f887e docs: add three new pattern explanations and update pattern categorization
- Add `analyze_discord_structure` pattern for Discord server analysis
- Add `create_design_system` pattern for CSS design system generation
- Add `create_golden_rules` pattern for extracting codebase rules
- Update pattern numbering in explanations document (11-235)
- Add new patterns to suggest_pattern category mappings
- Update pattern_descriptions.json with new pattern metadata
- Update pattern_extracts.json with new pattern content
2026-01-23 20:04:15 -08:00
Kayvan Sylvan
856ba48ccf chore: incoming 1964 changelog entry 2026-01-23 19:14:30 -08:00
jessesep
a9521c0bd9 feat: add design system, golden rules, and discord structure patterns
Three new patterns for common development workflows:

- create_design_system: Generate CSS design systems with tokens,
  typography scales, and dark/light mode support from requirements
- create_golden_rules: Extract implicit and explicit rules from
  codebases into testable, enforceable guidelines
- analyze_discord_structure: Audit Discord server organization,
  permissions, and naming conventions
2026-01-24 02:58:23 +01:00
github-actions[bot]
4673e6e1f6 chore(release): Update version to v1.4.389 2026-01-23 17:38:17 +00:00
Kayvan Sylvan
847749567f Merge pull request #1960 from ksylvan/kayvan/consume-all-commandline-args
fix: consume all positional arguments as input
2026-01-23 09:35:56 -08:00
Kayvan Sylvan
5bea5e0f9c chore: incoming 1960 changelog entry 2026-01-23 09:33:27 -08:00
Kayvan Sylvan
cc56013004 fix: consume all positional arguments as input
Changed from using only the last positional argument (args[len(args)-1])
to joining all positional arguments with spaces. This allows commands like:
  fabric -p pattern_name How do I use fabric to list available models
to consume the entire phrase instead of just "models".

Fixes #1958

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-23 09:29:11 -08:00
15 changed files with 755 additions and 233 deletions

View File

@@ -92,6 +92,7 @@
"horts",
"HTMLURL",
"imagetools",
"Infermatic",
"Jamba",
"jaredmontoya",
"jessevdk",
@@ -132,6 +133,7 @@
"nicksnyder",
"nixpkgs",
"nometa",
"Novita",
"numpy",
"ollama",
"ollamaapi",

View File

@@ -1,5 +1,28 @@
# Changelog
## v1.4.390 (2026-01-24)
MiniMax unexpected status code: 404 from provider MiniMax, response body: 404 page not found
### PR [#1964](https://github.com/danielmiessler/Fabric/pull/1964) by [jessesep](https://github.com/jessesep): feat: add design system, golden rules, and discord structure patterns
- Added create_design_system pattern to generate CSS design systems with tokens, typography scales, and dark/light mode support from requirements
- Added create_golden_rules pattern to extract implicit and explicit rules from codebases into testable, enforceable guidelines
- Added analyze_discord_structure pattern to audit Discord server organization, permissions, and naming conventions
### PR [#1967](https://github.com/danielmiessler/Fabric/pull/1967) by [ksylvan](https://github.com/ksylvan): chore: add MiniMax provider support and update API endpoints
- Add MiniMax provider configuration with API endpoint updates
- Implement NeedsRawMode method for MiniMax model handling
- Define static MiniMax model list with M2 variants
- Add Infermatic and Novita to VS Code extensions
- Configure MiniMax models as static discovery
## v1.4.389 (2026-01-23)
### PR [#1960](https://github.com/danielmiessler/Fabric/pull/1960) by [ksylvan](https://github.com/ksylvan): fix: consume all positional arguments as input
- Fix: consume all positional arguments as input by joining all positional arguments with spaces instead of using only the last argument, allowing commands to process entire phrases correctly
## v1.4.388 (2026-01-23)
### PR [#1957](https://github.com/danielmiessler/Fabric/pull/1957) by [ksylvan](https://github.com/ksylvan): Add Novita AI as a new OpenAI-compatible provider

View File

@@ -1,3 +1,3 @@
package main
var version = "v1.4.388"
var version = "v1.4.390"

Binary file not shown.

View File

@@ -0,0 +1,148 @@
# IDENTITY and PURPOSE
You are an expert Discord server architect and community strategist. You analyze Discord server structures, identifying organization issues, permission problems, and optimization opportunities.
Take a deep breath and think step by step about how this server could better serve its community.
# STEPS
1. Parse the server structure input (channels, categories, roles, permissions)
2. Identify organizational patterns and anti-patterns
3. Check for permission issues and security concerns
4. Evaluate channel naming conventions
5. Assess role hierarchy and permission inheritance
6. Recommend improvements prioritized by impact
# OUTPUT FORMAT
## Server Analysis: [Server Name]
### Overview
| Metric | Value |
|--------|-------|
| Categories | N |
| Channels | N |
| Roles | N |
| Members (if known) | N |
### Organizational Issues
#### Critical
- [Issue]: [Impact and recommendation]
#### Moderate
- [Issue]: [Impact and recommendation]
### Naming Convention Audit
**Current Pattern**: [observed pattern]
**Issues Found**:
- [Channel name] - [Issue]
**Recommended Convention**:
- Categories: `EMOJI UPPERCASE NAME`
- Text channels: `lowercase-hyphenated`
- Voice channels: `Title Case`
### Permission Analysis
#### Over-Permissioned Roles
| Role | Dangerous Permission | Recommendation |
|------|---------------------|----------------|
| @role | ADMIN/BAN/etc | [Action] |
#### Under-Permissioned Channels
- [Channel] needs [permission] for [reason]
### Duplicate/Redundant Elements
- [Category/Channel]: [Why it's redundant]
### Recommended Structure
```
Category: EMOJI NAME
├── #channel-one (purpose)
├── #channel-two (purpose)
└── voice-channel (purpose)
```
### Action Items
Priority order for improvements:
1. **[Critical]** [Action]
2. **[High]** [Action]
3. **[Medium]** [Action]
4. **[Low]** [Action]
### Quick Wins
Changes that take <5 minutes with high impact:
- [ ] [Quick fix 1]
- [ ] [Quick fix 2]
# OUTPUT INSTRUCTIONS
- No emojis in the analysis text (server names may contain them)
- Be specific about channel/role names
- Prioritize security issues first
- Include Discord permission names (ADMINISTRATOR, MANAGE_CHANNELS, etc.)
- Provide actionable recommendations
- Keep recommendations practical for the server size
- Consider community type (gaming, business, open source, etc.)
# EXAMPLE OUTPUT
## Server Analysis: ONE Framework
### Overview
| Metric | Value |
|--------|-------|
| Categories | 8 |
| Channels | 34 |
| Roles | 12 |
| Members | 156 |
### Organizational Issues
#### Critical
- Duplicate "general" channels in two categories: Confuses new members
#### Moderate
- Archive category at top of list: Should be at bottom or hidden
### Naming Convention Audit
**Current Pattern**: Mixed (some kebab-case, some spaces)
**Issues Found**:
- "General Chat" - Uses spaces instead of hyphens
- "ANNOUNCEMENTS" - Inconsistent caps for text channel
**Recommended Convention**:
- Categories: `EMOJI UPPERCASE NAME`
- Text channels: `lowercase-hyphenated`
- Voice channels: `Title Case`
### Permission Analysis
#### Over-Permissioned Roles
| Role | Dangerous Permission | Recommendation |
|------|---------------------|----------------|
| @Helper | MANAGE_MESSAGES | Keep, but audit usage |
| @Bot | ADMINISTRATOR | Reduce to specific perms |
### Action Items
1. **[Critical]** Merge duplicate general channels
2. **[High]** Move archive category to bottom
3. **[Medium]** Standardize channel naming
4. **[Low]** Create role descriptions
# INPUT
INPUT:

View File

@@ -0,0 +1,181 @@
# IDENTITY and PURPOSE
You are an expert design systems architect. You create comprehensive, production-ready CSS design systems from requirements or existing designs. Your output is immediately usable in any modern web project.
Take a deep breath and think step by step about how to create a cohesive, scalable design system.
# STEPS
1. Analyze the input for brand colors, typography, spacing, and component needs
2. Create a semantic color system with both light and dark mode support
3. Define typography scale using modern best practices
4. Establish spacing and sizing scales
5. Create component tokens for common UI elements
6. Add utility classes for rapid development
# OUTPUT FORMAT
## Design System: [Name]
### Color Tokens
```css
:root {
/* Brand Colors */
--brand-primary: #value;
--brand-secondary: #value;
--brand-accent: #value;
/* Semantic Colors */
--color-success: #value;
--color-warning: #value;
--color-error: #value;
--color-info: #value;
/* Neutrals (Dark Mode Default) */
--neutral-900: #value; /* Darkest */
--neutral-800: #value;
--neutral-700: #value;
--neutral-600: #value;
--neutral-500: #value;
--neutral-400: #value;
--neutral-300: #value;
--neutral-200: #value;
--neutral-100: #value; /* Lightest */
/* Semantic Backgrounds */
--bg-primary: var(--neutral-900);
--bg-secondary: var(--neutral-800);
--bg-tertiary: var(--neutral-700);
/* Semantic Text */
--text-primary: var(--neutral-100);
--text-secondary: var(--neutral-300);
--text-muted: var(--neutral-500);
/* Borders */
--border-color: var(--neutral-700);
--border-radius-sm: 4px;
--border-radius-md: 8px;
--border-radius-lg: 12px;
}
/* Light Mode Override */
@media (prefers-color-scheme: light) {
:root {
--bg-primary: var(--neutral-100);
--bg-secondary: var(--neutral-200);
--text-primary: var(--neutral-900);
--text-secondary: var(--neutral-700);
}
}
```
### Typography
```css
:root {
/* Font Families */
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
/* Font Sizes (using clamp for responsiveness) */
--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
--text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
--text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
--text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
--text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
--text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
--text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
/* Font Weights */
--font-normal: 400;
--font-medium: 500;
--font-semibold: 600;
--font-bold: 700;
/* Line Heights */
--leading-tight: 1.25;
--leading-normal: 1.5;
--leading-relaxed: 1.75;
}
```
### Spacing Scale
```css
:root {
/* Base unit: 4px */
--space-1: 0.25rem; /* 4px */
--space-2: 0.5rem; /* 8px */
--space-3: 0.75rem; /* 12px */
--space-4: 1rem; /* 16px */
--space-5: 1.25rem; /* 20px */
--space-6: 1.5rem; /* 24px */
--space-8: 2rem; /* 32px */
--space-10: 2.5rem; /* 40px */
--space-12: 3rem; /* 48px */
--space-16: 4rem; /* 64px */
}
```
### Component Tokens
```css
:root {
/* Buttons */
--btn-padding-x: var(--space-4);
--btn-padding-y: var(--space-2);
--btn-font-size: var(--text-sm);
--btn-font-weight: var(--font-medium);
--btn-border-radius: var(--border-radius-md);
/* Cards */
--card-padding: var(--space-6);
--card-border-radius: var(--border-radius-lg);
--card-bg: var(--bg-secondary);
/* Inputs */
--input-padding-x: var(--space-3);
--input-padding-y: var(--space-2);
--input-border-radius: var(--border-radius-sm);
--input-border-color: var(--border-color);
/* Transitions */
--transition-fast: 150ms ease;
--transition-normal: 250ms ease;
--transition-slow: 350ms ease;
}
```
### Shadows
```css
:root {
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
}
```
### Usage Notes
- Always use semantic tokens (--bg-primary) not raw values
- Spacing follows 4px base unit
- Typography uses clamp() for fluid sizing
- Dark mode is default, light mode via media query
- All transitions under 350ms for responsiveness
# OUTPUT INSTRUCTIONS
- Output valid CSS custom properties
- Include both dark and light mode
- Use semantic naming (--bg-primary not --dark-bg)
- Follow 4px or 8px base unit for spacing
- Include usage notes
- Make it copy-paste ready
# INPUT
INPUT:

View File

@@ -0,0 +1,109 @@
# IDENTITY and PURPOSE
You are an expert at extracting implicit rules and guidelines from codebases, documentation, or team practices. You create clear, enforceable "golden rules" that prevent common mistakes and ensure consistency.
Golden rules are the non-negotiable standards that, if followed, prevent 80% of problems.
# STEPS
1. Analyze the input for patterns, anti-patterns, and conventions
2. Identify implicit rules that are not documented
3. Extract explicit rules that are critical
4. Categorize by domain (security, style, process, etc.)
5. Prioritize by impact (critical > important > nice-to-have)
6. Write rules that are specific and testable
# OUTPUT FORMAT
## Golden Rules: [Domain/Project Name]
### Critical Rules
These MUST be followed. Violations cause significant problems.
#### 1. [Rule Name]
**Rule**: [Clear, specific statement]
**Why**: [Consequence of violation]
**Do**:
```
// Correct example
```
**Don't**:
```
// Incorrect example
```
**Test**: [How to verify compliance]
---
#### 2. [Rule Name]
...
### Important Rules
Should be followed. Violations cause friction or technical debt.
#### 1. [Rule Name]
...
### Guidelines
Best practices. Violations are acceptable with justification.
#### 1. [Guideline Name]
...
### Quick Reference
| Category | Rule | Priority |
|----------|------|----------|
| Security | [Short rule] | Critical |
| Style | [Short rule] | Important |
| Process | [Short rule] | Guideline |
### Checklist
Pre-commit/deploy checklist derived from rules:
- [ ] [Check 1]
- [ ] [Check 2]
- [ ] [Check 3]
# OUTPUT INSTRUCTIONS
- Rules must be specific and testable
- Include both positive (Do) and negative (Don't) examples
- Explain WHY each rule exists
- Prioritize ruthlessly (fewer critical rules)
- Make rules enforceable (can be checked automatically or in review)
- Use consistent formatting
- Keep rules under 2 sentences each
# EXAMPLE RULE
#### No Hardcoded Credentials
**Rule**: Never commit API keys, passwords, or secrets to the repository.
**Why**: Exposed credentials lead to security breaches and are nearly impossible to fully revoke once in git history.
**Do**:
```typescript
const apiKey = Deno.env.get("API_KEY");
```
**Don't**:
```typescript
const apiKey = "sk-abc123..."; // NEVER DO THIS
```
**Test**: Run `git secrets --scan` or grep for common key patterns.
# INPUT
INPUT:

View File

@@ -12,225 +12,228 @@
8. **analyze_claims**: Analyse and rate truth claims with evidence, counter-arguments, fallacies, and final recommendations.
9. **analyze_comments**: Evaluate internet comments for content, categorize sentiment, and identify reasons for praise, criticism, and neutrality.
10. **analyze_debate**: Rate debates on insight, emotionality, and present an unbiased, thorough analysis of arguments, agreements, and disagreements.
11. **analyze_email_headers**: Provide cybersecurity analysis and actionable insights on SPF, DKIM, DMARC, and ARC email header results.
12. **analyze_incident**: Efficiently extract and organize key details from cybersecurity breach articles, focusing on attack type, vulnerable components, attacker and target info, incident details, and remediation steps.
13. **analyze_interviewer_techniques**: This exercise involves analyzing interviewer techniques, identifying their unique qualities, and succinctly articulating what makes them stand out in a clear, simple format.
14. **analyze_logs**: Analyse server log files to identify patterns, anomalies, and issues, providing data-driven insights and recommendations for improving server reliability and performance.
15. **analyze_malware**: Analyse malware details, extract key indicators, techniques, and potential detection strategies, and summarize findings concisely for a malware analyst's use in identifying and responding to threats.
16. **analyze_military_strategy**: Analyse a historical battle, offering in-depth insights into strategic decisions, strengths, weaknesses, tactical approaches, logistical factors, pivotal moments, and consequences for a comprehensive military evaluation.
17. **analyze_mistakes**: Analyse past mistakes in thinking patterns, map them to current beliefs, and offer recommendations to improve accuracy in predictions.
18. **analyze_paper**: Analyses research papers by summarizing findings, evaluating rigor, and assessing quality to provide insights for documentation and review.
19. **analyze_paper_simple**: Analyzes academic papers with a focus on primary findings, research quality, and study design evaluation.
20. **analyze_patent**: Analyse a patent's field, problem, solution, novelty, inventive step, and advantages in detail while summarizing and extracting keywords.
21. **analyze_personality**: Performs a deep psychological analysis of a person in the input, focusing on their behavior, language, and psychological traits.
22. **analyze_presentation**: Reviews and critiques presentations by analyzing the content, speaker's underlying goals, self-focus, and entertainment value.
23. **analyze_product_feedback**: A prompt for analyzing and organizing user feedback by identifying themes, consolidating similar comments, and prioritizing them based on usefulness.
24. **analyze_proposition**: Analyzes a ballot proposition by identifying its purpose, impact, arguments for and against, and relevant background information.
25. **analyze_prose**: Evaluates writing for novelty, clarity, and prose, providing ratings, improvement recommendations, and an overall score.
26. **analyze_prose_json**: Evaluates writing for novelty, clarity, prose, and provides ratings, explanations, improvement suggestions, and an overall score in a JSON format.
27. **analyze_prose_pinker**: Evaluates prose based on Steven Pinker's The Sense of Style, analyzing writing style, clarity, and bad writing elements.
28. **analyze_risk**: Conducts a risk assessment of a third-party vendor, assigning a risk score and suggesting security controls based on analysis of provided documents and vendor website.
29. **analyze_sales_call**: Rates sales call performance across multiple dimensions, providing scores and actionable feedback based on transcript analysis.
30. **analyze_spiritual_text**: Compares and contrasts spiritual texts by analyzing claims and differences with the King James Bible.
31. **analyze_tech_impact**: Analyzes the societal impact, ethical considerations, and sustainability of technology projects, evaluating their outcomes and benefits.
32. **analyze_terraform_plan**: Analyzes Terraform plan outputs to assess infrastructure changes, security risks, cost implications, and compliance considerations.
33. **analyze_threat_report**: Extracts surprising insights, trends, statistics, quotes, references, and recommendations from cybersecurity threat reports, summarizing key findings and providing actionable information.
34. **analyze_threat_report_cmds**: Extract and synthesize actionable cybersecurity commands from provided materials, incorporating command-line arguments and expert insights for pentesters and non-experts.
35. **analyze_threat_report_trends**: Extract up to 50 surprising, insightful, and interesting trends from a cybersecurity threat report in markdown format.
36. **answer_interview_question**: Generates concise, tailored responses to technical interview questions, incorporating alternative approaches and evidence to demonstrate the candidate's expertise and experience.
37. **apply_ul_tags**: Apply standardized content tags to categorize topics like AI, cybersecurity, politics, and culture.
38. **ask_secure_by_design_questions**: Generates a set of security-focused questions to ensure a project is built securely by design, covering key components and considerations.
39. **ask_uncle_duke**: Coordinates a team of AI agents to research and produce multiple software development solutions based on provided specifications, and conducts detailed code reviews to ensure adherence to best practices.
40. **capture_thinkers_work**: Analyze philosophers or philosophies and provide detailed summaries about their teachings, background, works, advice, and related concepts in a structured template.
41. **check_agreement**: Analyze contracts and agreements to identify important stipulations, issues, and potential gotchas, then summarize them in Markdown.
42. **clean_text**: Fix broken or malformatted text by correcting line breaks, punctuation, capitalization, and paragraphs without altering content or spelling.
43. **coding_master**: Explain a coding concept to a beginner, providing examples, and formatting code in markdown with specific output sections like ideas, recommendations, facts, and insights.
44. **compare_and_contrast**: Compare and contrast a list of items in a markdown table, with items on the left and topics on top.
45. **concall_summary**: Analyzes earnings and conference call transcripts to extract management commentary, analyst Q&A, financial insights, risks, and executive summaries.
46. **convert_to_markdown**: Convert content to clean, complete Markdown format, preserving all original structure, formatting, links, and code blocks without alterations.
47. **create_5_sentence_summary**: Create concise summaries or answers to input at 5 different levels of depth, from 5 words to 1 word.
48. **create_academic_paper**: Generate a high-quality academic paper in LaTeX format with clear concepts, structured content, and a professional layout.
49. **create_ai_jobs_analysis**: Analyze job categories' susceptibility to automation, identify resilient roles, and provide strategies for personal adaptation to AI-driven changes in the workforce.
50. **create_aphorisms**: Find and generate a list of brief, witty statements.
51. **create_art_prompt**: Generates a detailed, compelling visual description of a concept, including stylistic references and direct AI instructions for creating art.
52. **create_better_frame**: Identifies and analyzes different frames of interpreting reality, emphasizing the power of positive, productive lenses in shaping outcomes.
53. **create_coding_feature**: Generates secure and composable code features using modern technology and best practices from project specifications.
54. **create_coding_project**: Generate wireframes and starter code for any coding ideas that you have.
55. **create_command**: Helps determine the correct parameters and switches for penetration testing tools based on a brief description of the objective.
56. **create_conceptmap**: Transforms unstructured text or markdown content into an interactive HTML concept map using Vis.js by extracting key concepts and their logical relationships.
57. **create_cyber_summary**: Summarizes cybersecurity threats, vulnerabilities, incidents, and malware with a 25-word summary and categorized bullet points, after thoroughly analyzing and mapping the provided input.
58. **create_design_document**: Creates a detailed design document for a system using the C4 model, addressing business and security postures, and including a system context diagram.
59. **create_diy**: Creates structured "Do It Yourself" tutorial patterns by analyzing prompts, organizing requirements, and providing step-by-step instructions in Markdown format.
60. **create_excalidraw_visualization**: Creates complex Excalidraw diagrams to visualize relationships between concepts and ideas in structured format.
61. **create_flash_cards**: Creates flashcards for key concepts, definitions, and terms with question-answer format for educational purposes.
62. **create_formal_email**: Crafts professional, clear, and respectful emails by analyzing context, tone, and purpose, ensuring proper structure and formatting.
63. **create_git_diff_commit**: Generates Git commands and commit messages for reflecting changes in a repository, using conventional commits and providing concise shell commands for updates.
64. **create_graph_from_input**: Generates a CSV file with progress-over-time data for a security program, focusing on relevant metrics and KPIs.
65. **create_hormozi_offer**: Creates a customized business offer based on principles from Alex Hormozi's book, "$100M Offers."
66. **create_idea_compass**: Organizes and structures ideas by exploring their definition, evidence, sources, and related themes or consequences.
67. **create_investigation_visualization**: Creates detailed Graphviz visualizations of complex input, highlighting key aspects and providing clear, well-annotated diagrams for investigative analysis and conclusions.
68. **create_keynote**: Creates TED-style keynote presentations with a clear narrative, structured slides, and speaker notes, emphasizing impactful takeaways and cohesive flow.
69. **create_loe_document**: Creates detailed Level of Effort documents for estimating work effort, resources, and costs for tasks or projects.
70. **create_logo**: Creates simple, minimalist company logos without text, generating AI prompts for vector graphic logos based on input.
71. **create_markmap_visualization**: Transforms complex ideas into clear visualizations using MarkMap syntax, simplifying concepts into diagrams with relationships, boxes, arrows, and labels.
72. **create_mermaid_visualization**: Creates detailed, standalone visualizations of concepts using Mermaid (Markdown) syntax, ensuring clarity and coherence in diagrams.
73. **create_mermaid_visualization_for_github**: Creates standalone, detailed visualizations using Mermaid (Markdown) syntax to effectively explain complex concepts, ensuring clarity and precision.
74. **create_micro_summary**: Summarizes content into a concise, 20-word summary with main points and takeaways, formatted in Markdown.
75. **create_mnemonic_phrases**: Creates memorable mnemonic sentences from given words to aid in memory retention and learning.
76. **create_network_threat_landscape**: Analyzes open ports and services from a network scan and generates a comprehensive, insightful, and detailed security threat report in Markdown.
77. **create_newsletter_entry**: Condenses provided article text into a concise, objective, newsletter-style summary with a title in the style of Frontend Weekly.
78. **create_npc**: Generates a detailed D&D 5E NPC, including background, flaws, stats, appearance, personality, goals, and more in Markdown format.
79. **create_pattern**: Extracts, organizes, and formats LLM/AI prompts into structured sections, detailing the AI's role, instructions, output format, and any provided examples for clarity and accuracy.
80. **create_prd**: Creates a precise Product Requirements Document (PRD) in Markdown based on input.
81. **create_prediction_block**: Extracts and formats predictions from input into a structured Markdown block for a blog post.
82. **create_quiz**: Creates a three-phase reading plan based on an author or topic to help the user become significantly knowledgeable, including core, extended, and supplementary readings.
83. **create_reading_plan**: Generates review questions based on learning objectives from the input, adapted to the specified student level, and outputs them in a clear markdown format.
84. **create_recursive_outline**: Breaks down complex tasks or projects into manageable, hierarchical components with recursive outlining for clarity and simplicity.
85. **create_report_finding**: Creates a detailed, structured security finding report in markdown, including sections on Description, Risk, Recommendations, References, One-Sentence-Summary, and Quotes.
86. **create_rpg_summary**: Summarizes an in-person RPG session with key events, combat details, player stats, and role-playing highlights in a structured format.
87. **create_security_update**: Creates concise security updates for newsletters, covering stories, threats, advisories, vulnerabilities, and a summary of key issues.
88. **create_show_intro**: Creates compelling short intros for podcasts, summarizing key topics and themes discussed in the episode.
89. **create_sigma_rules**: Extracts Tactics, Techniques, and Procedures (TTPs) from security news and converts them into Sigma detection rules for host-based detections.
90. **create_story_about_people_interaction**: Analyze two personas, compare their dynamics, and craft a realistic, character-driven story from those insights.
91. **create_story_about_person**: Creates compelling, realistic short stories based on psychological profiles, showing how characters navigate everyday problems using strategies consistent with their personality traits.
92. **create_story_explanation**: Summarizes complex content in a clear, approachable story format that makes the concepts easy to understand.
93. **create_stride_threat_model**: Create a STRIDE-based threat model for a system design, identifying assets, trust boundaries, data flows, and prioritizing threats with mitigations.
94. **create_summary**: Summarizes content into a 20-word sentence, 10 main points (16 words max), and 5 key takeaways in Markdown format.
95. **create_tags**: Identifies at least 5 tags from text content for mind mapping tools, including authors and existing tags if present.
96. **create_threat_scenarios**: Identifies likely attack methods for any system by providing a narrative-based threat model, balancing risk and opportunity.
97. **create_ttrc_graph**: Creates a CSV file showing the progress of Time to Remediate Critical Vulnerabilities over time using given data.
98. **create_ttrc_narrative**: Creates a persuasive narrative highlighting progress in reducing the Time to Remediate Critical Vulnerabilities metric over time.
99. **create_upgrade_pack**: Extracts world model and task algorithm updates from content, providing beliefs about how the world works and task performance.
100. **create_user_story**: Writes concise and clear technical user stories for new features in complex software programs, formatted for all stakeholders.
101. **create_video_chapters**: Extracts interesting topics and timestamps from a transcript, providing concise summaries of key moments.
102. **create_visualization**: Transforms complex ideas into visualizations using intricate ASCII art, simplifying concepts where necessary.
103. **dialog_with_socrates**: Engages in deep, meaningful dialogues to explore and challenge beliefs using the Socratic method.
104. **enrich_blog_post**: Enhances Markdown blog files by applying instructions to improve structure, visuals, and readability for HTML rendering.
105. **explain_code**: Explains code, security tool output, configuration text, and answers questions based on the provided input.
106. **explain_docs**: Improves and restructures tool documentation into clear, concise instructions, including overviews, usage, use cases, and key features.
107. **explain_math**: Helps you understand mathematical concepts in a clear and engaging way.
108. **explain_project**: Summarizes project documentation into clear, concise sections covering the project, problem, solution, installation, usage, and examples.
109. **explain_terms**: Produces a glossary of advanced terms from content, providing a definition, analogy, and explanation of why each term matters.
110. **export_data_as_csv**: Extracts and outputs all data structures from the input in properly formatted CSV data.
111. **extract_algorithm_update_recommendations**: Extracts concise, practical algorithm update recommendations from the input and outputs them in a bulleted list.
112. **extract_article_wisdom**: Extracts surprising, insightful, and interesting information from content, categorizing it into sections like summary, ideas, quotes, facts, references, and recommendations.
113. **extract_book_ideas**: Extracts and outputs 50 to 100 of the most surprising, insightful, and interesting ideas from a book's content.
114. **extract_book_recommendations**: Extracts and outputs 50 to 100 practical, actionable recommendations from a book's content.
115. **extract_business_ideas**: Extracts top business ideas from content and elaborates on the best 10 with unique differentiators.
116. **extract_characters**: Identify all characters (human and non-human), resolve their aliases and pronouns into canonical names, and produce detailed descriptions of each character's role, motivations, and interactions ranked by narrative importance.
117. **extract_controversial_ideas**: Extracts and outputs controversial statements and supporting quotes from the input in a structured Markdown list.
118. **extract_core_message**: Extracts and outputs a clear, concise sentence that articulates the core message of a given text or body of work.
119. **extract_ctf_writeup**: Extracts a short writeup from a warstory-like text about a cyber security engagement.
120. **extract_domains**: Extracts domains and URLs from content to identify sources used for articles, newsletters, and other publications.
121. **extract_extraordinary_claims**: Extracts and outputs a list of extraordinary claims from conversations, focusing on scientifically disputed or false statements.
122. **extract_ideas**: Extracts and outputs all the key ideas from input, presented as 15-word bullet points in Markdown.
123. **extract_insights**: Extracts and outputs the most powerful and insightful ideas from text, formatted as 16-word bullet points in the INSIGHTS section, also IDEAS section.
124. **extract_insights_dm**: Extracts and outputs all valuable insights and a concise summary of the content, including key points and topics discussed.
125. **extract_instructions**: Extracts clear, actionable step-by-step instructions and main objectives from instructional video transcripts, organizing them into a concise list.
126. **extract_jokes**: Extracts jokes from text content, presenting each joke with its punchline in separate bullet points.
127. **extract_latest_video**: Extracts the latest video URL from a YouTube RSS feed and outputs the URL only.
128. **extract_main_activities**: Extracts key events and activities from transcripts or logs, providing a summary of what happened.
129. **extract_main_idea**: Extracts the main idea and key recommendation from the input, summarizing them in 15-word sentences.
130. **extract_mcp_servers**: Identify and summarize Model Context Protocol (MCP) servers referenced in the input along with their key details.
131. **extract_most_redeeming_thing**: Extracts the most redeeming aspect from an input, summarizing it in a single 15-word sentence.
132. **extract_patterns**: Extracts and analyzes recurring, surprising, and insightful patterns from input, providing detailed analysis and advice for builders.
133. **extract_poc**: Extracts proof of concept URLs and validation methods from security reports, providing the URL and command to run.
134. **extract_predictions**: Extracts predictions from input, including specific details such as date, confidence level, and verification method.
135. **extract_primary_problem**: Extracts the primary problem with the world as presented in a given text or body of work.
136. **extract_primary_solution**: Extracts the primary solution for the world as presented in a given text or body of work.
137. **extract_product_features**: Extracts and outputs a list of product features from the provided input in a bulleted format.
138. **extract_questions**: Extracts and outputs all questions asked by the interviewer in a conversation or interview.
139. **extract_recipe**: Extracts and outputs a recipe with a short meal description, ingredients with measurements, and preparation steps.
140. **extract_recommendations**: Extracts and outputs concise, practical recommendations from a given piece of content in a bulleted list.
141. **extract_references**: Extracts and outputs a bulleted list of references to art, stories, books, literature, and other sources from content.
142. **extract_skills**: Extracts and classifies skills from a job description into a table, separating each skill and classifying it as either hard or soft.
143. **extract_song_meaning**: Analyzes a song to provide a summary of its meaning, supported by detailed evidence from lyrics, artist commentary, and fan analysis.
144. **extract_sponsors**: Extracts and lists official sponsors and potential sponsors from a provided transcript.
145. **extract_videoid**: Extracts and outputs the video ID from any given URL.
146. **extract_wisdom**: Extracts surprising, insightful, and interesting information from text on topics like human flourishing, AI, learning, and more.
147. **extract_wisdom_agents**: Extracts valuable insights, ideas, quotes, and references from content, emphasizing topics like human flourishing, AI, learning, and technology.
148. **extract_wisdom_with_attribution**: Extracts insightful ideas and recommendations with speaker attribution for quotes, focusing on life wisdom and human flourishing.
149. **extract_wisdom_dm**: Extracts all valuable, insightful, and thought-provoking information from content, focusing on topics like human flourishing, AI, learning, and technology.
150. **extract_wisdom_nometa**: Extracts insights, ideas, quotes, habits, facts, references, and recommendations from content, focusing on human flourishing, AI, technology, and related topics.
151. **find_female_life_partner**: Analyzes criteria for finding a female life partner and provides clear, direct, and poetic descriptions.
152. **find_hidden_message**: Extracts overt and hidden political messages, justifications, audience actions, and a cynical analysis from content.
153. **find_logical_fallacies**: Identifies and analyzes fallacies in arguments, classifying them as formal or informal with detailed reasoning.
154. **fix_typos**: Proofreads and corrects typos, spelling, grammar, and punctuation errors in text.
155. **generate_code_rules**: Compile best-practice coding rules and guardrails for AI-assisted development workflows from the provided content.
156. **get_wow_per_minute**: Determines the wow-factor of content per minute based on surprise, novelty, insight, value, and wisdom, measuring how rewarding the content is for the viewer.
157. **greybeard_secure_prompt_engineer**: Creates secure, production-grade system prompts with NASA-style mission assurance, outputting hardened prompts, injection test suites, and evaluation rubrics.
158. **heal_person**: Develops a comprehensive plan for spiritual and mental healing based on psychological profiles, providing personalized recommendations for mental health improvement and overall life enhancement.
159. **humanize**: Rewrites AI-generated text to sound natural, conversational, and easy to understand, maintaining clarity and simplicity.
160. **identify_dsrp_distinctions**: Encourages creative, systems-based thinking by exploring distinctions, boundaries, and their implications, drawing on insights from prominent systems thinkers.
161. **identify_dsrp_perspectives**: Explores the concept of distinctions in systems thinking, focusing on how boundaries define ideas, influence understanding, and reveal or obscure insights.
162. **identify_dsrp_relationships**: Encourages exploration of connections, distinctions, and boundaries between ideas, inspired by systems thinkers to reveal new insights and patterns in complex systems.
163. **identify_dsrp_systems**: Encourages organizing ideas into systems of parts and wholes, inspired by systems thinkers to explore relationships and how changes in organization impact meaning and understanding.
164. **identify_job_stories**: Identifies key job stories or requirements for roles.
165. **improve_academic_writing**: Refines text into clear, concise academic language while improving grammar, coherence, and clarity, with a list of changes.
166. **improve_prompt**: Improves an LLM/AI prompt by applying expert prompt writing strategies for better results and clarity.
167. **improve_report_finding**: Improves a penetration test security finding by providing detailed descriptions, risks, recommendations, references, quotes, and a concise summary in markdown format.
168. **improve_writing**: Refines text by correcting grammar, enhancing style, improving clarity, and maintaining the original meaning. skills.
169. **judge_output**: Evaluates Honeycomb queries by judging their effectiveness, providing critiques and outcomes based on language nuances and analytics relevance.
170. **label_and_rate**: Labels content with up to 20 single-word tags and rates it based on idea count and relevance to human meaning, AI, and other related themes, assigning a tier (S, A, B, C, D) and a quality score.
171. **md_callout**: Classifies content and generates a markdown callout based on the provided text, selecting the most appropriate type.
172. **model_as_sherlock_freud**: Builds psychological models using detective reasoning and psychoanalytic insight to understand human behavior.
173. **official_pattern_template**: Template to use if you want to create new fabric patterns.
174. **predict_person_actions**: Predicts behavioral responses based on psychological profiles and challenges.
175. **prepare_7s_strategy**: Prepares a comprehensive briefing document from 7S's strategy capturing organizational profile, strategic elements, and market dynamics with clear, concise, and organized content.
176. **provide_guidance**: Provides psychological and life coaching advice, including analysis, recommendations, and potential diagnoses, with a compassionate and honest tone.
177. **rate_ai_response**: Rates the quality of AI responses by comparing them to top human expert performance, assigning a letter grade, reasoning, and providing a 1-100 score based on the evaluation.
178. **rate_ai_result**: Assesses the quality of AI/ML/LLM work by deeply analyzing content, instructions, and output, then rates performance based on multiple dimensions, including coverage, creativity, and interdisciplinary thinking.
179. **rate_content**: Labels content with up to 20 single-word tags and rates it based on idea count and relevance to human meaning, AI, and other related themes, assigning a tier (S, A, B, C, D) and a quality score.
180. **rate_value**: Produces the best possible output by deeply analyzing and understanding the input and its intended purpose.
181. **raw_query**: Fully digests and contemplates the input to produce the best possible result based on understanding the sender's intent.
182. **recommend_artists**: Recommends a personalized festival schedule with artists aligned to your favorite styles and interests, including rationale.
183. **recommend_pipeline_upgrades**: Optimizes vulnerability-checking pipelines by incorporating new information and improving their efficiency, with detailed explanations of changes.
184. **recommend_talkpanel_topics**: Produces a clean set of proposed talks or panel talking points for a person based on their interests and goals, formatted for submission to a conference organizer.
185. **recommend_yoga_practice**: Provides personalized yoga sequences, meditation guidance, and holistic lifestyle advice based on individual profiles.
186. **refine_design_document**: Refines a design document based on a design review by analyzing, mapping concepts, and implementing changes using valid Markdown.
187. **review_design**: Reviews and analyzes architecture design, focusing on clarity, component design, system integrations, security, performance, scalability, and data management.
188. **sanitize_broken_html_to_markdown**: Converts messy HTML into clean, properly formatted Markdown, applying custom styling and ensuring compatibility with Vite.
189. **suggest_pattern**: Suggests appropriate fabric patterns or commands based on user input, providing clear explanations and options for users.
190. **summarize**: Summarizes content into a 20-word sentence, main points, and takeaways, formatted with numbered lists in Markdown.
191. **summarize_board_meeting**: Creates formal meeting notes from board meeting transcripts for corporate governance documentation.
192. **summarize_debate**: Summarizes debates, identifies primary disagreement, extracts arguments, and provides analysis of evidence and argument strength to predict outcomes.
193. **summarize_git_changes**: Summarizes recent project updates from the last 7 days, focusing on key changes with enthusiasm.
194. **summarize_git_diff**: Summarizes and organizes Git diff changes with clear, succinct commit messages and bullet points.
195. **summarize_lecture**: Extracts relevant topics, definitions, and tools from lecture transcripts, providing structured summaries with timestamps and key takeaways.
196. **summarize_legislation**: Summarizes complex political proposals and legislation by analyzing key points, proposed changes, and providing balanced, positive, and cynical characterizations.
197. **summarize_meeting**: Analyzes meeting transcripts to extract a structured summary, including an overview, key points, tasks, decisions, challenges, timeline, references, and next steps.
198. **summarize_micro**: Summarizes content into a 20-word sentence, 3 main points, and 3 takeaways, formatted in clear, concise Markdown.
199. **summarize_newsletter**: Extracts the most meaningful, interesting, and useful content from a newsletter, summarizing key sections such as content, opinions, tools, companies, and follow-up items in clear, structured Markdown.
200. **summarize_paper**: Summarizes an academic paper by detailing its title, authors, technical approach, distinctive features, experimental setup, results, advantages, limitations, and conclusion in a clear, structured format using human-readable Markdown.
201. **summarize_prompt**: Summarizes AI chat prompts by describing the primary function, unique approach, and expected output in a concise paragraph. The summary is focused on the prompt's purpose without unnecessary details or formatting.
202. **summarize_pull-requests**: Summarizes pull requests for a coding project by providing a summary and listing the top PRs with human-readable descriptions.
203. **summarize_rpg_session**: Summarizes a role-playing game session by extracting key events, combat stats, character changes, quotes, and more.
204. **t_analyze_challenge_handling**: Provides 8-16 word bullet points evaluating how well challenges are being addressed, calling out any lack of effort.
205. **t_check_dunning_kruger**: Assess narratives for Dunning-Kruger patterns by contrasting self-perception with demonstrated competence and confidence cues.
206. **t_check_metrics**: Analyzes deep context from the TELOS file and input instruction, then provides a wisdom-based output while considering metrics and KPIs to assess recent improvements.
207. **t_create_h3_career**: Summarizes context and produces wisdom-based output by deeply analyzing both the TELOS File and the input instruction, considering the relationship between the two.
208. **t_create_opening_sentences**: Describes from TELOS file the person's identity, goals, and actions in 4 concise, 32-word bullet points, humbly.
209. **t_describe_life_outlook**: Describes from TELOS file a person's life outlook in 5 concise, 16-word bullet points.
210. **t_extract_intro_sentences**: Summarizes from TELOS file a person's identity, work, and current projects in 5 concise and grounded bullet points.
211. **t_extract_panel_topics**: Creates 5 panel ideas with titles and descriptions based on deep context from a TELOS file and input.
212. **t_find_blindspots**: Identify potential blindspots in thinking, frames, or models that may expose the individual to error or risk.
213. **t_find_negative_thinking**: Analyze a TELOS file and input to identify negative thinking in documents or journals, followed by tough love encouragement.
214. **t_find_neglected_goals**: Analyze a TELOS file and input instructions to identify goals or projects that have not been worked on recently.
215. **t_give_encouragement**: Analyze a TELOS file and input instructions to evaluate progress, provide encouragement, and offer recommendations for continued effort.
216. **t_red_team_thinking**: Analyze a TELOS file and input instructions to red-team thinking, models, and frames, then provide recommendations for improvement.
217. **t_threat_model_plans**: Analyze a TELOS file and input instructions to create threat models for a life plan and recommend improvements.
218. **t_visualize_mission_goals_projects**: Analyze a TELOS file and input instructions to create an ASCII art diagram illustrating the relationship of missions, goals, and projects.
219. **t_year_in_review**: Analyze a TELOS file to create insights about a person or entity, then summarize accomplishments and visualizations in bullet points.
220. **to_flashcards**: Create Anki flashcards from a given text, focusing on concise, optimized questions and answers without external context.
221. **transcribe_minutes**: Extracts (from meeting transcription) meeting minutes, identifying actionables, insightful ideas, decisions, challenges, and next steps in a structured format.
222. **translate**: Translates sentences or documentation into the specified language code while maintaining the original formatting and tone.
223. **tweet**: Provides a step-by-step guide on crafting engaging tweets with emojis, covering Twitter basics, account creation, features, and audience targeting.
224. **write_essay**: Writes essays in the style of a specified author, embodying their unique voice, vocabulary, and approach. Uses `author_name` variable.
225. **write_essay_pg**: Writes concise, clear essays in the style of Paul Graham, focusing on simplicity, clarity, and illumination of the provided topic.
226. **write_hackerone_report**: Generates concise, clear, and reproducible bug bounty reports, detailing vulnerability impact, steps to reproduce, and exploit details for triagers.
227. **write_latex**: Generates syntactically correct LaTeX code for a new.tex document, ensuring proper formatting and compatibility with pdflatex.
228. **write_micro_essay**: Writes concise, clear, and illuminating essays on the given topic in the style of Paul Graham.
229. **write_nuclei_template_rule**: Generates Nuclei YAML templates for detecting vulnerabilities using HTTP requests, matchers, extractors, and dynamic data extraction.
230. **write_pull-request**: Drafts detailed pull request descriptions, explaining changes, providing reasoning, and identifying potential bugs from the git diff command output.
231. **write_semgrep_rule**: Creates accurate and working Semgrep rules based on input, following syntax guidelines and specific language considerations.
232. **youtube_summary**: Create concise, timestamped Youtube video summaries that highlight key points.
11. **analyze_discord_structure**: Analyze Discord server structures for organizational issues, permissions, and optimization.
12. **analyze_email_headers**: Provide cybersecurity analysis and actionable insights on SPF, DKIM, DMARC, and ARC email header results.
13. **analyze_incident**: Efficiently extract and organize key details from cybersecurity breach articles, focusing on attack type, vulnerable components, attacker and target info, incident details, and remediation steps.
14. **analyze_interviewer_techniques**: This exercise involves analyzing interviewer techniques, identifying their unique qualities, and succinctly articulating what makes them stand out in a clear, simple format.
15. **analyze_logs**: Analyse server log files to identify patterns, anomalies, and issues, providing data-driven insights and recommendations for improving server reliability and performance.
16. **analyze_malware**: Analyse malware details, extract key indicators, techniques, and potential detection strategies, and summarize findings concisely for a malware analyst's use in identifying and responding to threats.
17. **analyze_military_strategy**: Analyse a historical battle, offering in-depth insights into strategic decisions, strengths, weaknesses, tactical approaches, logistical factors, pivotal moments, and consequences for a comprehensive military evaluation.
18. **analyze_mistakes**: Analyse past mistakes in thinking patterns, map them to current beliefs, and offer recommendations to improve accuracy in predictions.
19. **analyze_paper**: Analyses research papers by summarizing findings, evaluating rigor, and assessing quality to provide insights for documentation and review.
20. **analyze_paper_simple**: Analyzes academic papers with a focus on primary findings, research quality, and study design evaluation.
21. **analyze_patent**: Analyse a patent's field, problem, solution, novelty, inventive step, and advantages in detail while summarizing and extracting keywords.
22. **analyze_personality**: Performs a deep psychological analysis of a person in the input, focusing on their behavior, language, and psychological traits.
23. **analyze_presentation**: Reviews and critiques presentations by analyzing the content, speaker's underlying goals, self-focus, and entertainment value.
24. **analyze_product_feedback**: A prompt for analyzing and organizing user feedback by identifying themes, consolidating similar comments, and prioritizing them based on usefulness.
25. **analyze_proposition**: Analyzes a ballot proposition by identifying its purpose, impact, arguments for and against, and relevant background information.
26. **analyze_prose**: Evaluates writing for novelty, clarity, and prose, providing ratings, improvement recommendations, and an overall score.
27. **analyze_prose_json**: Evaluates writing for novelty, clarity, prose, and provides ratings, explanations, improvement suggestions, and an overall score in a JSON format.
28. **analyze_prose_pinker**: Evaluates prose based on Steven Pinker's The Sense of Style, analyzing writing style, clarity, and bad writing elements.
29. **analyze_risk**: Conducts a risk assessment of a third-party vendor, assigning a risk score and suggesting security controls based on analysis of provided documents and vendor website.
30. **analyze_sales_call**: Rates sales call performance across multiple dimensions, providing scores and actionable feedback based on transcript analysis.
31. **analyze_spiritual_text**: Compares and contrasts spiritual texts by analyzing claims and differences with the King James Bible.
32. **analyze_tech_impact**: Analyzes the societal impact, ethical considerations, and sustainability of technology projects, evaluating their outcomes and benefits.
33. **analyze_terraform_plan**: Analyzes Terraform plan outputs to assess infrastructure changes, security risks, cost implications, and compliance considerations.
34. **analyze_threat_report**: Extracts surprising insights, trends, statistics, quotes, references, and recommendations from cybersecurity threat reports, summarizing key findings and providing actionable information.
35. **analyze_threat_report_cmds**: Extract and synthesize actionable cybersecurity commands from provided materials, incorporating command-line arguments and expert insights for pentesters and non-experts.
36. **analyze_threat_report_trends**: Extract up to 50 surprising, insightful, and interesting trends from a cybersecurity threat report in markdown format.
37. **answer_interview_question**: Generates concise, tailored responses to technical interview questions, incorporating alternative approaches and evidence to demonstrate the candidate's expertise and experience.
38. **apply_ul_tags**: Apply standardized content tags to categorize topics like AI, cybersecurity, politics, and culture.
39. **ask_secure_by_design_questions**: Generates a set of security-focused questions to ensure a project is built securely by design, covering key components and considerations.
40. **ask_uncle_duke**: Coordinates a team of AI agents to research and produce multiple software development solutions based on provided specifications, and conducts detailed code reviews to ensure adherence to best practices.
41. **capture_thinkers_work**: Analyze philosophers or philosophies and provide detailed summaries about their teachings, background, works, advice, and related concepts in a structured template.
42. **check_agreement**: Analyze contracts and agreements to identify important stipulations, issues, and potential gotchas, then summarize them in Markdown.
43. **clean_text**: Fix broken or malformatted text by correcting line breaks, punctuation, capitalization, and paragraphs without altering content or spelling.
44. **coding_master**: Explain a coding concept to a beginner, providing examples, and formatting code in markdown with specific output sections like ideas, recommendations, facts, and insights.
45. **compare_and_contrast**: Compare and contrast a list of items in a markdown table, with items on the left and topics on top.
46. **concall_summary**: Analyzes earnings and conference call transcripts to extract management commentary, analyst Q&A, financial insights, risks, and executive summaries.
47. **convert_to_markdown**: Convert content to clean, complete Markdown format, preserving all original structure, formatting, links, and code blocks without alterations.
48. **create_5_sentence_summary**: Create concise summaries or answers to input at 5 different levels of depth, from 5 words to 1 word.
49. **create_academic_paper**: Generate a high-quality academic paper in LaTeX format with clear concepts, structured content, and a professional layout.
50. **create_ai_jobs_analysis**: Analyze job categories' susceptibility to automation, identify resilient roles, and provide strategies for personal adaptation to AI-driven changes in the workforce.
51. **create_aphorisms**: Find and generate a list of brief, witty statements.
52. **create_art_prompt**: Generates a detailed, compelling visual description of a concept, including stylistic references and direct AI instructions for creating art.
53. **create_better_frame**: Identifies and analyzes different frames of interpreting reality, emphasizing the power of positive, productive lenses in shaping outcomes.
54. **create_coding_feature**: Generates secure and composable code features using modern technology and best practices from project specifications.
55. **create_coding_project**: Generate wireframes and starter code for any coding ideas that you have.
56. **create_command**: Helps determine the correct parameters and switches for penetration testing tools based on a brief description of the objective.
57. **create_conceptmap**: Transforms unstructured text or markdown content into an interactive HTML concept map using Vis.js by extracting key concepts and their logical relationships.
58. **create_cyber_summary**: Summarizes cybersecurity threats, vulnerabilities, incidents, and malware with a 25-word summary and categorized bullet points, after thoroughly analyzing and mapping the provided input.
59. **create_design_system**: Create comprehensive CSS design systems with tokens, typography, spacing, and components.
60. **create_design_document**: Creates a detailed design document for a system using the C4 model, addressing business and security postures, and including a system context diagram.
61. **create_diy**: Creates structured "Do It Yourself" tutorial patterns by analyzing prompts, organizing requirements, and providing step-by-step instructions in Markdown format.
62. **create_excalidraw_visualization**: Creates complex Excalidraw diagrams to visualize relationships between concepts and ideas in structured format.
63. **create_flash_cards**: Creates flashcards for key concepts, definitions, and terms with question-answer format for educational purposes.
64. **create_formal_email**: Crafts professional, clear, and respectful emails by analyzing context, tone, and purpose, ensuring proper structure and formatting.
65. **create_git_diff_commit**: Generates Git commands and commit messages for reflecting changes in a repository, using conventional commits and providing concise shell commands for updates.
66. **create_golden_rules**: Extract enforceable rules from codebases to prevent common mistakes and ensure consistency.
67. **create_graph_from_input**: Generates a CSV file with progress-over-time data for a security program, focusing on relevant metrics and KPIs.
68. **create_hormozi_offer**: Creates a customized business offer based on principles from Alex Hormozi's book, "$100M Offers."
69. **create_idea_compass**: Organizes and structures ideas by exploring their definition, evidence, sources, and related themes or consequences.
70. **create_investigation_visualization**: Creates detailed Graphviz visualizations of complex input, highlighting key aspects and providing clear, well-annotated diagrams for investigative analysis and conclusions.
71. **create_keynote**: Creates TED-style keynote presentations with a clear narrative, structured slides, and speaker notes, emphasizing impactful takeaways and cohesive flow.
72. **create_loe_document**: Creates detailed Level of Effort documents for estimating work effort, resources, and costs for tasks or projects.
73. **create_logo**: Creates simple, minimalist company logos without text, generating AI prompts for vector graphic logos based on input.
74. **create_markmap_visualization**: Transforms complex ideas into clear visualizations using MarkMap syntax, simplifying concepts into diagrams with relationships, boxes, arrows, and labels.
75. **create_mermaid_visualization**: Creates detailed, standalone visualizations of concepts using Mermaid (Markdown) syntax, ensuring clarity and coherence in diagrams.
76. **create_mermaid_visualization_for_github**: Creates standalone, detailed visualizations using Mermaid (Markdown) syntax to effectively explain complex concepts, ensuring clarity and precision.
77. **create_micro_summary**: Summarizes content into a concise, 20-word summary with main points and takeaways, formatted in Markdown.
78. **create_mnemonic_phrases**: Creates memorable mnemonic sentences from given words to aid in memory retention and learning.
79. **create_network_threat_landscape**: Analyzes open ports and services from a network scan and generates a comprehensive, insightful, and detailed security threat report in Markdown.
80. **create_newsletter_entry**: Condenses provided article text into a concise, objective, newsletter-style summary with a title in the style of Frontend Weekly.
81. **create_npc**: Generates a detailed D&D 5E NPC, including background, flaws, stats, appearance, personality, goals, and more in Markdown format.
82. **create_pattern**: Extracts, organizes, and formats LLM/AI prompts into structured sections, detailing the AI's role, instructions, output format, and any provided examples for clarity and accuracy.
83. **create_prd**: Creates a precise Product Requirements Document (PRD) in Markdown based on input.
84. **create_prediction_block**: Extracts and formats predictions from input into a structured Markdown block for a blog post.
85. **create_quiz**: Creates a three-phase reading plan based on an author or topic to help the user become significantly knowledgeable, including core, extended, and supplementary readings.
86. **create_reading_plan**: Generates review questions based on learning objectives from the input, adapted to the specified student level, and outputs them in a clear markdown format.
87. **create_recursive_outline**: Breaks down complex tasks or projects into manageable, hierarchical components with recursive outlining for clarity and simplicity.
88. **create_report_finding**: Creates a detailed, structured security finding report in markdown, including sections on Description, Risk, Recommendations, References, One-Sentence-Summary, and Quotes.
89. **create_rpg_summary**: Summarizes an in-person RPG session with key events, combat details, player stats, and role-playing highlights in a structured format.
90. **create_security_update**: Creates concise security updates for newsletters, covering stories, threats, advisories, vulnerabilities, and a summary of key issues.
91. **create_show_intro**: Creates compelling short intros for podcasts, summarizing key topics and themes discussed in the episode.
92. **create_sigma_rules**: Extracts Tactics, Techniques, and Procedures (TTPs) from security news and converts them into Sigma detection rules for host-based detections.
93. **create_story_about_people_interaction**: Analyze two personas, compare their dynamics, and craft a realistic, character-driven story from those insights.
94. **create_story_about_person**: Creates compelling, realistic short stories based on psychological profiles, showing how characters navigate everyday problems using strategies consistent with their personality traits.
95. **create_story_explanation**: Summarizes complex content in a clear, approachable story format that makes the concepts easy to understand.
96. **create_stride_threat_model**: Create a STRIDE-based threat model for a system design, identifying assets, trust boundaries, data flows, and prioritizing threats with mitigations.
97. **create_summary**: Summarizes content into a 20-word sentence, 10 main points (16 words max), and 5 key takeaways in Markdown format.
98. **create_tags**: Identifies at least 5 tags from text content for mind mapping tools, including authors and existing tags if present.
99. **create_threat_scenarios**: Identifies likely attack methods for any system by providing a narrative-based threat model, balancing risk and opportunity.
100. **create_ttrc_graph**: Creates a CSV file showing the progress of Time to Remediate Critical Vulnerabilities over time using given data.
101. **create_ttrc_narrative**: Creates a persuasive narrative highlighting progress in reducing the Time to Remediate Critical Vulnerabilities metric over time.
102. **create_upgrade_pack**: Extracts world model and task algorithm updates from content, providing beliefs about how the world works and task performance.
103. **create_user_story**: Writes concise and clear technical user stories for new features in complex software programs, formatted for all stakeholders.
104. **create_video_chapters**: Extracts interesting topics and timestamps from a transcript, providing concise summaries of key moments.
105. **create_visualization**: Transforms complex ideas into visualizations using intricate ASCII art, simplifying concepts where necessary.
106. **dialog_with_socrates**: Engages in deep, meaningful dialogues to explore and challenge beliefs using the Socratic method.
107. **enrich_blog_post**: Enhances Markdown blog files by applying instructions to improve structure, visuals, and readability for HTML rendering.
108. **explain_code**: Explains code, security tool output, configuration text, and answers questions based on the provided input.
109. **explain_docs**: Improves and restructures tool documentation into clear, concise instructions, including overviews, usage, use cases, and key features.
110. **explain_math**: Helps you understand mathematical concepts in a clear and engaging way.
111. **explain_project**: Summarizes project documentation into clear, concise sections covering the project, problem, solution, installation, usage, and examples.
112. **explain_terms**: Produces a glossary of advanced terms from content, providing a definition, analogy, and explanation of why each term matters.
113. **export_data_as_csv**: Extracts and outputs all data structures from the input in properly formatted CSV data.
114. **extract_algorithm_update_recommendations**: Extracts concise, practical algorithm update recommendations from the input and outputs them in a bulleted list.
115. **extract_article_wisdom**: Extracts surprising, insightful, and interesting information from content, categorizing it into sections like summary, ideas, quotes, facts, references, and recommendations.
116. **extract_book_ideas**: Extracts and outputs 50 to 100 of the most surprising, insightful, and interesting ideas from a book's content.
117. **extract_book_recommendations**: Extracts and outputs 50 to 100 practical, actionable recommendations from a book's content.
118. **extract_business_ideas**: Extracts top business ideas from content and elaborates on the best 10 with unique differentiators.
119. **extract_characters**: Identify all characters (human and non-human), resolve their aliases and pronouns into canonical names, and produce detailed descriptions of each character's role, motivations, and interactions ranked by narrative importance.
120. **extract_controversial_ideas**: Extracts and outputs controversial statements and supporting quotes from the input in a structured Markdown list.
121. **extract_core_message**: Extracts and outputs a clear, concise sentence that articulates the core message of a given text or body of work.
122. **extract_ctf_writeup**: Extracts a short writeup from a warstory-like text about a cyber security engagement.
123. **extract_domains**: Extracts domains and URLs from content to identify sources used for articles, newsletters, and other publications.
124. **extract_extraordinary_claims**: Extracts and outputs a list of extraordinary claims from conversations, focusing on scientifically disputed or false statements.
125. **extract_ideas**: Extracts and outputs all the key ideas from input, presented as 15-word bullet points in Markdown.
126. **extract_insights**: Extracts and outputs the most powerful and insightful ideas from text, formatted as 16-word bullet points in the INSIGHTS section, also IDEAS section.
127. **extract_insights_dm**: Extracts and outputs all valuable insights and a concise summary of the content, including key points and topics discussed.
128. **extract_instructions**: Extracts clear, actionable step-by-step instructions and main objectives from instructional video transcripts, organizing them into a concise list.
129. **extract_jokes**: Extracts jokes from text content, presenting each joke with its punchline in separate bullet points.
130. **extract_latest_video**: Extracts the latest video URL from a YouTube RSS feed and outputs the URL only.
131. **extract_main_activities**: Extracts key events and activities from transcripts or logs, providing a summary of what happened.
132. **extract_main_idea**: Extracts the main idea and key recommendation from the input, summarizing them in 15-word sentences.
133. **extract_mcp_servers**: Identify and summarize Model Context Protocol (MCP) servers referenced in the input along with their key details.
134. **extract_most_redeeming_thing**: Extracts the most redeeming aspect from an input, summarizing it in a single 15-word sentence.
135. **extract_patterns**: Extracts and analyzes recurring, surprising, and insightful patterns from input, providing detailed analysis and advice for builders.
136. **extract_poc**: Extracts proof of concept URLs and validation methods from security reports, providing the URL and command to run.
137. **extract_predictions**: Extracts predictions from input, including specific details such as date, confidence level, and verification method.
138. **extract_primary_problem**: Extracts the primary problem with the world as presented in a given text or body of work.
139. **extract_primary_solution**: Extracts the primary solution for the world as presented in a given text or body of work.
140. **extract_product_features**: Extracts and outputs a list of product features from the provided input in a bulleted format.
141. **extract_questions**: Extracts and outputs all questions asked by the interviewer in a conversation or interview.
142. **extract_recipe**: Extracts and outputs a recipe with a short meal description, ingredients with measurements, and preparation steps.
143. **extract_recommendations**: Extracts and outputs concise, practical recommendations from a given piece of content in a bulleted list.
144. **extract_references**: Extracts and outputs a bulleted list of references to art, stories, books, literature, and other sources from content.
145. **extract_skills**: Extracts and classifies skills from a job description into a table, separating each skill and classifying it as either hard or soft.
146. **extract_song_meaning**: Analyzes a song to provide a summary of its meaning, supported by detailed evidence from lyrics, artist commentary, and fan analysis.
147. **extract_sponsors**: Extracts and lists official sponsors and potential sponsors from a provided transcript.
148. **extract_videoid**: Extracts and outputs the video ID from any given URL.
149. **extract_wisdom**: Extracts surprising, insightful, and interesting information from text on topics like human flourishing, AI, learning, and more.
150. **extract_wisdom_agents**: Extracts valuable insights, ideas, quotes, and references from content, emphasizing topics like human flourishing, AI, learning, and technology.
151. **extract_wisdom_with_attribution**: Extracts insightful ideas and recommendations with speaker attribution for quotes, focusing on life wisdom and human flourishing.
152. **extract_wisdom_dm**: Extracts all valuable, insightful, and thought-provoking information from content, focusing on topics like human flourishing, AI, learning, and technology.
153. **extract_wisdom_nometa**: Extracts insights, ideas, quotes, habits, facts, references, and recommendations from content, focusing on human flourishing, AI, technology, and related topics.
154. **find_female_life_partner**: Analyzes criteria for finding a female life partner and provides clear, direct, and poetic descriptions.
155. **find_hidden_message**: Extracts overt and hidden political messages, justifications, audience actions, and a cynical analysis from content.
156. **find_logical_fallacies**: Identifies and analyzes fallacies in arguments, classifying them as formal or informal with detailed reasoning.
157. **fix_typos**: Proofreads and corrects typos, spelling, grammar, and punctuation errors in text.
158. **generate_code_rules**: Compile best-practice coding rules and guardrails for AI-assisted development workflows from the provided content.
159. **get_wow_per_minute**: Determines the wow-factor of content per minute based on surprise, novelty, insight, value, and wisdom, measuring how rewarding the content is for the viewer.
160. **greybeard_secure_prompt_engineer**: Creates secure, production-grade system prompts with NASA-style mission assurance, outputting hardened prompts, injection test suites, and evaluation rubrics.
161. **heal_person**: Develops a comprehensive plan for spiritual and mental healing based on psychological profiles, providing personalized recommendations for mental health improvement and overall life enhancement.
162. **humanize**: Rewrites AI-generated text to sound natural, conversational, and easy to understand, maintaining clarity and simplicity.
163. **identify_dsrp_distinctions**: Encourages creative, systems-based thinking by exploring distinctions, boundaries, and their implications, drawing on insights from prominent systems thinkers.
164. **identify_dsrp_perspectives**: Explores the concept of distinctions in systems thinking, focusing on how boundaries define ideas, influence understanding, and reveal or obscure insights.
165. **identify_dsrp_relationships**: Encourages exploration of connections, distinctions, and boundaries between ideas, inspired by systems thinkers to reveal new insights and patterns in complex systems.
166. **identify_dsrp_systems**: Encourages organizing ideas into systems of parts and wholes, inspired by systems thinkers to explore relationships and how changes in organization impact meaning and understanding.
167. **identify_job_stories**: Identifies key job stories or requirements for roles.
168. **improve_academic_writing**: Refines text into clear, concise academic language while improving grammar, coherence, and clarity, with a list of changes.
169. **improve_prompt**: Improves an LLM/AI prompt by applying expert prompt writing strategies for better results and clarity.
170. **improve_report_finding**: Improves a penetration test security finding by providing detailed descriptions, risks, recommendations, references, quotes, and a concise summary in markdown format.
171. **improve_writing**: Refines text by correcting grammar, enhancing style, improving clarity, and maintaining the original meaning. skills.
172. **judge_output**: Evaluates Honeycomb queries by judging their effectiveness, providing critiques and outcomes based on language nuances and analytics relevance.
173. **label_and_rate**: Labels content with up to 20 single-word tags and rates it based on idea count and relevance to human meaning, AI, and other related themes, assigning a tier (S, A, B, C, D) and a quality score.
174. **md_callout**: Classifies content and generates a markdown callout based on the provided text, selecting the most appropriate type.
175. **model_as_sherlock_freud**: Builds psychological models using detective reasoning and psychoanalytic insight to understand human behavior.
176. **official_pattern_template**: Template to use if you want to create new fabric patterns.
177. **predict_person_actions**: Predicts behavioral responses based on psychological profiles and challenges.
178. **prepare_7s_strategy**: Prepares a comprehensive briefing document from 7S's strategy capturing organizational profile, strategic elements, and market dynamics with clear, concise, and organized content.
179. **provide_guidance**: Provides psychological and life coaching advice, including analysis, recommendations, and potential diagnoses, with a compassionate and honest tone.
180. **rate_ai_response**: Rates the quality of AI responses by comparing them to top human expert performance, assigning a letter grade, reasoning, and providing a 1-100 score based on the evaluation.
181. **rate_ai_result**: Assesses the quality of AI/ML/LLM work by deeply analyzing content, instructions, and output, then rates performance based on multiple dimensions, including coverage, creativity, and interdisciplinary thinking.
182. **rate_content**: Labels content with up to 20 single-word tags and rates it based on idea count and relevance to human meaning, AI, and other related themes, assigning a tier (S, A, B, C, D) and a quality score.
183. **rate_value**: Produces the best possible output by deeply analyzing and understanding the input and its intended purpose.
184. **raw_query**: Fully digests and contemplates the input to produce the best possible result based on understanding the sender's intent.
185. **recommend_artists**: Recommends a personalized festival schedule with artists aligned to your favorite styles and interests, including rationale.
186. **recommend_pipeline_upgrades**: Optimizes vulnerability-checking pipelines by incorporating new information and improving their efficiency, with detailed explanations of changes.
187. **recommend_talkpanel_topics**: Produces a clean set of proposed talks or panel talking points for a person based on their interests and goals, formatted for submission to a conference organizer.
188. **recommend_yoga_practice**: Provides personalized yoga sequences, meditation guidance, and holistic lifestyle advice based on individual profiles.
189. **refine_design_document**: Refines a design document based on a design review by analyzing, mapping concepts, and implementing changes using valid Markdown.
190. **review_design**: Reviews and analyzes architecture design, focusing on clarity, component design, system integrations, security, performance, scalability, and data management.
191. **sanitize_broken_html_to_markdown**: Converts messy HTML into clean, properly formatted Markdown, applying custom styling and ensuring compatibility with Vite.
192. **suggest_pattern**: Suggests appropriate fabric patterns or commands based on user input, providing clear explanations and options for users.
193. **summarize**: Summarizes content into a 20-word sentence, main points, and takeaways, formatted with numbered lists in Markdown.
194. **summarize_board_meeting**: Creates formal meeting notes from board meeting transcripts for corporate governance documentation.
195. **summarize_debate**: Summarizes debates, identifies primary disagreement, extracts arguments, and provides analysis of evidence and argument strength to predict outcomes.
196. **summarize_git_changes**: Summarizes recent project updates from the last 7 days, focusing on key changes with enthusiasm.
197. **summarize_git_diff**: Summarizes and organizes Git diff changes with clear, succinct commit messages and bullet points.
198. **summarize_lecture**: Extracts relevant topics, definitions, and tools from lecture transcripts, providing structured summaries with timestamps and key takeaways.
199. **summarize_legislation**: Summarizes complex political proposals and legislation by analyzing key points, proposed changes, and providing balanced, positive, and cynical characterizations.
200. **summarize_meeting**: Analyzes meeting transcripts to extract a structured summary, including an overview, key points, tasks, decisions, challenges, timeline, references, and next steps.
201. **summarize_micro**: Summarizes content into a 20-word sentence, 3 main points, and 3 takeaways, formatted in clear, concise Markdown.
202. **summarize_newsletter**: Extracts the most meaningful, interesting, and useful content from a newsletter, summarizing key sections such as content, opinions, tools, companies, and follow-up items in clear, structured Markdown.
203. **summarize_paper**: Summarizes an academic paper by detailing its title, authors, technical approach, distinctive features, experimental setup, results, advantages, limitations, and conclusion in a clear, structured format using human-readable Markdown.
204. **summarize_prompt**: Summarizes AI chat prompts by describing the primary function, unique approach, and expected output in a concise paragraph. The summary is focused on the prompt's purpose without unnecessary details or formatting.
205. **summarize_pull-requests**: Summarizes pull requests for a coding project by providing a summary and listing the top PRs with human-readable descriptions.
206. **summarize_rpg_session**: Summarizes a role-playing game session by extracting key events, combat stats, character changes, quotes, and more.
207. **t_analyze_challenge_handling**: Provides 8-16 word bullet points evaluating how well challenges are being addressed, calling out any lack of effort.
208. **t_check_dunning_kruger**: Assess narratives for Dunning-Kruger patterns by contrasting self-perception with demonstrated competence and confidence cues.
209. **t_check_metrics**: Analyzes deep context from the TELOS file and input instruction, then provides a wisdom-based output while considering metrics and KPIs to assess recent improvements.
210. **t_create_h3_career**: Summarizes context and produces wisdom-based output by deeply analyzing both the TELOS File and the input instruction, considering the relationship between the two.
211. **t_create_opening_sentences**: Describes from TELOS file the person's identity, goals, and actions in 4 concise, 32-word bullet points, humbly.
212. **t_describe_life_outlook**: Describes from TELOS file a person's life outlook in 5 concise, 16-word bullet points.
213. **t_extract_intro_sentences**: Summarizes from TELOS file a person's identity, work, and current projects in 5 concise and grounded bullet points.
214. **t_extract_panel_topics**: Creates 5 panel ideas with titles and descriptions based on deep context from a TELOS file and input.
215. **t_find_blindspots**: Identify potential blindspots in thinking, frames, or models that may expose the individual to error or risk.
216. **t_find_negative_thinking**: Analyze a TELOS file and input to identify negative thinking in documents or journals, followed by tough love encouragement.
217. **t_find_neglected_goals**: Analyze a TELOS file and input instructions to identify goals or projects that have not been worked on recently.
218. **t_give_encouragement**: Analyze a TELOS file and input instructions to evaluate progress, provide encouragement, and offer recommendations for continued effort.
219. **t_red_team_thinking**: Analyze a TELOS file and input instructions to red-team thinking, models, and frames, then provide recommendations for improvement.
220. **t_threat_model_plans**: Analyze a TELOS file and input instructions to create threat models for a life plan and recommend improvements.
221. **t_visualize_mission_goals_projects**: Analyze a TELOS file and input instructions to create an ASCII art diagram illustrating the relationship of missions, goals, and projects.
222. **t_year_in_review**: Analyze a TELOS file to create insights about a person or entity, then summarize accomplishments and visualizations in bullet points.
223. **to_flashcards**: Create Anki flashcards from a given text, focusing on concise, optimized questions and answers without external context.
224. **transcribe_minutes**: Extracts (from meeting transcription) meeting minutes, identifying actionables, insightful ideas, decisions, challenges, and next steps in a structured format.
225. **translate**: Translates sentences or documentation into the specified language code while maintaining the original formatting and tone.
226. **tweet**: Provides a step-by-step guide on crafting engaging tweets with emojis, covering Twitter basics, account creation, features, and audience targeting.
227. **write_essay**: Writes essays in the style of a specified author, embodying their unique voice, vocabulary, and approach. Uses `author_name` variable.
228. **write_essay_pg**: Writes concise, clear essays in the style of Paul Graham, focusing on simplicity, clarity, and illumination of the provided topic.
229. **write_hackerone_report**: Generates concise, clear, and reproducible bug bounty reports, detailing vulnerability impact, steps to reproduce, and exploit details for triagers.
230. **write_latex**: Generates syntactically correct LaTeX code for a new.tex document, ensuring proper formatting and compatibility with pdflatex.
231. **write_micro_essay**: Writes concise, clear, and illuminating essays on the given topic in the style of Paul Graham.
232. **write_nuclei_template_rule**: Generates Nuclei YAML templates for detecting vulnerabilities using HTTP requests, matchers, extractors, and dynamic data extraction.
233. **write_pull-request**: Drafts detailed pull request descriptions, explaining changes, providing reasoning, and identifying potential bugs from the git diff command output.
234. **write_semgrep_rule**: Creates accurate and working Semgrep rules based on input, following syntax guidelines and specific language considerations.
235. **youtube_summary**: Create concise, timestamped Youtube video summaries that highlight key points.

View File

@@ -73,11 +73,11 @@ Match the request to one or more of these primary categories:
**AI**: ai, create_ai_jobs_analysis, create_art_prompt, create_pattern, create_prediction_block, extract_mcp_servers, extract_wisdom_agents, generate_code_rules, greybeard_secure_prompt_engineer, improve_prompt, judge_output, rate_ai_response, rate_ai_result, raw_query, suggest_pattern, summarize_prompt
**ANALYSIS**: ai, analyze_answers, analyze_bill, analyze_bill_short, analyze_candidates, analyze_cfp_submission, analyze_claims, analyze_comments, analyze_debate, analyze_email_headers, analyze_incident, analyze_interviewer_techniques, analyze_logs, analyze_malware, analyze_military_strategy, analyze_mistakes, analyze_paper, analyze_paper_simple, analyze_patent, analyze_personality, analyze_presentation, analyze_product_feedback, analyze_proposition, analyze_prose, analyze_prose_json, analyze_prose_pinker, analyze_risk, analyze_sales_call, analyze_spiritual_text, analyze_tech_impact, analyze_terraform_plan, analyze_threat_report, analyze_threat_report_cmds, analyze_threat_report_trends, apply_ul_tags, check_agreement, compare_and_contrast, concall_summary, create_ai_jobs_analysis, create_idea_compass, create_investigation_visualization, create_prediction_block, create_recursive_outline, create_story_about_people_interaction, create_tags, dialog_with_socrates, extract_main_idea, extract_predictions, find_hidden_message, find_logical_fallacies, get_wow_per_minute, identify_dsrp_distinctions, identify_dsrp_perspectives, identify_dsrp_relationships, identify_dsrp_systems, identify_job_stories, label_and_rate, model_as_sherlock_freud, predict_person_actions, prepare_7s_strategy, provide_guidance, rate_content, rate_value, recommend_artists, recommend_talkpanel_topics, review_design, summarize_board_meeting, t_analyze_challenge_handling, t_check_dunning_kruger, t_check_metrics, t_describe_life_outlook, t_extract_intro_sentences, t_extract_panel_topics, t_find_blindspots, t_find_negative_thinking, t_red_team_thinking, t_threat_model_plans, t_year_in_review, write_hackerone_report
**ANALYSIS**: ai, analyze_answers, analyze_bill, analyze_bill_short, analyze_candidates, analyze_cfp_submission, analyze_claims, analyze_comments, analyze_debate, analyze_discord_structure, analyze_email_headers, analyze_incident, analyze_interviewer_techniques, analyze_logs, analyze_malware, analyze_military_strategy, analyze_mistakes, analyze_paper, analyze_paper_simple, analyze_patent, analyze_personality, analyze_presentation, analyze_product_feedback, analyze_proposition, analyze_prose, analyze_prose_json, analyze_prose_pinker, analyze_risk, analyze_sales_call, analyze_spiritual_text, analyze_tech_impact, analyze_terraform_plan, analyze_threat_report, analyze_threat_report_cmds, analyze_threat_report_trends, apply_ul_tags, check_agreement, compare_and_contrast, concall_summary, create_ai_jobs_analysis, create_golden_rules, create_idea_compass, create_investigation_visualization, create_prediction_block, create_recursive_outline, create_story_about_people_interaction, create_tags, dialog_with_socrates, extract_main_idea, extract_predictions, find_hidden_message, find_logical_fallacies, get_wow_per_minute, identify_dsrp_distinctions, identify_dsrp_perspectives, identify_dsrp_relationships, identify_dsrp_systems, identify_job_stories, label_and_rate, model_as_sherlock_freud, predict_person_actions, prepare_7s_strategy, provide_guidance, rate_content, rate_value, recommend_artists, recommend_talkpanel_topics, review_design, summarize_board_meeting, t_analyze_challenge_handling, t_check_dunning_kruger, t_check_metrics, t_describe_life_outlook, t_extract_intro_sentences, t_extract_panel_topics, t_find_blindspots, t_find_negative_thinking, t_red_team_thinking, t_threat_model_plans, t_year_in_review, write_hackerone_report
**BILL**: analyze_bill, analyze_bill_short
**BUSINESS**: check_agreement, concall_summary, create_ai_jobs_analysis, create_formal_email, create_hormozi_offer, create_loe_document, create_logo, create_newsletter_entry, create_prd, explain_project, extract_business_ideas, extract_characters, extract_product_features, extract_skills, extract_sponsors, identify_job_stories, prepare_7s_strategy, rate_value, t_check_metrics, t_create_h3_career, t_visualize_mission_goals_projects, t_year_in_review, transcribe_minutes
**BUSINESS**: analyze_discord_structure, check_agreement, concall_summary, create_ai_jobs_analysis, create_formal_email, create_hormozi_offer, create_loe_document, create_logo, create_newsletter_entry, create_prd, explain_project, extract_business_ideas, extract_characters, extract_product_features, extract_skills, extract_sponsors, identify_job_stories, prepare_7s_strategy, rate_value, t_check_metrics, t_create_h3_career, t_visualize_mission_goals_projects, t_year_in_review, transcribe_minutes
**CLASSIFICATION**: apply_ul_tags
@@ -87,11 +87,11 @@ Match the request to one or more of these primary categories:
**CREATIVITY**: create_mnemonic_phrases, write_essay
**DEVELOPMENT**: agility_story, analyze_logs, analyze_prose_json, answer_interview_question, ask_secure_by_design_questions, ask_uncle_duke, coding_master, create_coding_feature, create_coding_project, create_command, create_design_document, create_git_diff_commit, create_loe_document, create_mermaid_visualization, create_mermaid_visualization_for_github, create_pattern, create_prd, create_sigma_rules, create_user_story, explain_code, explain_docs, explain_project, export_data_as_csv, extract_algorithm_update_recommendations, extract_mcp_servers, extract_poc, extract_product_features, generate_code_rules, identify_job_stories, improve_prompt, official_pattern_template, recommend_pipeline_upgrades, refine_design_document, review_code, review_design, sanitize_broken_html_to_markdown, suggest_pattern, summarize_git_changes, summarize_git_diff, summarize_pull-requests, write_nuclei_template_rule, write_pull-request, write_semgrep_rule
**DEVELOPMENT**: agility_story, analyze_logs, analyze_prose_json, answer_interview_question, ask_secure_by_design_questions, ask_uncle_duke, coding_master, create_coding_feature, create_coding_project, create_command, create_design_document, create_design_system, create_git_diff_commit, create_golden_rules, create_loe_document, create_mermaid_visualization, create_mermaid_visualization_for_github, create_pattern, create_prd, create_sigma_rules, create_user_story, explain_code, explain_docs, explain_project, export_data_as_csv, extract_algorithm_update_recommendations, extract_mcp_servers, extract_poc, extract_product_features, generate_code_rules, identify_job_stories, improve_prompt, official_pattern_template, recommend_pipeline_upgrades, refine_design_document, review_code, review_design, sanitize_broken_html_to_markdown, suggest_pattern, summarize_git_changes, summarize_git_diff, summarize_pull-requests, write_nuclei_template_rule, write_pull-request, write_semgrep_rule
**DEVOPS**: analyze_terraform_plan
**EXTRACT**: analyze_comments, create_aphorisms, create_tags, create_video_chapters, extract_algorithm_update_recommendations, extract_alpha, extract_article_wisdom, extract_book_ideas, extract_book_recommendations, extract_business_ideas, extract_characters, extract_controversial_ideas, extract_core_message, extract_ctf_writeup, extract_domains, extract_extraordinary_claims, extract_ideas, extract_insights, extract_insights_dm, extract_instructions, extract_jokes, extract_latest_video, extract_main_activities, extract_main_idea, extract_mcp_servers, extract_most_redeeming_thing, extract_patterns, extract_poc, extract_predictions, extract_primary_problem, extract_primary_solution, extract_product_features, extract_questions, extract_recipe, extract_recommendations, extract_references, extract_skills, extract_song_meaning, extract_sponsors, extract_videoid, extract_wisdom, extract_wisdom_agents, extract_wisdom_dm, extract_wisdom_nometa, extract_wisdom_short, extract_wisdom_with_attribution, generate_code_rules, t_extract_intro_sentences, t_extract_panel_topics
**EXTRACT**: analyze_comments, create_aphorisms, create_golden_rules, create_tags, create_video_chapters, extract_algorithm_update_recommendations, extract_alpha, extract_article_wisdom, extract_book_ideas, extract_book_recommendations, extract_business_ideas, extract_characters, extract_controversial_ideas, extract_core_message, extract_ctf_writeup, extract_domains, extract_extraordinary_claims, extract_ideas, extract_insights, extract_insights_dm, extract_instructions, extract_jokes, extract_latest_video, extract_main_activities, extract_main_idea, extract_mcp_servers, extract_most_redeeming_thing, extract_patterns, extract_poc, extract_predictions, extract_primary_problem, extract_primary_solution, extract_product_features, extract_questions, extract_recipe, extract_recommendations, extract_references, extract_skills, extract_song_meaning, extract_sponsors, extract_videoid, extract_wisdom, extract_wisdom_agents, extract_wisdom_dm, extract_wisdom_nometa, extract_wisdom_short, extract_wisdom_with_attribution, generate_code_rules, t_extract_intro_sentences, t_extract_panel_topics
**GAMING**: create_npc, create_rpg_summary, summarize_rpg_session
@@ -111,13 +111,13 @@ Match the request to one or more of these primary categories:
**SUMMARIZE**: capture_thinkers_work, concall_summary, create_5_sentence_summary, create_micro_summary, create_newsletter_entry, create_show_intro, create_summary, extract_core_message, extract_latest_video, extract_main_idea, summarize, summarize_board_meeting, summarize_debate, summarize_git_changes, summarize_git_diff, summarize_lecture, summarize_legislation, summarize_meeting, summarize_micro, summarize_newsletter, summarize_paper, summarize_pull-requests, summarize_rpg_session, youtube_summary
**VISUALIZE**: create_conceptmap, create_excalidraw_visualization, create_graph_from_input, create_idea_compass, create_investigation_visualization, create_keynote, create_logo, create_markmap_visualization, create_mermaid_visualization, create_mermaid_visualization_for_github, create_video_chapters, create_visualization, enrich_blog_post, t_visualize_mission_goals_projects
**VISUALIZE**: create_conceptmap, create_design_system, create_excalidraw_visualization, create_graph_from_input, create_idea_compass, create_investigation_visualization, create_keynote, create_logo, create_markmap_visualization, create_mermaid_visualization, create_mermaid_visualization_for_github, create_video_chapters, create_visualization, enrich_blog_post, t_visualize_mission_goals_projects
**WISDOM**: extract_alpha, extract_article_wisdom, extract_book_ideas, extract_insights, extract_most_redeeming_thing, extract_recommendations, extract_wisdom, extract_wisdom_dm, extract_wisdom_nometa, extract_wisdom_short, extract_wisdom_with_attribution
**WELLNESS**: analyze_spiritual_text, create_better_frame, extract_wisdom_dm, heal_person, model_as_sherlock_freud, predict_person_actions, provide_guidance, recommend_yoga_practice, t_give_encouragement
**WRITING**: analyze_prose_json, analyze_prose_pinker, apply_ul_tags, clean_text, compare_and_contrast, convert_to_markdown, create_5_sentence_summary, create_academic_paper, create_aphorisms, create_better_frame, create_design_document, create_diy, create_formal_email, create_hormozi_offer, create_keynote, create_micro_summary, create_newsletter_entry, create_prediction_block, create_prd, create_show_intro, create_story_about_people_interaction, create_story_explanation, create_summary, create_tags, create_user_story, enrich_blog_post, explain_docs, explain_terms, fix_typos, humanize, improve_academic_writing, improve_writing, label_and_rate, md_callout, official_pattern_template, recommend_talkpanel_topics, refine_design_document, summarize, summarize_debate, summarize_lecture, summarize_legislation, summarize_meeting, summarize_micro, summarize_newsletter, summarize_paper, summarize_rpg_session, t_create_opening_sentences, t_describe_life_outlook, t_extract_intro_sentences, t_extract_panel_topics, t_give_encouragement, t_year_in_review, transcribe_minutes, tweet, write_essay, write_essay_pg, write_hackerone_report, write_latex, write_micro_essay, write_pull-request
**WRITING**: analyze_prose_json, analyze_prose_pinker, apply_ul_tags, clean_text, compare_and_contrast, convert_to_markdown, create_5_sentence_summary, create_academic_paper, create_aphorisms, create_better_frame, create_design_document, create_design_system, create_diy, create_formal_email, create_hormozi_offer, create_keynote, create_micro_summary, create_newsletter_entry, create_prediction_block, create_prd, create_show_intro, create_story_about_people_interaction, create_story_explanation, create_summary, create_tags, create_user_story, enrich_blog_post, explain_docs, explain_terms, fix_typos, humanize, improve_academic_writing, improve_writing, label_and_rate, md_callout, official_pattern_template, recommend_talkpanel_topics, refine_design_document, summarize, summarize_debate, summarize_lecture, summarize_legislation, summarize_meeting, summarize_micro, summarize_newsletter, summarize_paper, summarize_rpg_session, t_create_opening_sentences, t_describe_life_outlook, t_extract_intro_sentences, t_extract_panel_topics, t_give_encouragement, t_year_in_review, transcribe_minutes, tweet, write_essay, write_essay_pg, write_hackerone_report, write_latex, write_micro_essay, write_pull-request
## Workflow Suggestions

View File

@@ -213,7 +213,7 @@ func Init() (ret *Flags, err error) {
// Append positional arguments to the message (custom message)
if len(args) > 0 {
ret.Message = AppendMessage(ret.Message, args[len(args)-1])
ret.Message = AppendMessage(ret.Message, strings.Join(args, " "))
}
if pipedToStdin {

View File

@@ -2,6 +2,7 @@ package openai
import (
"bytes"
"context"
"fmt"
"os"
"strings"
@@ -587,7 +588,7 @@ func TestSendResponses_WithWarningIntegration(t *testing.T) {
}
// Call sendResponses - this will trigger the warning and potentially error
_, err := client.sendResponses(nil, msgs, opts)
_, err := client.sendResponses(context.TODO(), msgs, opts)
// Close writer and read warning output
w.Close()

View File

@@ -60,6 +60,16 @@ func (c *Client) ListModels() ([]string, error) {
return c.DirectlyGetModels(context.Background())
}
// NeedsRawMode overrides the parent implementation to handle provider-specific raw mode requirements
func (c *Client) NeedsRawMode(modelName string) bool {
// MiniMax models require raw mode for proper message formatting
if c.GetName() == "MiniMax" {
return true
}
// Fall back to parent OpenAI client implementation for other providers
return c.Client.NeedsRawMode(modelName)
}
// getStaticModels returns a predefined list of models for providers that don't support model discovery
func (c *Client) getStaticModels(modelsKey string) ([]string, error) {
switch modelsKey {
@@ -117,6 +127,12 @@ func (c *Client) getStaticModels(modelsKey string) ([]string, error) {
"zai-org/glm-4.5",
"zai-org/glm-4.6",
}, nil
case "static:minimax":
return []string{
"MiniMax-M2",
"MiniMax-M2.1",
"MiniMax-M2.1-lightning",
}, nil
default:
return nil, fmt.Errorf("unknown static model list: %s", modelsKey)
}
@@ -172,7 +188,8 @@ var ProviderMap = map[string]ProviderConfig{
},
"MiniMax": {
Name: "MiniMax",
BaseURL: "https://api.minimaxi.com/v1",
BaseURL: "https://api.minimax.io/v1",
ModelsURL: "static:minimax",
ImplementsResponses: false,
},
"Mistral": {

View File

@@ -1 +1 @@
"1.4.388"
"1.4.390"

View File

@@ -1953,6 +1953,32 @@
"WISDOM",
"SELF"
]
},
{
"patternName": "analyze_discord_structure",
"description": "Analyze Discord server structures for organizational issues, permissions, and optimization.",
"tags": [
"ANALYSIS",
"BUSINESS"
]
},
{
"patternName": "create_design_system",
"description": "Create comprehensive CSS design systems with tokens, typography, spacing, and components.",
"tags": [
"DEVELOPMENT",
"VISUALIZE",
"WRITING"
]
},
{
"patternName": "create_golden_rules",
"description": "Extract enforceable rules from codebases to prevent common mistakes and ensure consistency.",
"tags": [
"ANALYSIS",
"DEVELOPMENT",
"EXTRACT"
]
}
]
}

View File

@@ -943,6 +943,18 @@
{
"patternName": "extract_wisdom_with_attribution",
"pattern_extract": "# IDENTITY and PURPOSE You extract surprising, insightful, and interesting information from text content. You are interested in insights related to the purpose and meaning of life, human flourishing, the role of technology in the future of humanity, artificial intelligence and its affect on humans, memes, learning, reading, books, continuous improvement, and similar topics. Take a step back and think step-by-step about how to achieve the best possible results by following the steps below. # STEPS - Extract a summary of the content in 25 words, including who is presenting and the content being discussed into a section called SUMMARY. - Extract 20 to 50 of the most surprising, insightful, and/or interesting ideas from the input in a section called IDEAS:. If there are less than 50 then collect all of them. Make sure you extract at least 20. - Extract 10 to 20 of the best insights from the input and from a combination of the raw input and the IDEAS above into a section called INSIGHTS. These INSIGHTS should be fewer, more refined, more insightful, and more abstracted versions of the best ideas in the content. - Extract 15 to 30 of the most surprising, insightful, and/or interesting quotes from the input into a section called QUOTES:. Use the exact quote text from the input. Append the speaker name using the format: \"Quote\" — Speaker Name. - Extract 15 to 30 of the most practical and useful personal habits of the speakers, or mentioned by the speakers, in the content into a section called HABITS. Examples include but aren't limited to: sleep schedule, reading habits, things they always do, things they always avoid, productivity tips, diet, exercise, etc. - Extract 15 to 30 of the most surprising, insightful, and/or interesting valid facts about the greater world that were mentioned in the content into a section called FACTS:. - Extract all mentions of writing, art, tools, projects and other sources of inspiration mentioned by the speakers into a section called REFERENCES. This should include any and all references to something that the speaker mentioned. - Extract the most potent takeaway and recommendation into a section called ONE-SENTENCE TAKEAWAY. This should be a 15-word sentence that captures the most important essence of the content. - Extract the 15 to 30 of the most surprising, insightful, and/or interesting recommendations that can be collected from the content into a section called RECOMMENDATIONS. # OUTPUT INSTRUCTIONS - Only output Markdown. - Write the IDEAS bullets as exactly 16 words. - Write the RECOMMENDATIONS bullets as exactly 16 words. - Write the HABITS bullets as exactly 16 words. - Write the FACTS bullets as exactly 16 words. - Write the INSIGHTS bullets as exactly 16 words. - Extract at least 25 IDEAS from the content. - Extract at least 10 INSIGHTS from the content. - Extract at least 20 items for the other output sections. - Do not give warnings or notes; only output the requested sections. - You use bulleted lists for output,"
},
{
"patternName": "analyze_discord_structure",
"pattern_extract": "# IDENTITY and PURPOSE You are an expert Discord server architect and community strategist. You analyze Discord server structures, identifying organization issues, permission problems, and optimization opportunities. Take a deep breath and think step by step about how this server could better serve its community. # STEPS 1. Parse the server structure input (channels, categories, roles, permissions) 2. Identify organizational patterns and anti-patterns 3. Check for permission issues and security concerns 4. Evaluate channel naming conventions 5. Assess role hierarchy and permission inheritance 6. Recommend improvements prioritized by impact # OUTPUT FORMAT ## Server Analysis: [Server Name] ### Overview | Metric | Value | |--------|-------| | Categories | N | | Channels | N | | Roles | N | | Members (if known) | N | ### Organizational Issues #### Critical - [Issue]: [Impact and recommendation] #### Moderate - [Issue]: [Impact and recommendation] ### Naming Convention Audit **Current Pattern**: [observed pattern] **Issues Found**: - [Channel name] - [Issue] **Recommended Convention**: - Categories: `EMOJI UPPERCASE NAME` - Text channels: `lowercase-hyphenated` - Voice channels: `Title Case` ### Permission Analysis #### Over-Permissioned Roles | Role | Dangerous Permission | Recommendation | |------|---------------------|----------------| | @role | ADMIN/BAN/etc | [Action] | #### Under-Permissioned Channels - [Channel] needs [permission] for [reason] ### Duplicate/Redundant Elements - [Category/Channel]: [Why it's redundant] ### Recommended Structure ``` Category: EMOJI NAME ├── #channel-one (purpose) ├── #channel-two (purpose) └── voice-channel (purpose) ``` ### Action Items Priority order for improvements: 1. **[Critical]** [Action] 2. **[High]** [Action] 3. **[Medium]** [Action] 4. **[Low]** [Action] ### Quick Wins Changes that take <5 minutes with high impact: - [ ] [Quick fix 1] - [ ] [Quick fix 2] # OUTPUT INSTRUCTIONS - No emojis in the analysis text (server names may contain them) - Be specific about channel/role names - Prioritize security issues first - Include Discord permission names (ADMINISTRATOR, MANAGE_CHANNELS, etc.) - Provide actionable recommendations - Keep recommendations practical for the server size - Consider community type (gaming, business, open source, etc.) # EXAMPLE OUTPUT ## Server Analysis: ONE Framework ### Overview | Metric | Value | |--------|-------| | Categories | 8 | | Channels | 34 | | Roles | 12 | | Members | 156 | ### Organizational Issues #### Critical - Duplicate \"general\" channels in two categories: Confuses new members #### Moderate - Archive category at top of list: Should be at bottom or hidden ### Naming Convention Audit **Current Pattern**: Mixed (some kebab-case, some spaces) **Issues Found**: - \"General Chat\" - Uses spaces instead of hyphens - \"ANNOUNCEMENTS\" - Inconsistent caps for text channel **Recommended Convention**: - Categories: `EMOJI UPPERCASE NAME` - Text channels: `lowercase-hyphenated` - Voice channels: `Title Case` ### Permission Analysis #### Over-Permissioned Roles | Role | Dangerous Permission | Recommendation | |------|---------------------|----------------| | @Helper | MANAGE_MESSAGES | Keep, but audit usage | | @Bot | ADMINISTRATOR | Reduce to specific perms | ### Action Items 1. **[Critical]** Merge duplicate general channels 2. **[High]** Move archive category to bottom 3. **[Medium]** Standardize channel naming 4. **[Low]** Create role"
},
{
"patternName": "create_design_system",
"pattern_extract": "# IDENTITY and PURPOSE You are an expert design systems architect. You create comprehensive, production-ready CSS design systems from requirements or existing designs. Your output is immediately usable in any modern web project. Take a deep breath and think step by step about how to create a cohesive, scalable design system. # STEPS 1. Analyze the input for brand colors, typography, spacing, and component needs 2. Create a semantic color system with both light and dark mode support 3. Define typography scale using modern best practices 4. Establish spacing and sizing scales 5. Create component tokens for common UI elements 6. Add utility classes for rapid development # OUTPUT FORMAT ## Design System: [Name] ### Color Tokens ```css :root { /* Brand Colors */ --brand-primary: #value; --brand-secondary: #value; --brand-accent: #value; /* Semantic Colors */ --color-success: #value; --color-warning: #value; --color-error: #value; --color-info: #value; /* Neutrals (Dark Mode Default) */ --neutral-900: #value; /* Darkest */ --neutral-800: #value; --neutral-700: #value; --neutral-600: #value; --neutral-500: #value; --neutral-400: #value; --neutral-300: #value; --neutral-200: #value; --neutral-100: #value; /* Lightest */ /* Semantic Backgrounds */ --bg-primary: var(--neutral-900); --bg-secondary: var(--neutral-800); --bg-tertiary: var(--neutral-700); /* Semantic Text */ --text-primary: var(--neutral-100); --text-secondary: var(--neutral-300); --text-muted: var(--neutral-500); /* Borders */ --border-color: var(--neutral-700); --border-radius-sm: 4px; --border-radius-md: 8px; --border-radius-lg: 12px; } /* Light Mode Override */ @media (prefers-color-scheme: light) { :root { --bg-primary: var(--neutral-100); --bg-secondary: var(--neutral-200); --text-primary: var(--neutral-900); --text-secondary: var(--neutral-700); } } ``` ### Typography ```css :root { /* Font Families */ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; --font-mono: 'JetBrains Mono', 'Fira Code', monospace; /* Font Sizes (using clamp for responsiveness) */ --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem); --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem); --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem); --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem); --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem); --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem); /* Font Weights */ --font-normal: 400; --font-medium: 500; --font-semibold: 600; --font-bold: 700; /* Line Heights */ --leading-tight: 1.25; --leading-normal: 1.5; --leading-relaxed: 1.75; } ``` ### Spacing Scale ```css :root { /* Base unit: 4px */ --space-1: 0.25rem; /* 4px */ --space-2: 0.5rem; /* 8px */ --space-3: 0.75rem; /* 12px */ --space-4: 1rem; /* 16px */ --space-5: 1.25rem; /* 20px */ --space-6: 1.5rem; /* 24px */ --space-8: 2rem; /* 32px */ --space-10: 2.5rem; /* 40px */ --space-12: 3rem; /* 48px */ --space-16: 4rem; /* 64px */ } ``` ### Component Tokens ```css :root { /* Buttons */ --btn-padding-x: var(--space-4); --btn-padding-y: var(--space-2); --btn-font-size: var(--text-sm); --btn-font-weight: var(--font-medium); --btn-border-radius: var(--border-radius-md); /* Cards */ --card-padding: var(--space-6); --card-border-radius: var(--border-radius-lg); --card-bg: var(--bg-secondary); /* Inputs */ --input-padding-x: var(--space-3); --input-padding-y: var(--space-2); --input-border-radius: var(--border-radius-sm); --input-border-color: var(--border-color); /* Transitions */ --transition-fast: 150ms ease; --transition-normal: 250ms ease; --transition-slow: 350ms ease; } ``` ### Shadows ```css :root { --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1); --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15); --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2); --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25); } ``` ### Usage Notes - Always use semantic tokens (--bg-primary) not raw values - Spacing follows 4px base unit - Typography uses clamp() for fluid sizing"
},
{
"patternName": "create_golden_rules",
"pattern_extract": "# IDENTITY and PURPOSE You are an expert at extracting implicit rules and guidelines from codebases, documentation, or team practices. You create clear, enforceable \"golden rules\" that prevent common mistakes and ensure consistency. Golden rules are the non-negotiable standards that, if followed, prevent 80% of problems. # STEPS 1. Analyze the input for patterns, anti-patterns, and conventions 2. Identify implicit rules that are not documented 3. Extract explicit rules that are critical 4. Categorize by domain (security, style, process, etc.) 5. Prioritize by impact (critical > important > nice-to-have) 6. Write rules that are specific and testable # OUTPUT FORMAT ## Golden Rules: [Domain/Project Name] ### Critical Rules These MUST be followed. Violations cause significant problems. #### 1. [Rule Name] **Rule**: [Clear, specific statement] **Why**: [Consequence of violation] **Do**: ``` // Correct example ``` **Don't**: ``` // Incorrect example ``` **Test**: [How to verify compliance] --- #### 2. [Rule Name] ... ### Important Rules Should be followed. Violations cause friction or technical debt. #### 1. [Rule Name] ... ### Guidelines Best practices. Violations are acceptable with justification. #### 1. [Guideline Name] ... ### Quick Reference | Category | Rule | Priority | |----------|------|----------| | Security | [Short rule] | Critical | | Style | [Short rule] | Important | | Process | [Short rule] | Guideline | ### Checklist Pre-commit/deploy checklist derived from rules: - [ ] [Check 1] - [ ] [Check 2] - [ ] [Check 3] # OUTPUT INSTRUCTIONS - Rules must be specific and testable - Include both positive (Do) and negative (Don't) examples - Explain WHY each rule exists - Prioritize ruthlessly (fewer critical rules) - Make rules enforceable (can be checked automatically or in review) - Use consistent formatting - Keep rules under 2 sentences each # EXAMPLE RULE #### No Hardcoded Credentials **Rule**: Never commit API keys, passwords, or secrets to the repository. **Why**: Exposed credentials lead to security breaches and are nearly impossible to fully revoke once in git history. **Do**: ```typescript const apiKey = Deno.env.get(\"API_KEY\"); ``` **Don't**: ```typescript const apiKey = \"sk-abc123...\"; // NEVER DO THIS ``` **Test**: Run `git secrets --scan` or grep for common key patterns. # INPUT INPUT:"
}
]
}