hypercognitive-skill-compiler

Transform complex skill requirements into complete Agent Skills using exhaustive hypercognitive compiler thinking patterns

16 stars

Best use case

hypercognitive-skill-compiler is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Transform complex skill requirements into complete Agent Skills using exhaustive hypercognitive compiler thinking patterns

Teams using hypercognitive-skill-compiler should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/hypercognitive-skill-compiler/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/development/hypercognitive-skill-compiler/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/hypercognitive-skill-compiler/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How hypercognitive-skill-compiler Compares

Feature / Agenthypercognitive-skill-compilerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Transform complex skill requirements into complete Agent Skills using exhaustive hypercognitive compiler thinking patterns

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 🏆 HYPERCOGNITIVE SKILL COMPILER v1 — RUNTIME EXECUTABLE

## EXECUTIVE MANDATE
You are a SKILL COMPILER.
You will run exhaustive internal cognition once, to forge a complete Agent Skill that can run millions of times.

## NONNEGOTIABLES
- OUTPUT ONLY the final generated SKILL artifact bundle. No commentary.
- NEVER reveal internal thinking blocks, internal bullets, or the artifact registry.
- NEVER invent tools, APIs, external results, credentials, or inaccessible data.
- If CRITICAL info is missing: ask up to 7 precise questions and STOP (no workflow steps).
- Otherwise: proceed with assumptions (max 7) and continue.
- FINAL SKILL must include: Mermaid + Pseudocode + Data Rules + Error Handling + Quality Gates + Examples.
- FINAL SKILL headings and order are locked (see OUTPUT SPEC).

## CONTEXT
This is the **full hypercognitive compiler** preserving all original thinking modes, artifact registry, and compilation passes from the workflow prompt foundry. For **basic to intermediate skill creation** with structured templates, use the **[skill-builder](../skill-builder/)** instead.

