Skip to content

Commit aaacc99

Browse files
committed
bump version, amend docs
1 parent a3a65c6 commit aaacc99

4 files changed

Lines changed: 18 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "agents-sdk-common",
1010
"source": "./agent-plugins/agents-sdk-common",
1111
"description": "Shared skills for building agents with the Microsoft 365 Agents SDK (all languages)",
12-
"version": "1.1.0"
12+
"version": "1.1.1"
1313
},
1414
{
1515
"name": "agents-for-js",
@@ -21,7 +21,7 @@
2121
"name": "agents-for-net",
2222
"source": "./agent-plugins/agents-for-net",
2323
"description": "Skills for building agents with the Microsoft 365 Agents SDK for DotNet",
24-
"version": "1.1.0"
24+
"version": "1.1.1"
2525
}
2626
]
2727
}

agent-plugins/CONTRIBUTING.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ This guide explains how to add new skills, update existing skills, and add new p
1111
agent-plugins/
1212
agents-for-js/ ← a plugin
1313
plugin.json ← plugin metadata
14+
.claude-plugin/
15+
plugin.json ← plugin manifest (name + description)
1416
skills/
1517
<skill-name>/
1618
SKILL.md ← the skill content
@@ -83,9 +85,18 @@ A plugin groups skills for a new language, platform, or use case (e.g., a `agent
8385
}
8486
```
8587

86-
3. **Add skills** following the steps in [Adding a New Skill](#adding-a-new-skill-to-an-existing-plugin).
88+
3. **Add `.claude-plugin/plugin.json`** — a manifest that some clients (e.g., Claude Code) require for plugin discovery. It must contain at least the `name` and `description`, matching `plugin.json`:
8789

88-
4. **Register the plugin** in `/.claude-plugin/marketplace.json` by adding an entry to the `plugins` array:
90+
```json
91+
{
92+
"name": "agents-for-dotnet",
93+
"description": "Skills for building agents with the Microsoft 365 Agents SDK for .NET"
94+
}
95+
```
96+
97+
4. **Add skills** following the steps in [Adding a New Skill](#adding-a-new-skill-to-an-existing-plugin).
98+
99+
5. **Register the plugin** in `/.claude-plugin/marketplace.json` by adding an entry to the `plugins` array:
89100

90101
```json
91102
{
@@ -96,7 +107,7 @@ A plugin groups skills for a new language, platform, or use case (e.g., a `agent
96107
}
97108
```
98109

99-
5. **Document it** in `agent-plugins/README.md` — add the plugin to the Available Plugins table and list its skills.
110+
6. **Document it** in `agent-plugins/README.md` — add the plugin to the Available Plugins table and list its skills.
100111

101112
---
102113

agent-plugins/agents-for-net/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "agents-for-dotnet",
33
"description": "Skills for building agents with the Microsoft 365 Agents SDK for DotNet",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"author": {
66
"name": "Microsoft"
77
},

agent-plugins/agents-sdk-common/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "agents-sdk-common",
33
"description": "Shared skills for building agents with the Microsoft 365 Agents SDK (all languages)",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"author": {
66
"name": "Microsoft"
77
},

0 commit comments

Comments
 (0)