Skip to content

Add agent v2 documentation#3416

Closed
mintlify[bot] wants to merge 3 commits intomainfrom
agent-v2-documentation
Closed

Add agent v2 documentation#3416
mintlify[bot] wants to merge 3 commits intomainfrom
agent-v2-documentation

Conversation

@mintlify
Copy link
Contributor

@mintlify mintlify bot commented Feb 12, 2026

Summary

  • Created comprehensive agent v2 documentation powered by Claude 4.5 Sonnet
  • Added deprecation warning to agent v1 documentation (index.mdx)
  • Updated navigation to include new v2 page as first item in Agent group

Changes

New page: agent/agent-v2.mdx

Documents the new autonomous agent with:

  • Core capabilities and how it works
  • Available tools (file operations, git/GitHub, Mintlify CLI, specialized agents, task management)
  • Configuration via AGENTS.md
  • Key differences from v1
  • Best practices for prompts and working with the agent
  • Technical details (Claude 4.5 Sonnet, context window, security)

Updated: agent/index.mdx

  • Added deprecation warning banner at top
  • Links to new v2 documentation

Updated: docs.json

  • Added agent/agent-v2 as first page in Agent navigation group

Rationale

The agent now uses Claude 4.5 Sonnet with enhanced capabilities including autonomous planning, task management, and specialized tools. This documentation reflects those capabilities and provides users with a comprehensive understanding of what the agent can do.

The v1 documentation remains accessible but is clearly marked as deprecated to guide users toward the new version.


Note

Low Risk
Documentation-only changes plus a navigation reorder; no runtime or security-sensitive code paths are affected.

Overview
Introduces a new agent/agent-v2.mdx page documenting the v2 autonomous documentation agent (capabilities, workflow, tool access, AGENTS.md configuration, Slack/file upload support, best practices, and limitations).

Updates the existing agent/index.mdx page with a deprecation warning for agent v1 that links users to the new v2 docs, and updates docs.json navigation to include agent/agent-v2 as the first page in the Agent section.

Written by Cursor Bugbot for commit 2ad4b98. This will update automatically on new commits. Configure here.

---

<Info>
Agent v2 is available on [Enterprise plans](https://mintlify.com/pricing?ref=agent) and is powered by Anthropic's Claude 4.5 Sonnet model.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: since the underlying model may change, it might be safer to phrase this as “currently powered by …”.

Suggested change
Agent v2 is available on [Enterprise plans](https://mintlify.com/pricing?ref=agent) and is powered by Anthropic's Claude 4.5 Sonnet model.
Agent v2 is available on [Enterprise plans](https://mintlify.com/pricing?ref=agent) and is currently powered by Anthropic's Claude 4.5 Sonnet model.


## Configuration with AGENTS.md

Customize the agent's behavior by adding a `.claude/CLAUDE.md` file to your repository root. This file defines:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section title says AGENTS.md, but the content points to .claude/CLAUDE.md (and later the page repeats that). That seems inconsistent with /agent/customize, which documents AGENTS.md.

Suggested change
Customize the agent's behavior by adding a `.claude/CLAUDE.md` file to your repository root. This file defines:
Customize the agent's behavior by adding an `AGENTS.md` file to your repository. This file defines:

### Git and GitHub
- **Branch management**: Create and switch branches
- **Commit changes**: Stage and commit updates with descriptive messages
- **Pull requests**: Open PRs with clear descriptions using `gh` CLI
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor: calling out gh specifically makes it sound like a requirement. Might be better to describe the outcome rather than the implementation detail.

Suggested change
- **Pull requests**: Open PRs with clear descriptions using `gh` CLI
- **Pull requests**: Open PRs with clear descriptions

Be specific about what you want:

```
❌ "Update the docs"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style: the ✅/❌ markers can render inconsistently across platforms/themes. Consider using plain labels.

Suggested change
"Update the docs"
Bad: "Update the docs"
Good: "Add a section to /api-playground/overview explaining how to add authentication headers to API requests"

agent/index.mdx Outdated
---

<Warning>
This documentation describes agent v1, which is deprecated. Please refer to [agent v2](/agent/agent-v2) for the latest version powered by Claude 4.5 Sonnet with enhanced capabilities and autonomous planning.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this is the v1 deprecation banner, might be better to avoid tying it to a specific model name (less churn if the backing model changes).

Suggested change
This documentation describes agent v1, which is deprecated. Please refer to [agent v2](/agent/agent-v2) for the latest version powered by Claude 4.5 Sonnet with enhanced capabilities and autonomous planning.
This documentation describes agent v1, which is deprecated. Please refer to [agent v2](/agent/agent-v2) for the latest version with enhanced capabilities and autonomous planning.

- Added file upload capability in file operations section
- Documented Slack-specific features including file attachments
- Added examples of using file uploads with the agent
- Updated task management section with interactive prompts
- Added session management details
- Changed 'powered by' to 'currently powered by' for model flexibility
- Fixed AGENTS.md vs .claude/CLAUDE.md inconsistency throughout
- Removed 'using gh CLI' implementation detail
- Replaced emoji markers with 'Good'/'Bad' text labels for better rendering
- Removed model name from v1 deprecation banner

## Where to use agent v2

- **Dashboard**: Press <kbd>⌘</kbd>+<kbd>I</kbd> (macOS) or <kbd>Ctrl</kbd>+<kbd>I</kbd> (Windows/Linux) from any dashboard page
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keyboard shortcut formatting: docs elsewhere use the key name vs the symbol, and spaces around + read better.

Suggested change
- **Dashboard**: Press <kbd></kbd>+<kbd>I</kbd> (macOS) or <kbd>Ctrl</kbd>+<kbd>I</kbd> (Windows/Linux) from any dashboard page
- **Dashboard**: Press <kbd>Command</kbd> + <kbd>I</kbd> (macOS) or <kbd>Ctrl</kbd> + <kbd>I</kbd> (Windows/Linux) from any dashboard page

Comment on lines +67 to +68
- Prevents goal drift during complex updates
- Provides visibility into what's being worked on
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two bullets read like continuations; making them consistent with the rest of the list improves scanability.

Suggested change
- Prevents goal drift during complex updates
- Provides visibility into what's being worked on
- **Goal alignment**: Prevents goal drift during complex updates
- **Visibility**: Provides visibility into what's being worked on

[attach: endpoints.ts]
```

The agent automatically fetches, processes, and includes the files in your documentation.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence is a bit absolute; softening it avoids over-promising.

Suggested change
The agent automatically fetches, processes, and includes the files in your documentation.
The agent automatically fetches and processes attached files and can include them in your documentation.

@ethanpalm
Copy link
Collaborator

closing in favor of #3426

@ethanpalm ethanpalm closed this Feb 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant