Skill constructor
Skill({})
Implementation
Skill({
Frontmatter? frontmatter,
String? name,
String? description,
this.instructions = '',
Resources? resources,
this.version = '0.1.0',
String? license,
String? compatibility,
String? allowedTools,
Map<String, String>? metadata,
}) : frontmatter =
frontmatter ??
Frontmatter(
name: name ?? '',
description: description ?? '',
license: license,
compatibility: compatibility,
allowedTools: allowedTools,
metadata: metadata,
),
resources = resources ?? Resources();