Skip to content

Commit 0ecba88

Browse files
author
github-actions
committed
Merge branch 'main' into live
2 parents 6905faf + c4d8141 commit 0ecba88

26 files changed

+103
-61
lines changed

docs/design/agent-and-add-in-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Combine Copilot Agents with Office Add-ins (preview)
33
description: Get an overview of why and how to combine a Copilot agent with an Office Add-in.
4-
ms.date: 05/19/2025
4+
ms.date: 06/10/2025
55
ms.topic: overview
66
ms.localizationpriority: medium
77
---
@@ -121,8 +121,8 @@ The agent configuration file includes instructions for the agent and specifies o
121121

122122
```json
123123
{
124-
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.3/schema.json",
125-
"version": "v1.3",
124+
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.4/schema.json",
125+
"version": "v1.4",
126126
"name": "Excel Add-in + Agent",
127127
"description": "Agent for working with Excel cells.",
128128
"instructions": "You are an agent for working with an add-in. You can work with any cells, not just a well-formatted table.",

docs/design/built-in-button-integration.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Integrate built-in Office buttons into custom control groups and tabs
33
description: Learn how to include built-in Office buttons in your custom command groups and tabs on the Office ribbon.
4-
ms.date: 02/12/2025
4+
ms.date: 06/10/2025
55
ms.topic: how-to
66
ms.localizationpriority: medium
77
---
@@ -43,11 +43,11 @@ The following example adds the Office Paragraph control group to a custom tab.
4343
"id": "MyTab",
4444
...
4545
"groups": [
46-
... // Optionally, other groups in the tab
46+
... // Optionally, other groups in the tab.
4747
{
4848
"builtInGroupId": "Paragraph"
4949
},
50-
... // Optionally, other groups in the tab
50+
... // Optionally, other groups in the tab.
5151
]
5252
}
5353
]
@@ -80,11 +80,11 @@ The following example adds the Office Superscript control to a custom group.
8080
"id": "MyGroup",
8181
...
8282
"controls": [
83-
... // Optionally, other controls in the group
83+
... // Optionally, other controls in the group.
8484
{
8585
"builtInControlId": "Superscript"
8686
},
87-
... // Optionally, other controls in the group
87+
... // Optionally, other controls in the group.
8888
]
8989
}
9090
]
@@ -105,10 +105,10 @@ To insert a built-in Office control group into a tab, add an [OfficeGroup](/java
105105
The following markup example adds the Office Paragraph control group to a custom tab and positions it to appear just after a custom group.
106106

107107
```xml
108-
<ExtensionPoint xsi:type="ContosoRibbonTab">
108+
<ExtensionPoint xsi:type="PrimaryCommandSurface">
109109
<CustomTab id="Contoso.TabCustom1">
110110
<Group id="Contoso.myCustomTab.group1">
111-
<!-- additional markup omitted -->
111+
<!-- Additional markup omitted. -->
112112
</Group>
113113
<OfficeGroup id="Paragraph" />
114114
<Label resid="customTabLabel1" />
@@ -123,7 +123,7 @@ To insert a built-in Office control into a custom group, add an [OfficeControl](
123123
The following markup example adds the Office Superscript control to a custom group and positions it to appear just after a custom button.
124124

125125
```xml
126-
<ExtensionPoint xsi:type="ContosoRibbonTab">
126+
<ExtensionPoint xsi:type="PrimaryCommandSurface">
127127
<CustomTab id="Contoso.TabCustom2">
128128
<Group id="Contoso.TabCustom2.group1">
129129
<Label resid="residCustomTabGroupLabel"/>

docs/develop/agent-and-add-in.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add a Copilot agent to an add-in
33
description: Learn how to add a Copilot agent to an add-in.
4-
ms.date: 05/19/2025
4+
ms.date: 06/10/2025
55
ms.topic: how-to
66
ms.service: microsoft-365
77
ms.localizationpriority: medium
@@ -171,8 +171,8 @@ The runtime object should look similar to the following. There may be other prop
171171

172172
```json
173173
{
174-
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.3/schema.json",
175-
"version": "v1.3",
174+
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.4/schema.json",
175+
"version": "v1.4",
176176
"name": "Excel Add-in + Agent",
177177
"description": "Agent for working with Excel cells.",
178178
"instructions": "You are an agent for working with an add-in. You can work with any cells, not just a well-formatted table.",

docs/images/index/logo-office.png

459 KB
Loading

docs/images/m365-app-excel.png

5.2 KB
Loading

docs/images/m365-app-office.png

5.43 KB
Loading

docs/images/m365-app-onenote.png

6.64 KB
Loading

docs/images/m365-app-outlook.png

11.4 KB
Loading

docs/images/m365-app-powerpoint.png

6.85 KB
Loading

docs/images/m365-app-word.png

5.56 KB
Loading

0 commit comments

Comments
 (0)