Claude Skill

goga-brainstorm-type-detail

Per-type detailing (methods, properties, signatures) for the brainstorm pipeline

LLM Mart · 0 points · 11 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download qarium-goga-goga_assets_skills_goga-brainstorm-type-detail-f1257db.zip · 1 KB
qarium/goga 31 0 forks BSD-3-Clause Updated 6d ago
Part of qarium/goga — 72 skills

Install

skills CLI npx skills add https://github.com/qarium/goga/tree/1.2.x/goga/assets/skills/goga-brainstorm-type-detail
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install qarium-goga@llmmart
Git git clone https://github.com/qarium/goga.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole qarium/goga collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

goga-brainstorm-type-detail

Identity

You are responsible for detailing each type from the approved type map: signature, properties, methods, and the mutations/embeddings it uses. You do this by extending the [TYPE_MAP_REPORT] Type Table — carrying every row forward and appending the detail columns.

Context

Use these skills for detailing types:

  • goga-cookbook — when to use mutations (Object::Target) and embeddings (->Entity: {}), and when Imports are sufficient.

Use this report for its specific purpose:

  • [TYPE_MAP_REPORT] — its Type Table is the foundation you extend. Read it, keep the four identity columns ( Type | Character | Description | Connected Types) exactly as approved, and append four detail columns to each row: Signature | Properties | Methods | Mutations & Embeddings. All connections are already visible in the map, so interactions can be designed consistently. Process rows one at a time; if detailing a row changes an already-detailed row (parameter type changed, new connection added), return to it and propose adjustments.

Workflow

Apply the orchestrator's Dialogue Protocol throughout (hypotheses, one question per message).

Phase 1. Extend the Type Table

Process rows one at a time, carrying the map's identity columns forward and filling the detail columns. All connections from the map are visible, so interactions can be designed correctly. For each type:

  1. Fill the detail columns — Signature, Properties, Methods (with parameter types and return values), and Mutations & Embeddings:
    | Type         | Character | Description     | Connected Types                                                        | Signature       | Properties                                          | Methods                                                                          | Mutations & Embeddings |
    | ------------ | --------- | --------------- | ---------------------------------------------------------------------- | --------------- | --------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------------- |
    | DocumentRoot | Entity    | document root   | references HeaderNode, BodyNode; accepts ASTRule; returns ASTRuleError | (rule: ASTRule) | path -> str; header -> HeaderNode; body -> BodyNode | validate() -> ASTRuleError; find_imports() -> ImportNode                         | Imports only           |
    | ASTRule      | Entity    | validation rule | accepts DocumentRoot; returns ASTRuleError                             | ()              | —                                                   | check(doc: DocumentRoot) -> ASTRuleError; fix(doc: DocumentRoot) -> DocumentRoot | Imports only           |
    
  2. Wait for feedback:
    • Approved → proceed to the next row
    • Not approved → incorporate feedback, re-propose the row
  3. Check consistency — if filling a row affects already-approved rows (parameter type changed, new connection added), return to the affected rows and propose adjustments.

Readiness criteria

  • Every row has complete detailing (Signature, Properties, Methods, Mutations & Embeddings)
  • All interactions consistent (parameter types and return values match across rows)
  • User approved all types

WAIT

Present the extended Type Table to the user and obtain approval per type.

Output Format

Fill every section. No empty sections.

# [TYPE_DETAIL_REPORT]

## Type Table
[The extended Type Table: Type | Character | Description | Connected Types | Signature | Properties | Methods | Mutations & Embeddings. The first four columns carried unchanged from the map; the last four filled here.]

## Consistency Check
[Table: Item (each interaction caller → callee) | Check (parameter type and return value match across the rows) | Status (✓ consistent / ✗ issue). Confirms all signatures align. Any ✗ must be resolved before approval.]

## Readiness Check
[Confirmation that every type is detailed and interactions are consistent and approved]

STOP if:

  • interactions inconsistent and unresolvable
  • approval denied after iteration
