Master the Fabric.

Beginner

Getting Started

Learn the basics of autonomous orchestration and deploy your first agent.

Start Guide →
Intermediate

Vibe Coding 101

Master natural language prompts to generate entire SaaS architectures.

Start Guide →
Advanced

API Integration

Deep dive into our REST API for enterprise-scale autonomous clusters.

Start Guide →

Getting Started

Welcome to BlackSpectron. This guide will walk you through deploying your very first autonomous agent using the BlackSpectron AI Studio.

Step 1: Create a Workspace

Navigate to the AI Studio. On the dashboard, you will be greeted with the command interface. Simply type the name of your project or what you want to build (e.g., "Build a landing page for my bakery").

Step 2: Assign Agents

By default, BlackSpectron will assign a Full Stack Engineer agent to your project. You can click on the 'Agents' tab in the sidebar to assign specialized roles like 'UI Designer' or 'Database Architect' depending on your requirements.

Step 3: Review and Deploy

Once the agents generate the architectural plan and write the initial code, you can review it in the IDE view. Click the Deploy Fabric button to push your code live to our edge servers.

Vibe Coding 101

Vibe Coding is the art of directing complex software architecture using natural language. At BlackSpectron, our models are tuned to understand high-level intent rather than strict syntax.

Best Practices for Prompts

  • Be Descriptive About the Aesthetic: Don't just say "make a dark mode". Say "Implement a dark mode using deep blacks (#050505), liquid glass effects, and neon pink accents."
  • Define User Flows: Tell the agent how a user navigates. "When a user clicks the hero button, smoothly scroll to the pricing section and trigger a pulsing animation."
  • Specify the Stack (Optional): If you care about the tech stack, mention it ("Use React, Tailwind, and Supabase"). Otherwise, BlackSpectron will choose the optimal stack for you.

API Integration

For enterprise clients, integrating the BlackSpectron REST API allows for programmatic orchestration of agents directly from your existing CI/CD pipelines or backend servers.

Authentication

All requests must include your API key in the header. You can generate an API key from your account settings.

Authorization: Bearer bs_live_xxxxxxxxx

Spawning an Agent via API

You can trigger an agent to perform a task by sending a POST request to our orchestration endpoint.

POST /v1/agents/spawn { "role": "QA Engineer", "repository": "github.com/your-org/repo", "task": "Write end-to-end Cypress tests for the new checkout flow." }