# Product Overview

**Orbitra Arouw Dashboard**

The Orbitra dashboard is the primary interface for staking, governance participation, launchpad&#x20;access, and transparency. <br>

<figure><img src="https://29131506-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMa80jjVxZdxaR3LKdF82%2Fuploads%2FQR3f2kR1I4CIFf9z9Zqp%2Fphoto_2026-02-17_16-44-36.jpg?alt=media&#x26;token=5979555f-cd2d-4dd0-809b-806a7e26d8ff" alt=""><figcaption></figcaption></figure>

Orbitra may offer optional account features (email and 2FA) to improve usability, while critical&#x20;actions remain wallet-authenticated.\
• Staking (Orbit Lock), rewards tracking, and claim center\
• Proposals, project pages, and voting interface\
• Portals participation flow: eligibility, contribution, vesting, claim\
• Transparency view: Orbit Vault inflows/outflows and categorized reporting<br>

The repo’s creator CLI dispatches subcommands like `status | logs | fund | send`.\
Here’s how Orbitra could add `trade`:

```
// packages/cli/src/commands/trade.ts
import fs from "node:fs";

type Order = {
  symbol: string;
  side: "long" | "short";
  leverage: number;
  notionalUsd: number;
  stopLossPx: number;
  takeProfitPx: number;
  mode: "paper" | "live";
};

function readJson(path: string) {
  return JSON.parse(fs.readFileSync(path, "utf8"));
}

async function main() {
  const args = process.argv.slice(2); // ["trade", "--file", "orders.json", "--paper"]
  const fileIdx = args.indexOf("--file");
  const file = fileIdx >= 0 ? args[fileIdx + 1] : "orders.json";
  const mode: Order["mode"] = args.includes("--live") ? "live" : "paper";

  const orders: Order[] = readJson(file).map((o: Order) => ({ ...o, mode }));

  // For Orbitra: this would call into your Automaton instance via its message/inbox,
  // or directly hit your venue adapter (paper/live).
  console.log(JSON.stringify({ submitted: orders.length, mode }, null, 2));
}

main().catch((err) => {
  console.error(`trade failed: ${err?.message ?? String(err)}`);
  process.exit(1);
});
```

### Orbitra AI Automation Layer

{% stepper %}
{% step %}
Orbitra AI Co-Pilot (Assistive)

Summarizes proposals and extracts key considerations for reviewers and voters.\
• Summaries of proposals, technical docs, and economics disclosures\
• Standardized scorecards and due diligence question sets\
• Comparative analysis across similar projects and prior launches
{% endstep %}

{% step %}
Due Diligence Automation (Risk and Integrity)

Produces structured risk signals and integrity checks to reduce blind spots.\
• Flags inconsistencies across supply, allocations, vesting schedules, and disclosures\
• Detects copied or unverifiable claims and missing evidence\
• Integrates with static analysis tooling where available and disclosed
{% endstep %}

{% step %}

#### Allocation and Anti-Sybil Automation

Automates tier eligibility computation and supports auditable lottery mechanisms.\
• Computes tier eligibility from stake snapshots\
• Runs lottery selection with auditable randomness inputs\
• Produces heuristic Sybil warnings for human review
{% endstep %}
{% endstepper %}