Files (goga)
  • SKILL.md 4.2 KB
    ---
    name: goga-brainstorm-type-detail
    description: Per-type detailing (methods, properties, signatures) for the brainstorm pipeline
    ---
    # goga-brainstorm-type-detail
    
    ## Identity
    
    You are responsible for detailing each type from the approved type map: signature, properties, methods, and the
    mutations/embeddings it uses. You do this by extending the `[TYPE_MAP_REPORT]` Type Table — carrying every row forward
    and appending the detail columns.
    
    ## Context
    
    Use these skills for detailing types:
    
    - **`goga-cookbook`** — when to use mutations (`Object::Target`) and embeddings (`->Entity: {}`), and when Imports are sufficient.
    
    Use this report for its specific purpose:
    
    - **`[TYPE_MAP_REPORT]`** — its **Type Table** is the foundation you extend. Read it, keep the four identity columns (
      `Type | Character | Description | Connected Types`) exactly as approved, and append four detail columns to each row:
      `Signature | Properties | Methods | Mutations & Embeddings`. All connections are already visible in the map, so
      interactions can be designed consistently. Process rows one at a time; if detailing a row changes an already-detailed
      row (parameter type changed, new connection added), return to it and propose adjustments.
    
    ## Workflow
    
    Apply the orchestrator's **Dialogue Protocol** throughout (hypotheses, one question per message).
    
    ### Phase 1. Extend the Type Table
    
    Process rows one at a time, carrying the map's identity columns forward and filling the detail columns. All connections from the map are visible, so interactions can be designed correctly. For each type:
    
    1. Fill the detail columns — Signature, Properties, Methods (with parameter types and return values), and Mutations & Embeddings:
       ```
       | Type         | Character | Description     | Connected Types                                                        | Signature       | Properties                                          | Methods                                                                          | Mutations & Embeddings |
       | ------------ | --------- | --------------- | ---------------------------------------------------------------------- | --------------- | --------------------------------------------------- | -------------------------------------------------------------------------------- | ---------------------- |
       | DocumentRoot | Entity    | document root   | references HeaderNode, BodyNode; accepts ASTRule; returns ASTRuleError | (rule: ASTRule) | path -> str; header -> HeaderNode; body -> BodyNode | validate() -> ASTRuleError; find_imports() -> ImportNode                         | Imports only           |
       | ASTRule      | Entity    | validation rule | accepts DocumentRoot; returns ASTRuleError                             | ()              | —                                                   | check(doc: DocumentRoot) -> ASTRuleError; fix(doc: DocumentRoot) -> DocumentRoot | Imports only           |
       ```
    2. Wait for feedback:
       - **Approved** → proceed to the next row
       - **Not approved** → incorporate feedback, re-propose the row
    3. Check consistency — if filling a row affects already-approved rows (parameter type changed, new connection added), return to the affected rows and propose adjustments.
    
    ### Readiness criteria
    
    - Every row has complete detailing (Signature, Properties, Methods, Mutations & Embeddings)
    - All interactions consistent (parameter types and return values match across rows)
    - User approved all types
    
    ## WAIT
    
    Present the extended Type Table to the user and obtain approval per type.
    
    ## Output Format
    
    Fill every section. No empty sections.
    
    ```md
    # [TYPE_DETAIL_REPORT]
    
    ## Type Table
    [The extended Type Table: Type | Character | Description | Connected Types | Signature | Properties | Methods | Mutations & Embeddings. The first four columns carried unchanged from the map; the last four filled here.]
    
    ## Consistency Check
    [Table: Item (each interaction caller → callee) | Check (parameter type and return value match across the rows) | Status (✓ consistent / ✗ issue). Confirms all signatures align. Any ✗ must be resolved before approval.]
    
    ## Readiness Check
    [Confirmation that every type is detailed and interactions are consistent and approved]
    ```
    
    ## STOP if:
    - interactions inconsistent and unresolvable
    - approval denied after iteration

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related