Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1649,6 +1649,46 @@
"dependencies": [],
"category": "standard"
},
{
"id": "typescript",
"name": "TypeScript",
"type": "context",
"path": ".opencode/context/core/standards/typescript.md",
"description": "Universal TypeScript language and engineering standards",
"tags": [
"typescript",
"standards"
],
"dependencies": [],
"category": "standard"
},
{
"id": "csharp",
"name": "C#",
"type": "context",
"path": ".opencode/context/core/standards/csharp.md",
"description": "Universal C# standards",
"tags": [
"csharp",
"standards"
],
"dependencies": [],
"category": "standard"
},
{
"id": "csharp-project-structure",
"name": "C# Project Structure",
"type": "context",
"path": ".opencode/context/core/standards/csharp-project-structure.md",
"description": "ASP.NET Core project structure and implementation patterns",
"tags": [
"csharp",
"standards",
"project-structure"
],
"dependencies": [],
"category": "standard"
},
{
"id": "documentation",
"name": "Documentation",
Expand Down
6 changes: 5 additions & 1 deletion scripts/registry/validate-registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ validate_component_paths() {
fi
fi
done <<< "$components"
return 0
}

suggest_fix() {
Expand Down Expand Up @@ -287,6 +288,9 @@ check_dependency_exists() {
plugin)
registry_category="plugins"
;;
skill)
registry_category="skills"
;;
context)
registry_category="contexts"
;;
Expand Down Expand Up @@ -380,7 +384,7 @@ validate_component_dependencies() {
fi

local result
result=$(check_dependency_exists "$dep")
result=$(check_dependency_exists "$dep" || true)

case "$result" in
found)
Expand Down
Loading