Agent Skills
› yifanfeng97/Hyper-Extract
› brainstorm
brainstorm
GitHub协助用户探索需求并确定数据提取类型(如model、graph等),通过决策树和讨论问题输出设计草案,以便后续调用相应设计师。
Trigger Scenarios
design template
extract data
create extraction
unsure which type to use
Install
npx skills add yifanfeng97/Hyper-Extract --skill brainstorm -g -y
SKILL.md
Frontmatter
{
"name": "brainstorm",
"description": "Explore requirements and determine extraction type for Hyper-Extract.\nUse when user says: \"design template\", \"extract data\", \"create extraction\", \"unsure which type to use\".\nTrigger: User needs help deciding extraction type (model\/list\/set\/graph\/hypergraph).\nSkip: User already knows the type and wants specific design help."
}
Brainstorm: Requirements Exploration
Workflow
- Clarify input/output
- Discuss type details
- Output design draft → Pass to designer
Type Determination
Decision Tree
Need to model relationships?
├─ No → Record types
│ ├─ Single object → model
│ ├─ Ordered list → list
│ └─ Deduplicated set → set
└─ Yes → Graph types
├─ Binary (A→B) → graph
└─ Multi-entity (A+B+C→D)
├─ Flat list → hypergraph (simple)
└─ Role groups → hypergraph (nested)
After graph:
├─ + time dimension → temporal_graph
├─ + space dimension → spatial_graph
└─ + both → spatio_temporal_graph
Quick Reference
| Intent | Type |
|---|---|
| Summary/card | model |
| Ordered items | list |
| Deduplicated entities | set |
| Binary relations | graph |
| Multi-party events | hypergraph |
| + time | temporal_graph |
| + space | spatial_graph |
| + time + space | spatio_temporal_graph |
Discussion Questions
For All Types
- What is the input source?
- What to extract?
- Key fields needed?
For Graph Types
- Entity types and granularity?
- Relation types (predefined or custom)?
- Multi-type nodes?
For Hypergraph
- Simple or nested grouping?
- How many semantic groups?
- Group names?
For Temporal/Spatial
- Time/space on edge or node?
- Format handling?
Output: Design Draft
For Record Types (model/list/set)
## Type: [model/list/set]
## Fields
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| [name] | str | yes | ... |
## Notes
[Any special requirements]
For Graph Types (graph/hypergraph/temporal/spatial)
## Type: [graph/hypergraph/temporal/spatial]
## Entities
| Field | Type | Description |
|-------|------|-------------|
| name | str | Entity name |
| category | str | Entity type |
## Relations
| Field | Type | Description |
|-------|------|-------------|
| [field] | str/list | ... |
## Identifiers
- entity_id: name
- relation_id: '{...}'
- relation_members: [...]
## Notes
[Any special requirements]
Type-Specific Fields
| Type | Additional Fields |
|---|---|
| hypergraph | Participants or Groups |
| temporal_graph | time_field |
| spatial_graph | location_field |
| spatio_temporal_graph | time_field + location_field |
Pass to Designer
After brainstorm, invoke the appropriate designer:
- model/list/set → record-designer
- graph/hypergraph/temporal/spatial → graph-designer
Version History
- e698804 Current 2026-07-25 05:13


