-
Notifications
You must be signed in to change notification settings - Fork 1
V2 documentation #171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
V2 documentation #171
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
f0d3623
V2 documentation
jhaynie af84042
more re-org for settings
jhaynie cf5bc61
use a table
jhaynie 49a690c
try and build
jhaynie 0edcab6
placeholder for guides
jhaynie d36d47c
attempt to fix https://github.com/agentuity/docs/security/dependabot/2
jhaynie 3705cc2
attempt upgrade to get past issue
jhaynie c7d39c6
fix theme when using system default
jhaynie 4efdd87
small tweaks
jhaynie 95f6074
add placeholder for guides
jhaynie cc43c48
add meta to help order the guides
jhaynie 0c0273b
consistent descriptions (remove periods)
jhaynie 7d08470
better ordering
jhaynie 4cbcecc
add ai gateway and more reordering
jhaynie ed07edb
agent cloud
rblalock 4a62244
udpate agent cloud
rblalock 7924505
agent cloud tweaks
rblalock efaebd5
WIP for agent-to-agent guideg
jhaynie 8cf114a
improve follow x button
jhaynie 16b4fce
agent streaming
rblalock 7f9ee6c
Merge branch 'v2' of github.com:agentuity/docs into v2
rblalock a189fc3
more content
jhaynie 57ef0af
Fix title.
rblalock 98555ec
Merge branch 'v2' of github.com:agentuity/docs into v2
rblalock a1469e1
more visual improvements
jhaynie ef80818
more visual tweaks and content improvements
jhaynie 0babd4f
spelling and grammar check
jhaynie 5a0ee8d
Refactor code blocks and more cleanup
jhaynie badefeb
more formatting, consistency and general wording
jhaynie 7f7191f
add more content for guides
jhaynie a138cdb
more formatting
jhaynie 7f8aac9
more cleanup
jhaynie ba7aa44
small nits
jhaynie f7ae9c3
small tweaks
jhaynie 015700c
Update Frameworks docs; update `agentuity new` -> `create`
mcongrove 0bd3a22
Styling; hide unused pages
mcongrove ddd6f4e
Hide guide list page
mcongrove a948048
Remove guide list page from meta.json
mcongrove 2b8b803
Tweaks
mcongrove File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { CodeBlock } from "fumadocs-ui/components/codeblock"; | ||
|
||
export interface CLICommandProps { | ||
command: string; | ||
children?: React.ReactNode; | ||
} | ||
|
||
export function CLICommand({ command, children }: CLICommandProps) { | ||
return ( | ||
<CodeBlock lang="bash" className="p-3"> | ||
<span className="flex items-start justify-start gap-2"> | ||
<span className="text-cyan-700 dark:text-cyan-700 select-none">$</span>{" "} | ||
<pre>{command}</pre> | ||
</span> | ||
{children && ( | ||
<div className="nd-copy-ignore mt-4 mb-1 text-yellow-600 dark:text-yellow-500 whitespace-break-spaces font-mono"> | ||
{children} | ||
</div> | ||
)} | ||
</CodeBlock> | ||
); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix semantic HTML structure issue.
Using a
<pre>
element inside a<span>
violates HTML semantics. The<pre>
element is block-level and should not be nested inside inline elements.📝 Committable suggestion
🤖 Prompt for AI Agents