> ## Documentation Index
> Fetch the complete documentation index at: https://docs.razebot.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Companies

> Build a company, recruit members, grow through 5 stages, and compete on the net worth leaderboard.

# Companies

> Build a company, recruit members, grow through 5 stages, and compete on the net worth leaderboard.

## Overview

Companies are player-run organizations. Members earn a passive **earn bonus** on all economy commands. Companies grow through 5 stages by depositing into the vault, gaining reputation, and upgrading.

<Frame caption="Company overview">
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/raze/images/eco/company.png" alt="Company info embed" />
</Frame>

***

## Company stages

| Stage | Name     | Member Cap | Earn Bonus | Upgrade Cost | Rep Required |
| ----- | -------- | ---------- | ---------- | ------------ | ------------ |
| 1     | Startup  | 5          | +1%        | —            | 0            |
| 2     | Growth   | 8          | +2%        | \$250,000    | 500          |
| 3     | Scaling  | 12         | +4%        | \$1,000,000  | 2,500        |
| 4     | Industry | 16         | +8%        | \$5,000,000  | 10,000       |
| 5     | Empire   | 25         | +12%       | \$25,000,000 | 50,000       |

The earn bonus applies to **all** earn commands for every company member.

***

## Creating a company

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company create (name)
    ```
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company create Wanderer Corp
    ```

    Costs **\$50,000** from your wallet. Name must be 3–24 characters and unique. You become the CEO of the new company.
  </Tab>
</Tabs>

***

## Viewing a company

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company info (name)
    ```
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company info "Wanderer Corp"
    ```

    Shows the company profile: CEO, members, stage, reputation, vault balance, net worth (sum of all members' wallet + bank), vote count, and description. Public companies show a **Join** button.
  </Tab>
</Tabs>

***

## Joining a company

<Tabs>
  <Tab title="Via invite">
    CEOs and officers can invite you directly. Check pending invites:

    ```bash theme={null} theme={null}
    ;company invites
    ```

    Then accept or decline:

    ```bash theme={null} theme={null}
    ;company accept (invite_id)
    ```
  </Tab>

  <Tab title="Via Join button">
    If a company has public joining enabled, click the **Join** button on their `;company info` embed to join instantly without an invite.
  </Tab>
</Tabs>

***

## Member roles

| Role    | Permissions                                                                               |
| ------- | ----------------------------------------------------------------------------------------- |
| Member  | Deposit to vault, vote for reputation                                                     |
| Officer | Member permissions + invite users, kick members                                           |
| CEO     | All permissions + promote/demote, withdraw from vault, rename, upgrade, disband, transfer |

***

## Managing members

<AccordionGroup>
  <Accordion title="Invite a member (CEO/Officer)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company invite @member
        ```

        Sends an invite to the target user. Invites expire after 7 days. Target must not be in a company and the company must not be at its member cap.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company invite @zecroyn
        ```

        Sends an invite to the target user. Invites expire after 7 days. Target must not be in a company and the company must not be at its member cap.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Kick a member (CEO/Officer)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company kick @member
        ```

        Removes a member from the company. Cannot kick the CEO.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company kick @zecroyn
        ```

        Removes a member from the company. Cannot kick the CEO.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Promote to officer (CEO)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company promote @member
        ```

        Grants officer permissions to the target member.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company promote @wanderer
        ```

        Grants officer permissions to the target member.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Demote to member (CEO)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company demote @member
        ```

        Removes officer status. Member stays in the company.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company demote @wanderer
        ```

        Removes officer status. Member stays in the company.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Transfer CEO (CEO)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company transfer @member
        ```

        Transfers CEO status to another member. You become a regular member.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company transfer @wanderer
        ```

        Transfers CEO status to another member. You become a regular member.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Leave a company">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company leave
        ```

        Leave your company. **CEOs cannot leave** — you must transfer CEO or disband first.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company leave
        ```

        Leave your company. **CEOs cannot leave** — you must transfer CEO or disband first.
      </Tab>
    </Tabs>
  </Accordion>
</AccordionGroup>

***

## Vault

The company vault is a shared treasury. It funds upgrades and can be withdrawn by the CEO.

<Tabs>
  <Tab title="Deposit">
    ```bash theme={null} theme={null}
    ;company deposit (amount)
    ```

    *Alias: `;company dep (amount)`*

    Any member can deposit. Moves money from your wallet to the vault. Your `contributed` counter increases, tracked on your profile.
  </Tab>

  <Tab title="Withdraw (CEO only)">
    ```bash theme={null} theme={null}
    ;company withdraw (amount)
    ```

    *Alias: `;company wd (amount)`*

    Transfers from the vault to the CEO's wallet. Example: `;company withdraw 100000`
  </Tab>
</Tabs>

***

## Upgrading

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company upgrade
    ```
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company upgrade
    ```

    CEO only. Upgrades to the next stage if vault ≥ upgrade cost and reputation ≥ rep threshold. Cost is deducted from the vault.
  </Tab>
</Tabs>

***

## Reputation & voting

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company vote
    ```
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company vote
    ```

    Any member can vote once every **7 days**. Each vote adds **+25 reputation** to the company. Reputation unlocks stage upgrades.
  </Tab>
</Tabs>

***

## Leaderboard

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company top
    ```

    *Aliases: `;company leaderboard`, `;company lb`*
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company top
    ```

    Top 10 companies ranked by net worth (combined wallet + bank of all members). Shows name, stage, net worth, member count, and vault balance.
  </Tab>
</Tabs>

***

## Company settings

<AccordionGroup>
  <Accordion title="Rename (CEO)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company rename (new name)
        ```

        Costs **\$100,000** from the CEO's wallet. Name must be 3–24 characters and unique.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company rename "Apex Industries"
        ```

        Costs **\$100,000** from the CEO's wallet. Name must be 3–24 characters and unique.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Set description (CEO/Officer)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company setdesc (description)
        ```

        Max 300 characters. Shown on the company info embed.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company setdesc "Building the future, one grind at a time."
        ```

        Max 300 characters. Shown on the company info embed.
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Toggle public join (CEO)">
    <Tabs>
      <Tab title="Syntax">
        ```bash theme={null} theme={null}
        ;company public
        ```

        Toggles whether anyone can join via the Join button without an invite.
      </Tab>

      <Tab title="Example">
        ```bash theme={null} theme={null}
        ;company public
        ```

        Toggles whether anyone can join via the Join button without an invite.
      </Tab>
    </Tabs>
  </Accordion>
</AccordionGroup>

***

## Disbanding

<Tabs>
  <Tab title="Syntax">
    ```bash theme={null} theme={null}
    ;company disband
    ```
  </Tab>

  <Tab title="Example">
    ```bash theme={null} theme={null}
    ;company disband
    ```

    CEO only. A confirmation prompt appears. On confirm: the company is deleted, all members removed, and the CEO receives **50% of the vault** back to their wallet.

    <Warning>
      Disbanding is irreversible. All company progress, reputation, and 50% of vault funds are lost permanently.
    </Warning>
  </Tab>
</Tabs>
