-
Notifications
You must be signed in to change notification settings - Fork 0
Dev #10
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
Conversation
WalkthroughThis update revises documentation navigation, content, and configuration. It updates the sidebar structure, removes the Torus Bridge guide, and extensively rewrites pages for Torus Allocator, DAO, and Wallet to provide detailed procedural guidance. Several internal links, headings, and related topics are clarified or updated for consistency and accuracy. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DocsSidebar
participant DocsPage
User->>DocsSidebar: Navigates via sidebar (updated structure)
DocsSidebar->>DocsPage: Loads selected documentation page
DocsPage-->>User: Displays updated content (Allocator, DAO, Wallet, etc.)
Possibly related PRs
Poem
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (7)
src/content/docs/concepts/network-overview.mdx (1)
55-62: Card description now mismatches new titleThe first
LinkCardpoints to generic “Concepts” yet its description still says “Learn about the basic concepts of agents.” Consider a broader description to match the renamed target.- description="Learn about the basic concepts of agents." + description="Learn the foundational concepts of Torus."src/content/docs/web-apps/torus-portal.mdx (3)
28-45: Use absolute, canonical paths for internal links
../v05/permissionsand../v05/capability-permissionsare relative to the current folder, while the rest of the doc (e.g./v05/emission-permissions) uses absolute root-based paths. Mixing the two styles risks broken links if this page’s nesting level ever changes.-For permission details, see [Permissions System](../v05/permissions). … -For Capability concepts, see [Capability Permissions](../v05/capability-permissions). +For permission details, see [Permissions System](/v05/permissions). +… +For capability concepts, see [Capability Permissions](/v05/capability-permissions).
48-50: Align link style with the rest of the docSame rationale as above – prefer an absolute path.
-**Register Agent**: Basic agent registration (different from [root agent registration](../agents/apply-root-agent)) +**Register Agent**: Basic agent registration (different from [root agent registration](/agents/apply-root-agent))
64-82: Heading level / semanticsThe page jumps from
##to#### Related Topics, skipping the###level.
Unless there is an intentional hierarchy gap, bump this to###for consistent document structure and better a11y outline.src/content/docs/web-apps/torus-wallet.mdx (2)
20-22: Avoid embedding external links inside headingsHeadings are used for slug generation and page outline. Wrapping the entire heading in a link can:
- Produce awkward focus behaviour (whole heading becomes one link).
- Generate slugs containing the markdown link syntax.
Recommend separating the heading text and the link:
-## [Wallet Operations](https://wallet.torus.network) +## Wallet Operations + +Full interface: <https://wallet.torus.network>Apply the same pattern to the Staking and Bridge sections.
61-62: Minor wording“may take several minutes” → “can take several minutes” reads a little smoother.
Purely stylistic—feel free to ignore.
src/content/docs/web-apps/torus-allocator.mdx (1)
14-15: Fix casing and path for internal linkThe anchor text should follow product capitalization and the link should be absolute to avoid path-depth issues.
-For staking details, see [torus wallet](torus-wallet). +For staking details, see [Torus Wallet](/web-apps/torus-wallet).
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (11)
.gitignore(1 hunks)astro.config.mjs(3 hunks)src/content/docs/agents/register-agent.mdx(1 hunks)src/content/docs/concepts/network-overview.mdx(1 hunks)src/content/docs/getting-started/setup-wallet.mdx(1 hunks)src/content/docs/v05/permissions.mdx(1 hunks)src/content/docs/web-apps/torus-allocator.mdx(1 hunks)src/content/docs/web-apps/torus-bridge.mdx(0 hunks)src/content/docs/web-apps/torus-dao.mdx(1 hunks)src/content/docs/web-apps/torus-portal.mdx(4 hunks)src/content/docs/web-apps/torus-wallet.mdx(1 hunks)
💤 Files with no reviewable changes (1)
- src/content/docs/web-apps/torus-bridge.mdx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: clean-stale
🔇 Additional comments (6)
.gitignore (1)
24-25: Addition correctly protects local secretsIncluding
.env.localin.gitignoreprevents accidental exposure of developer-specific secrets. No further action needed.src/content/docs/agents/register-agent.mdx (1)
8-9: Confirm target page exists to avoid dead-link
/agents/clientreplaces the previous/agents/apply-root-agent. Please verify that the new slug is live (or included in this PR) before merging, otherwise navigation will 404.src/content/docs/v05/permissions.mdx (1)
68-74: Link path update looks good – double-check build passesThe switch to
/v05/...keeps links under the versioned namespace and improves coherence. Assuming the referenced MDX pages were moved accordingly, LGTM.src/content/docs/getting-started/setup-wallet.mdx (1)
58-75: Nice contextual links – ensure referenced docs existThe new “Related Topics” section improves discoverability. Just confirm the three slugs (
/cli/key-management,/cli/balance-operations,/web-apps/torus-wallet) are present in the site map to prevent broken links.astro.config.mjs (1)
67-75: Sidebar block looks goodNew “Web Apps” entries compile correctly and match the slugs added in docs. No structural issues spotted.
src/content/docs/web-apps/torus-dao.mdx (1)
71-78: LGTM – internal links correct & descriptiveLinks to Governance & DAO and Root Agent guide render correctly and use absolute paths.
Summary by CodeRabbit