mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-11 19:47:12 +03:00
fix: relocate binary analysis skill
This commit is contained in:
@@ -77,6 +77,15 @@
|
||||
"strict": false,
|
||||
"description": "Backend engineering methodology — API implementation patterns (REST, gRPC, GraphQL), service architecture (clean/hexagonal/layered), database access patterns, integration and middleware design, error handling, and service-level testing. Language and framework agnostic."
|
||||
},
|
||||
{
|
||||
"name": "binary-analysis",
|
||||
"source": "./",
|
||||
"skills": [
|
||||
"./binary-analysis"
|
||||
],
|
||||
"strict": false,
|
||||
"description": "Analyze unknown binary files through a deterministic CLI that wraps Ghidra's static-analysis engine. Use when you need to inspect a PE, ELF, or Mach-O file — triage suspicious binaries, map imported APIs, decompile functions, trace call paths, or produce structured evidence reports. Do not use for runtime analysis (debugging, dynamic tracing, sandbox execution), for modifying or patching binaries, or for binaries you already know everything about. The skill owns planning, hypothesis formation, and evidence synthesis; the CLI owns all deterministic operations."
|
||||
},
|
||||
{
|
||||
"name": "brand-designer",
|
||||
"source": "./",
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"./artifact-pyramids",
|
||||
"./autogen",
|
||||
"./backend-engineering",
|
||||
"./binary-analysis",
|
||||
"./brand-designer",
|
||||
"./bundles/neckbeard",
|
||||
"./bundles/research-and-vault",
|
||||
|
||||
@@ -40,6 +40,10 @@ An expert-level skill for building **conversational multi-agent systems** with M
|
||||
|
||||
Backend engineering methodology — API implementation patterns (REST, gRPC, GraphQL), service architecture (clean/hexagonal/layered), database access patterns, integration and middleware design, error handling, and service-level testing. Language and framework agnostic.
|
||||
|
||||
### [binary-analysis](binary-analysis/SKILL.md)
|
||||
|
||||
Analyze unknown PE, ELF, Mach-O, and firmware files through a deterministic CLI backed by Ghidra's static-analysis engine. Covers triage, imports, decompilation, call paths, and structured evidence reports without executing or modifying the binary.
|
||||
|
||||
### [brand-designer](brand-designer/SKILL.md)
|
||||
|
||||
Create comprehensive brand identity documentation for any brand. Guides you through documenting strategy, visual identity (logo, color, typography, imagery), voice and tone, application guidelines, governance, and asset inventory. Produces markdown specs, compiled brand books, and brand-compliant images via reference-image-aware generation. Ships 7 templates, a brand-book CLI for validation/compilation, and a generate script for brand card and mockup imagery.
|
||||
|
||||
@@ -46,7 +46,7 @@ After installing this skill, your agent can:
|
||||
### 1. Check your environment
|
||||
|
||||
```bash
|
||||
cd skills/binary-analysis
|
||||
cd binary-analysis
|
||||
scripts/binary doctor --json
|
||||
```
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user