Skip to content

Commit 5ac9923

Browse files
committed
Enhance PR description automation guide by integrating business context from Port's software catalog. Updated instructions for AI agent setup, clarified the role of coding agents, and improved testing steps. Added new images to illustrate the context lake and enhancement process.
1 parent 440ba54 commit 5ac9923

File tree

7 files changed

+124
-51
lines changed

7 files changed

+124
-51
lines changed

docs/guides/all/auto-enhance-pr-descriptions-with-ai.md

Lines changed: 96 additions & 51 deletions
Large diffs are not rendered by default.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
import Tabs from '@theme/Tabs';
3+
import TabItem from '@theme/TabItem';
4+
5+
const CodingAgents = () => {
6+
return (
7+
<>
8+
<p>This guide supports multiple AI coding agents:</p>
9+
10+
<Tabs groupId="coding-agent" defaultValue="claude">
11+
<TabItem value="claude" label="Claude Code">
12+
AI-powered coding assistant by Anthropic follow the <a href="/guides/all/trigger-claude-code-from-port">→ Setup guide</a>
13+
</TabItem>
14+
15+
<TabItem value="copilot" label="GitHub Copilot">
16+
GitHub's native AI coding assistant follow the <a href="/guides/all/trigger-github-copilot-from-port">→ Setup guide</a>
17+
</TabItem>
18+
19+
<TabItem value="gemini" label="Google Gemini">
20+
Google's AI coding assistant follow the <a href="/guides/all/trigger-gemini-assistant-from-port">→ Setup guide</a>
21+
</TabItem>
22+
</Tabs>
23+
</>
24+
);
25+
};
26+
27+
export default CodingAgents;
28+
-178 KB
Loading
419 KB
Loading
-225 KB
Loading
40.5 KB
Loading
172 KB
Loading

0 commit comments

Comments
 (0)