Skip to content

Commit 8b9ee79

Browse files
authored
Update new folder organization (#17)
* refine how-to guides: enhance clarity on agent management, signal creation, and bridging processes for improved user experience * revise agent documentation: streamline sections on agent editing, registration, and root agents for enhanced user understanding and experience * add agent client/server guides: implement step-by-step tutorials for setting up agent client and server with clear instructions and examples * update how-to guides: replace generic terms with "Torus" for improved specificity and cohesion across documentation * refactor agent documentation: replace generic terms with specific "Torus" references for clarity and consistency across guides * enhance explanations section: add detailed topics for better understanding of agent systems and related concepts in Torus documentation * remove navigation links: clean up outdated prev/next links from agent registration, demand signaling, and root agents documentation * update agent documentation: restructure sections for builders and leaders, enhancing hierarchy and clarity in Torus guides
1 parent 04cf364 commit 8b9ee79

27 files changed

+850
-2323
lines changed

astro.config.mjs

Lines changed: 61 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,62 @@ export default defineConfig({
3333
},
3434
],
3535
},
36+
{
37+
label: "Explanations",
38+
items: [
39+
{ label: "Start Here", slug: "explanations/start-here" },
40+
{
41+
label: "Builders",
42+
collapsed: false,
43+
items: [
44+
{ label: "Agent Registration", slug: "explanations/builders/agent-registration" },
45+
{ label: "Agent Server", slug: "explanations/builders/agent-server" },
46+
{ label: "Agent Client", slug: "explanations/builders/agent-client" },
47+
{ label: "Agent Editing", slug: "explanations/builders/agent-editing" },
48+
{ label: "Demand Signaling", slug: "explanations/builders/demand-signaling" },
49+
],
50+
},
51+
{
52+
label: "Leaders",
53+
collapsed: false,
54+
items: [
55+
{ label: "Root Agents", slug: "explanations/root-agents/root-agents" },
56+
],
57+
},
58+
],
59+
},
3660
{
3761
label: "How-to Guides",
3862
items: [
3963
{ label: "Start Here", slug: "how-to-guides/start-here" },
40-
{ label: "Setup a Wallet", slug: "how-to-guides/setup-a-wallet" },
41-
{ label: "Bridge to Base", slug: "how-to-guides/bridge-to-base"},
42-
{ label: "Stake your Torus", slug: "how-to-guides/stake-your-torus" },
43-
{ label: "Register an Agent", slug: "how-to-guides/register-an-agent" },
44-
{ label: "Become a Root Agent", slug: "how-to-guides/become-a-root-agent" },
45-
{ label: "Edit your Agent", slug: "how-to-guides/edit-your-agent" },
46-
{ label: "Setup CLI", slug: "how-to-guides/setup-cli" },
64+
{
65+
label: "Participants",
66+
collapsed: false,
67+
items: [
68+
{ label: "Setup a Wallet", slug: "how-to-guides/participants/setup-a-wallet" },
69+
{ label: "Bridge from Base", slug: "how-to-guides/participants/bridge-from-base" },
70+
{ label: "Stake your Torus", slug: "how-to-guides/participants/stake-your-torus" },
71+
],
72+
},
73+
{
74+
label: "Builders",
75+
collapsed: false,
76+
items: [
77+
{ label: "Setup CLI", slug: "how-to-guides/builders/setup-cli" },
78+
{ label: "Register an Agent", slug: "how-to-guides/builders/register-an-agent" },
79+
{ label: "Edit your Agent", slug: "how-to-guides/builders/edit-your-agent" },
80+
{ label: "Create a Signal", slug: "how-to-guides/builders/create-signal" },
81+
{ label: "Setup Agent Server", slug: "how-to-guides/builders/setup-agent-server" },
82+
{ label: "Setup Agent Client", slug: "how-to-guides/builders/setup-agent-client" },
83+
],
84+
},
85+
{
86+
label: "Leaders",
87+
collapsed: false,
88+
items: [
89+
{ label: "Become a Root Agent", slug: "how-to-guides/root-agents/become-a-root-agent" },
90+
],
91+
},
4792
],
4893
},
4994
{
@@ -60,33 +105,22 @@ export default defineConfig({
60105
{ label: "Governance & DAO", slug: "concepts/governance-dao" },
61106
],
62107
},
63-
{
64-
label: "Working with Agents",
65-
items: [
66-
{ label: "Register an Agent", slug: "agents/register-agent" },
67-
{ label: "Become a Root Agent", slug: "agents/apply-root-agent" },
68-
{ label: "Agent Server", slug: "agents/server-setup" },
69-
{ label: "Agent Client", slug: "agents/client" },
70-
{ label: "Demand Signaling", slug: "agents/demand-signaling" },
71-
{ label: "Managing Your Agent", slug: "agents/management" },
72-
],
73-
},
74108
{
75109
label: "CLI & Tools",
76110
items: [
77111
{ label: "Key Management", slug: "cli/key-management" },
78112
{ label: "Balance Operations", slug: "cli/balance-operations" },
79113
],
80114
},
81-
{
82-
label: "Web Apps",
83-
items: [
84-
{ label: "Torus Portal", slug: "web-apps/torus-portal" },
85-
{ label: "Torus Allocator", slug: "web-apps/torus-allocator" },
86-
{ label: "Torus Wallet", slug: "web-apps/torus-wallet" },
87-
{ label: "Torus DAO", slug: "web-apps/torus-dao" },
88-
],
89-
},
115+
// {
116+
// label: "Web Apps",
117+
// items: [
118+
// { label: "Torus Portal", slug: "web-apps/torus-portal" },
119+
// { label: "Torus Allocator", slug: "web-apps/torus-allocator" },
120+
// { label: "Torus Wallet", slug: "web-apps/torus-wallet" },
121+
// { label: "Torus DAO", slug: "web-apps/torus-dao" },
122+
// ],
123+
// },
90124
{
91125
label: "Development",
92126
items: [

src/content/docs/agents/apply-root-agent.mdx

Lines changed: 0 additions & 163 deletions
This file was deleted.

0 commit comments

Comments
 (0)