Skip to content

feat(genomic): add skills field to BoilerplateConfig#87

Merged
pyramation merged 1 commit into
mainfrom
feat/genomic-boilerplate-skills
Jun 6, 2026
Merged

feat(genomic): add skills field to BoilerplateConfig#87
pyramation merged 1 commit into
mainfrom
feat/genomic-boilerplate-skills

Conversation

@pyramation
Copy link
Copy Markdown
Contributor

Summary

Adds BoilerplateSkill type and optional skills field to genomic's base BoilerplateConfig, so any CLI built on genomic can declare agent skills for post-scaffold installation.

export interface BoilerplateSkill {
  source: string;   // GitHub org/repo or full URL
  skills: string[]; // skill names to install
}

export interface BoilerplateConfig {
  type?: string;
  questions?: Question[];
  skills?: BoilerplateSkill[];  // ← new
}

Template .boilerplate.json files can now declare skills:

{
  "type": "workspace",
  "skills": [
    { "source": "constructive-io/constructive", "skills": ["pgpm"] }
  ]
}

Callers read result.config?.skills after scaffold() or inspect() and handle the actual npx skills add invocations themselves — genomic stays a pure scaffolding library with no child-process spawning.

Companion PRs:

Link to Devin session: https://app.devin.ai/sessions/8a70e4bc95b947faa41db21e02ed818e
Requested by: @pyramation

Add BoilerplateSkill interface and optional skills[] field to the base
BoilerplateConfig type, enabling any CLI built on genomic to declare
agent skills for post-scaffold installation via the agentskills.io CLI.

Callers read result.config.skills after scaffold/inspect and handle
the actual npx skills add invocations themselves.
@devin-ai-integration
Copy link
Copy Markdown

🤖 Devin AI Engineer

I'll be helping with this pull request! Here's what you should know:

✅ I will automatically:

  • Address comments on this PR. Add '(aside)' to your comment to have me ignore it.
  • Look at CI failures and help fix them

Note: I can only respond to comments from users who have write access to this repository.

⚙️ Control Options:

  • Disable automatic comment, CI, and merge conflict monitoring

@pyramation pyramation merged commit 9459582 into main Jun 6, 2026
44 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant