Awesome-omni-skill framework

Display Claude Code Optimization Framework status and available configurations. Shows all DSL shortcuts, loaded configs, and project detection.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/framework" ~/.claude/skills/diegosouzapw-awesome-omni-skill-framework-17ed1f && rm -rf "$T"
manifest: skills/development/framework/SKILL.md
source content

Framework Status Skill

When this skill is invoked, perform the following:

1. Load Framework Manifest

Read

C:\.claude\FRAMEWORK-MANIFEST.yaml
and display:

  • Framework version
  • Total configuration files
  • Last updated date

2. Display DSL Shortcuts

Show all available shortcuts in organized tables:

Architecture Patterns (@arch:*)

ShortcutDescription
@arch:hybrid
Multi-tier hybrid architecture
@arch:mono
Monolithic (5 variants)
@arch:ms
Microservices
@arch:sls
Serverless

Workflows

ShortcutDescription
@agile
Agile/Scrum methodology
@devops
DevOps/CI-CD patterns
@vmodel
Waterfall/V-Model
@kanban
Kanban flow

Technology Stacks

ShortcutDescription
@dotnet
.NET 8 / ASP.NET Core
@node
Node.js 20.x / TypeScript
@python
Python 3.11+ / FastAPI
@java
Java 21 / Spring Boot 3.x
@go
Go 1.22+ / Gin

Deployment Strategies

ShortcutDescription
@deploy:k8s
Kubernetes / AKS
@deploy:docker
Docker Compose
@deploy:sls
Serverless
@deploy:vm
Virtual Machine

Testing Frameworks

ShortcutDescription
@test:unit
Unit testing
@test:int
Integration testing
@test:e2e
End-to-end testing
@test:bdd
BDD with SpecFlow/Cucumber
@test:perf
Performance testing

3. Auto-Detect Project Type

Scan current directory for:

  • *.csproj
    → Suggest
    @dotnet
  • package.json
    → Suggest
    @node
  • pyproject.toml
    → Suggest
    @python
  • pom.xml
    /
    build.gradle
    → Suggest
    @java
  • go.mod
    → Suggest
    @go
  • Dockerfile
    → Suggest
    @deploy:docker
  • k8s/
    or
    helm/
    → Suggest
    @deploy:k8s

4. Show Recommended Configuration

Based on detection, suggest a combined configuration:

@arch:ms @dotnet @agile @deploy:k8s @test:unit

Usage

Simply type

/framework
to see the full status and recommendations.