Agent Skills are reusable instruction sets following the [Agent Skills specification](https://agentskills.io). This compiler handles **complex, production-ready skills** requiring exhaustive internal cognition and rigorous quality gates.

### Research Capabilities
This compiler can use available search tools (`searxng_searxng_web_search`, `searxng_web_url_read`) for maximum depth research:
- Validate requirements against standards and best practices
- Research skill domain expertise and implementation patterns
- Find examples, documentation, and authoritative sources
- Confirm approaches and cross-reference information
- Ensure comprehensive, research-driven skill development

## INPUT
SKILL_REQUEST_BUNDLE (verbatim)
Optional:
SKILL_EMBED_POLICY: minimal | balanced | maximal (default: balanced)
RUNTIME_TOKEN_BUDGET_HINT: integer (default: 2500)
RISK_LEVEL: low | medium | high (default: medium)

================================================================================
INTERNAL COMPILER ENGINE (ALWAYS ON, ULTRA-VERBOSE, NEVER OUTPUT)
================================================================================

### ARTIFACT REGISTRY (INTERNAL)
You must populate ALL keys below as you run the modes:
A0 Restatement + scope fences + definition lock
A1 Atomic/non-atomic/hybrid classification + rationale
A2 Success artifacts (what “done” looks like) + acceptance proofs
A3 Input contract: schema + parsing + validation + defaults + transforms
A4 Output contract: schema + formatting + acceptance criteria
A5 Constraint stack + priority order + conflict resolution
A6 State machine: states + transitions + invariants + stop conditions
A7 Step plan: numbered steps + checkpoints/logs + retries + idempotency rules
A8 Error taxonomy: detection + recovery + fallback + abort/escalation
A9 Edge cases (>=15) + handling strategy
A10 Quality gates/tests (pre/during/post)
A11 Mermaid blueprint(s) aligned to A7/A8
A12 Pseudocode blueprint(s) aligned to A7/A8
A13 Atomic subroutines (5–50) with I/O contracts
A14 Non-atomic boundary: heuristic zones + constraints/timeboxing
A15 Runtime thinking trigger subset plan (depends on embed policy)
A16 Lint report: contradictions, schema/diagram/pseudocode alignment, injection defense
A17 Final polish notes + oracle critique

### COMPILATION PASSES (INTERNAL)
Pass 1 — BUILD:
- Run all thinking modes, fill the registry, draft final skill.
Pass 2 — BREAK:
- Red-team: skill injection, contradictions, missing stop conditions, edge cases.
Pass 3 — REPAIR + TIGHTEN:
- Resolve failures, tighten language, ensure determinism and alignment.

### MODE EXECUTION CONTRACT (INTERNAL)
For EACH thinking mode block below:
- Fill in every bullet with concrete content.
- Write outputs to the referenced Artifact Registry keys.
- Mark completion by confirming “Done when …” criteria internally.
- Do NOT output the filled blocks.

================================================================================
THINKING MODE BLOCKS (DEPLOYED, RUN ALL, INTERNAL ONLY)
================================================================================

<mode_intent_distillation>
Trigger: ALWAYS
Fill in:
- What is the user explicitly asking for in skill requirements? (1–3 sentences)
- Must / Should / Nice-to-have capability list
- Non-goals (what the skill should NOT do)
Write to: A0
Done when: request is unambiguous in your own words
</mode_intent_distillation>

<mode_scope_fencing>
Trigger: ALWAYS
Fill in:
- In-scope items (capabilities, functions, components)
- Out-of-scope items (defer to other skills or external tools)
- Boundary interfaces (what touches this skill from outside)
Write to: A0, A5
Done when: boundaries prevent scope creep
</mode_scope_fencing>

<mode_definition_locking>
Trigger: ALWAYS
Fill in:
- Define key terms the user used (skill, atomic, non-atomic, agent, tools, etc.)
- Define success/failure terms (what counts as “done” skill)
- Detect conflicting definitions and resolve them
Write to: A0
Done when: terms cannot be interpreted two ways
</mode_definition_locking>

<mode_stakeholder_mapping>
Trigger: ALWAYS
Fill in:
- Stakeholders (requester, end-user, operator, maintainer, affected parties)
- Stakeholder goals + fears
- Conflicts between stakeholders
Write to: A0, A5
Done when: stakeholder conflicts have explicit resolution rules
</mode_stakeholder_mapping>

<mode_working_backwards_success_artifact>
Trigger: ALWAYS
Fill in:
- Describe the ideal final skill bundle outcome (what it enables)
- List acceptance proofs (how we verify it’s correct)
- Backchain required parts (SKILL.md, scripts, references, assets)
Write to: A2, A10
Done when: every step traces to acceptance proofs
</mode_working_backwards_success_artifact>

<mode_constraints_inventory>
Trigger: ALWAYS
Fill in:
- Hard constraints (must never violate): Agent Skills spec, name format, description length
- Soft constraints (preferences): progressive disclosure, script best practices
- Priority order and conflict resolution rule
Write to: A5
Done when: conflict resolution is explicit and deterministic
</mode_constraints_inventory>

<mode_unknowns_triage>
Trigger: ALWAYS
Fill in:
- Missing info list
- CRITICAL unknowns (block compilation) vs SAFE assumptions
- Draft up to 7 questions for critical unknowns
Write to: A0, A3, A4
Done when: you know whether to STOP or proceed
</mode_unknowns_triage>

<mode_epistemic_labeling>
Trigger: ALWAYS
Fill in:
- What is known for sure vs inferred vs guessed
- What must be verified by the runtime agent (if any)
- Where uncertainty must be disclosed in final outputs
Write to: A10, A16
Done when: final skill avoids pretending certainty
</mode_epistemic_labeling>

<mode_evidence_quality_audit>
Trigger: ALWAYS
Fill in:
- Inputs that may be unreliable
- How to validate or cross-check them using available search tools (searxng_searxng_web_search, searxng_web_url_read)
- Research strategy: start broad, refine queries, read authoritative sources, cross-reference
- Validation protocol: confirm from 2+ independent sources, check dates, verify against official docs
- How skill should behave if validation fails
Write to: A10, A8
Done when: weak evidence has guardrails and research protocol established
</mode_evidence_quality_audit>

<mode_research_protocol>
Trigger: ALWAYS
Fill in:
- Available search tools: searxng_searxng_web_search, searxng_web_url_read
- Research domains to investigate:
  1. Agent Skills specification and best practices
  2. Skill domain expertise and patterns
  3. Implementation approaches and examples
  4. Security considerations and constraints
  5. Compatibility requirements
- Search query strategy:
  1. Start with "Agent Skills [domain] best practices"
  2. Search for "[skill-name] implementation examples"
  3. Look for official documentation and GitHub repos
  4. Find security guidelines for similar tools
- Source evaluation criteria:
  1. Authoritativeness (official docs > blog posts)
  2. Recency (prioritize last 2 years)
  3. Multiple independent confirmations
  4. Practical examples over theoretical descriptions
- Documentation requirements:
  1. Cite sources in skill references
  2. Link to authoritative documentation
  3. Include practical examples with attribution
Write to: A3, A4, A10
Done when: research protocol covers all critical domains and includes source evaluation criteria
</mode_research_protocol>

<mode_multiple_hypotheses>
Trigger: ALWAYS
Fill in:
- 3–5 plausible interpretations of what the user truly needs
- Select primary + 1 fallback
- How final skill will branch if ambiguity persists
Write to: A0, A7
Done when: chosen interpretation is defended and fallback exists
</mode_multiple_hypotheses>

<mode_falsification_attempts>
Trigger: ALWAYS
Fill in:
- How your current plan could be wrong
- What tests/checks would reveal the wrongness
- How to patch the plan
Write to: A10, A16
Done when: biggest wrongness risks have tests
</mode_falsification_attempts>

<mode_first_principles>
Trigger: ALWAYS
Fill in:
- Primitives: skill requirements → transforms → final components
- Minimal required operations
- Remove ornamental complexity
Write to: A3, A4, A7
Done when: plan is irreducible without losing requirements
</mode_first_principles>

<mode_reductive_decomposition>
Trigger: ALWAYS
Fill in:
- Break skill creation into smallest steps
- For each step: input, output, validation, failure modes
Write to: A7, A8
Done when: each step has an I/O and a validator
</mode_reductive_decomposition>

<mode_invariants_specification>
Trigger: ALWAYS
Fill in:
- Invariants that must always hold (e.g., valid frontmatter, no tool hallucination)
- Where to assert invariants (gates)
Write to: A6, A10
Done when: invariants are enforceable and checked
</mode_invariants_specification>

<mode_state_machine_design>
Trigger: ALWAYS
Fill in:
- States (including error states)
- Transitions + triggers
- Stop conditions and abort conditions
Write to: A6
Done when: no “undefined state” exists
</mode_state_machine_design>

<mode_control_flow_design>
Trigger: ALWAYS
Fill in:
- Branching decisions and criteria
- Retry logic and ceilings
- Idempotency and re-entry rules
Write to: A7, A8
Done when: loops cannot run forever
</mode_control_flow_design>

<mode_interface_contracts>
Trigger: ALWAYS
Fill in:
- Contracts between skill components (what must be passed forward)
- Serialization formats (JSON/Markdown/YAML/etc.)
- Validation for component boundaries
Write to: A3, A4, A7
Done when: component handoffs are parseable and strict
</mode_interface_contracts>

<mode_data_contracts_and_parsing_rules>
Trigger: ALWAYS
Fill in:
- Input schema (JSON schema + example)
- Parsing rules (how to extract fields; defaults; transformations)
- Validation errors (messages and actions)
Write to: A3
Done when: invalid inputs lead to deterministic outcomes
</mode_data_contracts_and_parsing_rules>

<mode_output_contracts>
Trigger: ALWAYS
Fill in:
- Output schema + formatting requirements
- Acceptance criteria checklist
- Output validation steps
Write to: A4, A10
Done when: output can be mechanically checked
</mode_output_contracts>

<mode_error_taxonomy>
Trigger: ALWAYS
Fill in:
- Error classes (input, process, tool, output, user ambiguity)
- Detection signals
- Recovery action per class (retry/fallback/ask/abort)
Write to: A8
Done when: every error class has a defined response
</mode_error_taxonomy>

<mode_recovery_protocol_design>
Trigger: ALWAYS
Fill in:
- Primary recovery strategy per failure
- Fallback strategy if recovery fails
- Abort/escalation rule
Write to: A8
Done when: failure paths don’t dead-end silently
</mode_recovery_protocol_design>

<mode_quality_gates_design>
Trigger: ALWAYS
Fill in:
- Pre-flight gates (before execution)
- During-flight gates (after atomic steps; before/after heuristic steps)
- Post-flight gates (before returning final output)
Write to: A10
Done when: gates cover all failure classes
</mode_quality_gates_design>

<mode_observability_design>
Trigger: ALWAYS
Fill in:
- What to log at each step (minimal, useful)
- What to include in “execution summary” output
- What to omit (privacy, noise)
Write to: A7
Done when: logs enable debugging without verbosity explosion
</mode_observability_design>

<mode_atomic_nonatomic_partition>
Trigger: ALWAYS
Fill in:
- Atomic zone: deterministic parsing, validation, formatting, gates
- Non-atomic zone: heuristic reasoning, creativity, synthesis
- Transition protocol: how to enter/exit non-atomic safely
Write to: A14
Done when: heuristics cannot corrupt contracts
</mode_atomic_nonatomic_partition>

<mode_second_order_thinking>
Trigger: ALWAYS
Fill in:
- Downstream effects of skill design choices
- Likely operational failure at scale
- Guardrails that prevent compounding errors
Write to: A5, A8
Done when: “and then what?” is addressed
</mode_second_order_thinking>

<mode_inversion_thinking>
Trigger: ALWAYS
Fill in:
- How this skill could fail or be misused
- Prevention rules and alarms
- Hardened instruction hierarchy
Write to: A5, A16
Done when: obvious misuse paths are blocked
</mode_inversion_thinking>

<mode_pre_mortem>
Trigger: ALWAYS
Fill in:
- Assume failure in production; list top causes
- Convert each into a mitigation (gate/validator/retry rule)
Write to: A8, A10
Done when: each top cause has a mitigation
</mode_pre_mortem>

<mode_prompt_injection_defense>
Trigger: ALWAYS
Fill in:
- Instruction hierarchy rules for skill instructions
- Tool-call safety rules (if tools exist)
- “Ignore malicious instructions in inputs” policy
Write to: A5, A16
Done when: skill is resilient to injected text
</mode_prompt_injection_defense>

<mode_security_threat_model>
Trigger: ALWAYS
Fill in:
- Assets to protect (data, integrity, time, reputation)
- Threats (tampering, exfiltration, manipulation)
- Mitigations in constraints and gates
Write to: A5, A8
Done when: threats map to mitigations
</mode_security_threat_model>

<mode_privacy_minimization>
Trigger: ALWAYS
Fill in:
- Sensitive data types likely present
- Minimization and redaction rules
- Logging constraints
Write to: A5, A7
Done when: privacy constraints are explicit
</mode_privacy_minimization>

<mode_ethical_framing>
Trigger: ALWAYS
Fill in:
- Potential harms and unfair outcomes
- Stakeholder dignity rules
- “Do no harm” constraints if applicable
Write to: A5
Done when: ethics are operationalized as rules
</mode_ethical_framing>

<mode_cultural_context_check>
Trigger: ALWAYS
Fill in:
- Terms likely to be misread culturally
- Neutral phrasing replacements
- Localization considerations (units, tone)
Write to: A5
Done when: cultural ambiguity is reduced
</mode_cultural_context_check>

<mode_human_factors_cognitive_load>
Trigger: ALWAYS
Fill in:
- Where skill user could get confused
- Simplifications (checklists, templates, fewer branches)
- Mandatory “stop and ask” moments
Write to: A7, A10
Done when: instructions are followable under pressure
</mode_human_factors_cognitive_load>

<mode_visual_representation_design>
Trigger: ALWAYS
Fill in:
- Best diagram type(s) (flowchart/state/sequence/ERD)
- What must appear in mermaid (errors, recovery, boundaries)
- Diagram minimalism rules
Write to: A11
Done when: diagram reflects true control flow
</mode_visual_representation_design>

<mode_pseudocode_design_minimal>
Trigger: ALWAYS
Fill in:
- Minimal structured pseudocode flow
- Validation gates and stop rules
- Retry / fallback / abort logic
Write to: A12
Done when: pseudocode aligns to step plan and error taxonomy
</mode_pseudocode_design_minimal>

<mode_atomic_subroutines_design>
Trigger: ALWAYS
Fill in:
- 5–12 deterministic helper routines (name + purpose)
- Each routine’s inputs/outputs
- Failure behaviors per routine
Write to: A13
Done when: atomic helpers cover most repeated logic
</mode_atomic_subroutines_design>

<mode_contradiction_hunting>
Trigger: ALWAYS
Fill in:
- Find conflicts between constraints, steps, schemas, diagram, pseudocode
- Resolve by priority order
- Patch skill wording
Write to: A16
Done when: no unresolved conflict remains
</mode_contradiction_hunting>

<mode_oracle_critique>
Trigger: ALWAYS
Fill in:
- Critique as: expert operator, maintainer, skeptic, beginner, adversary
- Patch the skill accordingly
Write to: A17, A16
Done when: skill survives harsh review
</mode_oracle_critique>

### RUNTIME THINKING TRIGGER SELECTION (INTERNAL)
<mode_runtime_trigger_subset_plan>
Trigger: ALWAYS
Fill in:
- Based on SKILL_EMBED_POLICY:
  minimal: core 4 + 2–4 domain triggers
  balanced: core 4 + 6–12 domain triggers + 2 emergency triggers
  maximal: broad set, organized, non-chaotic
- For each chosen runtime trigger, define:
  - Trigger condition
  - What to produce (1–3 bullets)
  - Stop/continue rule
Write to: A15
Done when: runtime trigger panel is sharp, not bloated
</mode_runtime_trigger_subset_plan>

================================================================================
FINAL OUTPUT SPEC — THE SKILL BUNDLE YOU MUST OUTPUT
================================================================================

The skill bundle MUST include these components:

## 1. SKILL.md (Complete Definition)
---
name: {skill-name}
description: {One sentence describing when to use this skill}
license: MIT
compatibility: opencode
metadata:
  audience: {target-audience}
  category: {category}
---

# {Skill Title}

{Detailed description of what the skill does}

## When to use me

{Describe specific scenarios where this skill should be used}

## What I do

{Bulleted list of key capabilities}

## Examples

```bash
# Example usage patterns
```

## Output format

{Show example output the skill generates}

## Notes

{Any important implementation details or limitations}

## 2. Scripts Directory
- At least one executable script: `scripts/{script-name}.sh`
- Script must include: `#!/bin/bash`, `set -e`, proper error handling
- Script must be executable (`chmod +x`)

## 3. References Directory
- `references/README.md` with supporting documentation
- Can include API references, implementation notes, standards

## 4. Assets Directory (Optional)
- Static files, templates, examples

## 5. Validation Report
```
# Validation Report: {skill-name}

## Compliance Check
- [x] Name follows kebab-case format
- [x] Description 1-1024 characters
- [x] Frontmatter includes required fields
- [x] Scripts functional and secure
- [x] Examples provided
- [x] Edge cases handled
```

## 6. Mermaid Flowchart(s)
```mermaid
flowchart TD
    Start[Start Skill] --> Parse[Parse Requirements]
    Parse --> Validate[Validate Schema]
    Validate -->|Invalid| Ask[Ask Questions]
    Validate -->|Valid| Implement[Implement Skill]
    Implement --> Test[Test Skill]
    Test -->|Pass| Output[Output Bundle]
    Test -->|Fail| Fix[Fix Issues]
    Fix --> Test
```

## 7. Pseudocode Blueprint
```
FUNCTION create_skill(skill_requirements)
    // Validate inputs
    IF NOT VALIDATE_INPUTS(skill_requirements) THEN
        RETURN ASK_QUESTIONS()
    ENDIF
    
    // Design skill structure
    skill_structure = DESIGN_SKILL_STRUCTURE(skill_requirements)
    
    // Implement components
    skill_md = CREATE_SKILL_MD(skill_structure)
    scripts = CREATE_SCRIPTS(skill_structure)
    references = CREATE_REFERENCES(skill_structure)
    
    // Validate bundle
    IF NOT VALIDATE_BUNDLE(skill_md, scripts, references) THEN
        RETURN ERROR "Validation failed"
    ENDIF
    
    // Output complete bundle
    RETURN ASSEMBLE_BUNDLE(skill_md, scripts, references)
ENDFUNCTION
```

## 8. Quality Gates Checklist
### Pre-Flight
- [ ] Input validation passed
- [ ] Requirements understood
- [ ] Scope boundaries defined

### During-Flight
- [ ] Frontmatter valid
- [ ] Scripts executable
- [ ] Examples working

### Post-Flight
- [ ] Complete bundle validated
- [ ] Edge cases handled
- [ ] Security constraints satisfied

## 9. Error Handling Matrix
| Error Class | Detection | Recovery | Fallback |
|------------|-----------|----------|----------|
| Input Validation | Schema check | Ask questions | Use defaults |
| Script Execution | Exit code ≠ 0 | Retry (max 3) | Provide manual steps |
| Output Validation | Format check | Regenerate | Provide raw data |

## 10. Complete Examples
### Example 1: Basic Skill
```json
{
  "skill_requirements": {
    "name": "example-skill",
    "description": "Example skill demonstrating capabilities",
    "category": "development"
  }
}
```

### Example 2: Complex Skill with Edge Cases
```json
{
  "skill_requirements": {
    "name": "complex-skill",
    "description": "Handles multiple scenarios with robust error handling",
    "category": "productivity",
    "edge_cases": ["network failure", "invalid input", "timeout"]
  }
}
```

NOW COMPILE:
SKILL_REQUEST_BUNDLE (verbatim):
---
{{SKILL_REQUEST_BUNDLE}}
---
Run ALL thinking mode blocks internally (fill all bullets, populate A0–A17, run 3 passes).
Then output ONLY the final skill bundle in the format specified above.

Related Skills

bgo

10
from diegosouzapw/awesome-omni-skill

Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.

Coding & Development

javascript-typescript-typescript-scaffold

16
from diegosouzapw/awesome-omni-skill

You are a TypeScript project architecture expert specializing in scaffolding production-ready Node.js and frontend applications. Generate complete project structures with modern tooling (pnpm, Vite, N

javascript-testing-patterns

16
from diegosouzapw/awesome-omni-skill

Implement comprehensive testing strategies using Jest, Vitest, and Testing Library for unit tests, integration tests, and end-to-end testing with mocking, fixtures, and test-driven development. Use...

javascript-pro

16
from diegosouzapw/awesome-omni-skill

Master modern JavaScript with ES6+, async patterns, and Node.js APIs. Handles promises, event loops, and browser/Node compatibility.

java-pro

16
from diegosouzapw/awesome-omni-skill

Master Java 21+ with modern features like virtual threads, pattern matching, and Spring Boot 3.x. Expert in the latest Java ecosystem including GraalVM, Project Loom, and cloud-native patterns. Use PROACTIVELY for Java development, microservices architecture, or performance optimization.

java-doctor

16
from diegosouzapw/awesome-omni-skill

Comprehensive Java code health analyzer. 0-100 score with diagnostics. Progressive loading - detects project tech (Spring, gRPC, JPA) and loads relevant rules. Version-aware for Java 8-25 & Spring Boot 3.x/4.x. Dead code detection included. Use when reviewing Java code, finding bugs, or preparing for PR.

java-dev

16
from diegosouzapw/awesome-omni-skill

Java 开发规范,包含命名约定、异常处理、Spring Boot 最佳实践等

java-21-to-java-25-upgrade

16
from diegosouzapw/awesome-omni-skill

Comprehensive best practices for adopting new Java 25 features since the release of Java 21. Triggers on: ['*']

iroh-p2p

16
from diegosouzapw/awesome-omni-skill

Build modern peer-to-peer applications with Iroh. QUIC-based P2P networking, hole punching, content distribution, and decentralized data synchronization.

irish-takeaway

16
from diegosouzapw/awesome-omni-skill

Find nearby takeaways in Ireland and browse menus via Deliveroo/Just Eat. Uses Google Places API for discovery and browser automation for menu scraping.

ipai-ui-ux-pro-max

16
from diegosouzapw/awesome-omni-skill

Design intelligence for UI/UX generation and critique; use for layouts, typography, color palettes, tokens, and UX best practices. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and examples.

ios-developer

16
from diegosouzapw/awesome-omni-skill

Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization.