graph-modeler
SolidConvert problem descriptions into graph representations
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Graph Modeler Skill
## Purpose
Convert problem descriptions into appropriate graph representations, identifying entities as nodes and relationships as edges.
## Capabilities
- Entity-to-node mapping from problem text
- Relationship-to-edge mapping
- Graph property detection (bipartite, DAG, tree, etc.)
- Suggest optimal representation (adjacency list vs matrix)
- Generate graph visualization
- Identify implicit graph structures
## Target Processes
- graph-modeling
- shortest-path-algorithms
- graph-traversal
- advanced-graph-algorithms
## Graph Modeling Framework
1. **Entity Identification**: What objects/states become nodes?
2. **Relationship Analysis**: What connections become edges?
3. **Edge Properties**: Directed? Weighted? Capacities?
4. **Graph Properties**: Special structure to exploit?
5. **Representation Choice**: List vs matrix vs implicit?
## Input Schema
```json
{
"type": "object",
"properties": {
"problemDescription": { "type": "string" },
"constraints": { "type": "object" },
"examples": { "type": "array" },
"outputFormat": {
"type": "string",
"enum": ["analysis", "code", "visualization"]
}
},
"required": ["problemDescription"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"nodes": { "type": "object" },
"edges": { "type": "object" },
"properties": {
"type": "object",
"properties": {
"directed": { "type": "boolean" }...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
graph-algorithm-selector
Select optimal graph algorithm based on problem constraints
1,160 Updated today
a5c-ai AI & Automation Solid
flow-network-builder
Model optimization problems as network flow problems
1,160 Updated today
a5c-ai Web & Frontend Listed
using-graph-databases
Graph database implementation for relationship-heavy data models. Use when building social networks, recommendation engines, knowledge graphs, or fraud detection. Covers Neo4j (primary), ArangoDB, Amazon Neptune, Cypher query patterns, and graph data modeling.
368 Updated 5 months ago
ancoleman AI & Automation Solid
graph-algorithms
Problem-solving strategies for graph algorithms in graph number theory
3,795 Updated 4 months ago
parcadei AI & Automation Solid
network-visualizer
Skill for visualizing network and graph data
1,160 Updated today
a5c-ai