model-detection
Universal model detection and capability assessment for optimal cross-model compatibility
What this skill does
## Overview
This skill provides universal model detection and capability assessment to optimize the Autonomous Agent Plugin across different LLM models (Claude Sonnet, Claude 4.5, GLM-4.6, etc.).
## Model Detection Algorithm
### Primary Detection Methods
1. **System Context Analysis**:
```javascript
// Check for model indicators in system context
const modelIndicators = {
'claude-sonnet-4.5': { pattern: /sonnet.*4\.5|4\.5.*sonnet/i, confidence: 0.9 },
'claude-haiku-4.5': { pattern: /haiku.*4\.5|4\.5.*haiku/i, confidence: 0.9 },
'claude-opus-4.1': { pattern: /opus.*4\.1|4\.1.*opus/i, confidence: 0.9 },
'glm-4.6': { pattern: /glm|4\.6/i, confidence: 0.9 },
'claude-haiku': { pattern: /haiku(?!\.*4\.5)/i, confidence: 0.8 }
}
```
2. **Performance Pattern Recognition**:
```javascript
// Analyze execution patterns to identify model
const performanceSignatures = {
'claude-sonnet-4.5': { reasoning: 'nuanced', speed: 'fast', adaptability: 'high' },
'claude-haiku-4.5': { reasoning: 'focused', speed: 'very_fast', adaptability: 'high' },
'claude-opus-4.1': { reasoning: 'enhanced', speed: 'very_fast', adaptability: 'very_high' },
'glm-4.6': { reasoning: 'structured', speed: 'moderate', adaptability: 'medium' }
}
```
3. **Capability Assessment**:
```javascript
// Test specific capabilities
const capabilityTests = {
nuanced_reasoning: testAmbiguousScenario,
structured_execution: testLiteralInterpretation,
context_switching: testMultiTaskContext,
adaptive_learning: testPatternRecognition
}
```
## Model-Specific Configurations
### Claude Sonnet 4.5 Configuration
```json
{
"model_type": "claude-sonnet-4.5",
"capabilities": {
"reasoning_style": "nuanced",
"context_management": "adaptive",
"skill_loading": "progressive_disclosure",
"error_handling": "pattern_based",
"communication_style": "natural_flow"
},
"performance_targets": {
"execution_time_multiplier": 1.0,
"quality_score_target": 90,
"autonomy_level": "high",
"delegation_style": "parallel_context_merge"
},
"optimizations": {
"use_context_switching": true,
"apply_improvisation": true,
"weight_based_decisions": true,
"predictive_delegation": true
}
}
```
### Claude Haiku 4.5 Configuration
```json
{
"model_type": "claude-haiku-4.5",
"capabilities": {
"reasoning_style": "focused",
"context_management": "efficient",
"skill_loading": "selective_disclosure",
"error_handling": "fast_prevention",
"communication_style": "concise"
},
"performance_targets": {
"execution_time_multiplier": 0.8,
"quality_score_target": 88,
"autonomy_level": "medium",
"delegation_style": "focused_parallel"
},
"optimizations": {
"use_fast_execution": true,
"apply_focused_reasoning": true,
"efficient_delegation": true,
"streamlined_processing": true
}
}
```
### Claude Opus 4.1 Configuration
```json
{
"model_type": "claude-opus-4.1",
"capabilities": {
"reasoning_style": "enhanced",
"context_management": "predictive",
"skill_loading": "intelligent_progressive",
"error_handling": "predictive_prevention",
"communication_style": "insightful"
},
"performance_targets": {
"execution_time_multiplier": 0.9,
"quality_score_target": 95,
"autonomy_level": "very_high",
"delegation_style": "predictive_parallel"
},
"optimizations": {
"use_context_switching": true,
"apply_improvisation": true,
"anticipatory_actions": true,
"enhanced_pattern_learning": true
}
}
```
### GLM-4.6 Configuration
```json
{
"model_type": "glm-4.6",
"capabilities": {
"reasoning_style": "structured",
"context_management": "sequential",
"skill_loading": "complete_loading",
"error_handling": "rule_based",
"communication_style": "structured_explicit"
},
"performance_targets": {
"execution_time_multiplier": 1.25,
"quality_score_target": 88,
"autonomy_level": "medium",
"delegation_style": "sequential_clear"
},
"optimizations": {
"use_structured_decisions": true,
"explicit_instructions": true,
"sequential_processing": true,
"clear_handoffs": true
}
}
```
## Adaptive Execution Strategies
### Skill Loading Adaptation
**Claude Models**:
```javascript
function loadSkillsForClaude(skills) {
// Progressive disclosure with context merging
return skills.map(skill => ({
...skill,
loading_strategy: 'progressive',
context_aware: true,
weight_based: true
}));
}
```
**GLM Models**:
```javascript
function loadSkillsForGLM(skills) {
// Complete upfront loading with clear structure
return skills.map(skill => ({
...skill,
loading_strategy: 'complete',
explicit_criteria: true,
priority_sequenced: true
}));
}
```
### Communication Style Adaptation
**Output Formatting by Model**:
| Model | Terminal Style | File Report Style | Reasoning |
|-------|----------------|-------------------|-----------|
| Claude Sonnet | Natural flow | Insightful analysis | Nuanced communication |
| Claude 4.5 | Concise insights | Enhanced context | Predictive communication |
| GLM-4.6 | Structured lists | Detailed procedures | Explicit communication |
### Error Recovery Adaptation
**Claude Models**: Pattern-based prediction and contextual prevention
**GLM Models**: Rule-based detection and structured recovery protocols
## Capability Testing Functions
### Nuanced Reasoning Test
```javascript
function testNuancedReasoning() {
// Present ambiguous scenario requiring subtle judgment
// Evaluate response quality and contextual awareness
return score >= 0.8; // True for Claude models
}
```
### Structured Execution Test
```javascript
function testStructuredExecution() {
// Present clear, sequential task
// Evaluate adherence to structured approach
return score >= 0.8; // True for GLM models
}
```
## Model Detection Implementation
### Auto-Detection Function
```javascript
function detectModel() {
// Step 1: Check system context indicators
const contextResult = analyzeSystemContext();
// Step 2: Test capability patterns
const capabilityResult = testCapabilities();
// Step 3: Analyze performance signature
const performanceResult = analyzePerformancePattern();
// Step 4: Combine results with confidence scoring
return combineDetections(contextResult, capabilityResult, performanceResult);
}
```
### Configuration Loading
```javascript
function loadModelConfiguration(detectedModel) {
const baseConfig = getBaseModelConfig(detectedModel);
const adaptiveConfig = generateAdaptiveConfig(detectedModel);
return mergeConfigurations(baseConfig, adaptiveConfig);
}
```
## Usage Guidelines
### When to Apply Model Detection
1. **Plugin Initialization**: First load of any agent
2. **Agent Delegation**: Before delegating to specialized agents
3. **Skill Loading**: Before loading any skill package
4. **Error Recovery**: When selecting recovery strategy
5. **Performance Optimization**: When setting execution targets
### Integration Points
- **Orchestrator Agent**: Use for autonomous decision-making adaptation
- **All Specialized Agents**: Use for model-specific behavior
- **Skill System**: Use for loading strategy selection
- **Quality Controller**: Use for model-appropriate quality targets
## Fallback Strategy
If model detection fails:
1. **Default to Conservative Settings**: Use structured, explicit approach
2. **Basic Capability Tests**: Run simplified detection tests
3. **Universal Configuration**: Apply cross-model compatible settings
4. **Performance Monitoring**: Continuously assess and adapt
## Validation Metrics
### Detection Accuracy
- Target: >95% correct model identification
- Measurement: Compare detected vs actual model capabilities
- Validation: Test across all supported models
### Performance Improvement
- Target: >10% improvement for GLM models
- Target: >2% improvement fRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.