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
26 changes: 26 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "typefox",
"owner": {
"name": "TypeFox",
"url": "https://www.typefox.io"
},
"description": "TypeFox's agent skills for open source technologies, as an installable Claude Code plugin.",
"plugins": [
{
"name": "typefox-agent-skills",
"source": "./",
"description": "TypeFox's agent skills for open source technologies: agent experience (AX), idiomatic Go and Go documentation, Eclipse Dash license checks, VS Code extension publishing, TypeScript code review, and skill evaluation.",
"category": "engineering",
"keywords": [
"typefox",
"skills",
"go",
"typescript",
"agent-experience",
"eclipse",
"vscode",
"code-review"
]
}
]
}
31 changes: 31 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "typefox-agent-skills",
"version": "1.0.0",
"description": "TypeFox's agent skills for open source technologies: agent experience (AX), idiomatic Go and Go documentation, Eclipse Dash license checks, VS Code extension publishing, TypeScript code review, and skill evaluation.",
"author": {
"name": "TypeFox",
"url": "https://www.typefox.io"
},
"homepage": "https://agentskills.io/",
"repository": "https://github.com/TypeFox/agent-skills",
"license": "MIT",
"keywords": [
"typefox",
"skills",
"go",
"typescript",
"agent-experience",
"eclipse",
"vscode",
"code-review"
],
"skills": [
"./skills/agent-experience",
"./skills/eclipse-license-check",
"./skills/go-documentation",
"./skills/idiomatic-go",
"./skills/publish-vscode-extension",
"./skills/skill-evals",
"./skills/ts-code-reviewer"
]
}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ npx skills add TypeFox/agent-skills
npx skills add TypeFox/agent-skills -s <skill-name>
```

Or install this repo as a Claude Code plugin:

```sh
/plugin marketplace add TypeFox/agent-skills
/plugin install typefox-agent-skills@typefox
```

Skills are activated automatically when their trigger conditions match your conversation context. See the [agent skills documentation](https://agentskills.io/) for details on how skills work and how to manage them.

## Writing Skills
Expand Down