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.mdsource 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:*)
| Shortcut | Description |
|---|---|
| Multi-tier hybrid architecture |
| Monolithic (5 variants) |
| Microservices |
| Serverless |
Workflows
| Shortcut | Description |
|---|---|
| Agile/Scrum methodology |
| DevOps/CI-CD patterns |
| Waterfall/V-Model |
| Kanban flow |
Technology Stacks
| Shortcut | Description |
|---|---|
| .NET 8 / ASP.NET Core |
| Node.js 20.x / TypeScript |
| Python 3.11+ / FastAPI |
| Java 21 / Spring Boot 3.x |
| Go 1.22+ / Gin |
Deployment Strategies
| Shortcut | Description |
|---|---|
| Kubernetes / AKS |
| Docker Compose |
| Serverless |
| Virtual Machine |
Testing Frameworks
| Shortcut | Description |
|---|---|
| Unit testing |
| Integration testing |
| End-to-end testing |
| BDD with SpecFlow/Cucumber |
| Performance testing |
3. Auto-Detect Project Type
Scan current directory for:
→ Suggest*.csproj@dotnet
→ Suggestpackage.json@node
→ Suggestpyproject.toml@python
/pom.xml
→ Suggestbuild.gradle@java
→ Suggestgo.mod@go
→ SuggestDockerfile@deploy:docker
ork8s/
→ Suggesthelm/@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.