# Farther Shore Docs - [Complete documentation](https://docs.farthershore.com/llms-full.txt) - [Capability catalog](https://docs.farthershore.com/capabilities.json) > Build and operate an agent-run software business. ## Platform - [Platform complete text](https://docs.farthershore.com/llms/platform.txt) ### Overview - [Find every platform capability](https://docs.farthershore.com/get-started/capability-map): Choose the right SDK, workflow and operating surface from one capability map. ### Start here - [How Farther Shore works](https://docs.farthershore.com/get-started/overview): Define a software business in one managed repository and operate it through the CLI. - [Choose a product shape](https://docs.farthershore.com/get-started/product-shapes): Start with a hosted app, an API, or a hybrid product. - [Install the CLI](https://docs.farthershore.com/get-started/install): Install the agent-friendly CLI and sign in as yourself. - [Quickstart](https://docs.farthershore.com/get-started/quickstart): Create a managed repository, author the business from scratch, and verify the pushed contract. - [Core concepts](https://docs.farthershore.com/get-started/concepts): The source, build, customer, and release boundaries behind every Farther Shore business. ### Cookbook - [Build a hybrid product](https://docs.farthershore.com/cookbook/hybrid-product): Launch one product with a customer app and a metered API. - [A pay-as-you-go API](https://docs.farthershore.com/cookbook/usage-based-api): Put a metered, limited, billed gateway in front of an origin API. - [A subscription SaaS app](https://docs.farthershore.com/cookbook/saas-subscription-app): Sell a hosted app with a flat monthly plan and managed billing UI. ### Reference - [Environment variables](https://docs.farthershore.com/reference/env-vars): CLI configuration, backend runtime credentials, and business variables (public by FS_PUBLIC_ prefix, secret otherwise). - [Glossary](https://docs.farthershore.com/reference/glossary): Plain-language definitions for the terms used across Farther Shore. ## Business SDK - [Business SDK complete text](https://docs.farthershore.com/llms/business-sdk.txt) ### Build your product - [The fs.business() program](https://docs.farthershore.com/define/business-class): Author the repository-owned contract with the functional Business SDK. - [Meters & measures](https://docs.farthershore.com/define/meters): Declare what your backend measures, the dimensions it measures under, and where those measurements are reported. - [Counted resources](https://docs.farthershore.com/define/resources): Bound persistent inventory such as projects, seats, or workspaces. - [Routes & access groups](https://docs.farthershore.com/define/routes): Declare each HTTP operation's access, metering, policy, and backend binding. - [Route groups & grants](https://docs.farthershore.com/define/groups): Bundle route refs for reuse without introducing another entitlement layer. - [Plans & pricing](https://docs.farthershore.com/define/plans): Declare a plan's kind and its five economic controls; grant access and bounds beside them. - [The build output](https://docs.farthershore.com/define/build-output): Understand deterministic Manifest IR and what a local build proves. - [Team RBAC](https://docs.farthershore.com/define/team-rbac): Enable customer-managed roles over the route permission catalog. - [Tenancy & identity](https://docs.farthershore.com/define/tenancy): Use the subscriber organization for billing and the verified principal for data ownership. - [Frontend integrations](https://docs.farthershore.com/define/frontend-integrations): Expose one constrained third-party operation without putting its secret in browser code. ### Reference - [@farthershore/business](https://docs.farthershore.com/reference/business-sdk): Functional value-model API for authoring a software business in TypeScript. ### Cookbook - [Add metered routes](https://docs.farthershore.com/cookbook/metered-routes): Meter a new dimension, charge for it on a route, and grant it on a plan. - [Add a resource limit](https://docs.farthershore.com/cookbook/add-resource-limit): Cap how many persistent resources a subscriber may own. - [Add team RBAC](https://docs.farthershore.com/cookbook/add-team-rbac): Turn on managed team roles and permission enforcement. ### Complete reference - [@farthershore/business exports](https://docs.farthershore.com/generated/business-sdk/root): Every public export and declaration from @farthershore/business. - [@farthershore/business/codegen exports](https://docs.farthershore.com/generated/business-sdk/codegen): Every public export and declaration from @farthershore/business/codegen. ## Backend SDK - [Backend SDK complete text](https://docs.farthershore.com/llms/backend-sdk.txt) ### Connect your application - [Bring your own backend](https://docs.farthershore.com/backend/overview): Decide whether you need a backend, declare its contract, and control inherited or overridden environment origins. - [Scaffold a backend service](https://docs.farthershore.com/backend/scaffold): Create a Node backend, verify gateway requests, deploy it, and bind it to a business environment. - [Transport modes](https://docs.farthershore.com/backend/transport-modes): Choose direct HTTPS or an outbound tunnel without changing request verification. - [Infrastructure with OpenTofu](https://docs.farthershore.com/backend/infrastructure-opentofu): Provision the backend host, its secrets, and one deployment per environment with tofu, then bind each origin to a Farther Shore environment. - [Deploy on Railway](https://docs.farthershore.com/backend/deploy-railway): Run the Node backend on Railway, deliver FS_RUNTIME_TOKEN, and bind its HTTPS origin. - [Deploy on Render](https://docs.farthershore.com/backend/deploy-render): Run the Node backend as a Render web service and bind its environment-specific origin. - [Deploy on AWS](https://docs.farthershore.com/backend/deploy-aws): Run a container on ECS Fargate with a direct ALB origin or an outbound tunnel. - [Deploy on Google Cloud](https://docs.farthershore.com/backend/deploy-gcp): Run a direct HTTPS backend on Cloud Run and bind its URL to each Farther Shore environment. - [Metering & verification](https://docs.farthershore.com/backend/metering): Verify gateway requests and report exact dynamic usage through the right metering channel. - [Runtime tokens](https://docs.farthershore.com/backend/runtime-tokens): Scope, deliver, rotate, and revoke the FS_RUNTIME_TOKEN used by backend processes. - [Storing per-user data](https://docs.farthershore.com/backend/user-data): Key backend records from the signed principal and create them without first-request races. ### Reference - [@farthershore/backend](https://docs.farthershore.com/reference/backend-sdk): Runtime request-verification and usage metering for builder upstreams. ### Cookbook - [Add a backend](https://docs.farthershore.com/cookbook/add-backend): Declare route ownership in the Business program, then bind environment-specific runtime state. - [Connect a direct backend](https://docs.farthershore.com/cookbook/direct-backend): Create a direct runtime target, require signed gateway requests, and verify one preview route. - [Add a webhook consumer](https://docs.farthershore.com/cookbook/add-webhook-consumer): Create an API-managed endpoint, verify a signed test delivery, and pause it safely on failure. ### Complete reference - [@farthershore/backend exports](https://docs.farthershore.com/generated/backend-sdk/root): Every public export and declaration from @farthershore/backend. - [@farthershore/backend/express exports](https://docs.farthershore.com/generated/backend-sdk/express): Every public export and declaration from @farthershore/backend/express. - [@farthershore/backend/reflect exports](https://docs.farthershore.com/generated/backend-sdk/reflect): Every public export and declaration from @farthershore/backend/reflect. - [@farthershore/backend/runtime exports](https://docs.farthershore.com/generated/backend-sdk/runtime): Every public export and declaration from @farthershore/backend/runtime. - [@farthershore/backend/testing exports](https://docs.farthershore.com/generated/backend-sdk/testing): Every public export and declaration from @farthershore/backend/testing. - [@farthershore/backend/webhooks exports](https://docs.farthershore.com/generated/backend-sdk/webhooks): Every public export and declaration from @farthershore/backend/webhooks. - [backend-sdk HTTP contracts](https://docs.farthershore.com/generated/backend-sdk/http): Supported HTTP operations, source validators, SDK companions and explicit OpenAPI schema limits. ## Frontend SDK - [Frontend SDK complete text](https://docs.farthershore.com/llms/frontend-sdk.txt) ### Build the customer UI - [Frontend SDK](https://docs.farthershore.com/frontend/overview): Build a managed subscriber portal, understand runtime configuration, and follow the Git-triggered release flow. - [Root & data components](https://docs.farthershore.com/frontend/components): Mount the SDK once, compose self-managed subscriber surfaces, and keep layout and CSS in your application. - [Auth & sessions](https://docs.farthershore.com/frontend/auth): Use the environment-selected subscriber auth strategy and gate application routes without owning token plumbing. - [Access-aware UI](https://docs.farthershore.com/frontend/access-aware-ui): Present auth, role, plan, and limit state without duplicating gateway authorization. - [Permission gates](https://docs.farthershore.com/frontend/permission-gates): Present managed RBAC decisions with PermissionGate, RequireAuth, and the verified permission claim. - [Custom components](https://docs.farthershore.com/frontend/custom-components): Register your own component ids and let subscriber organizations configure their gates exactly like the managed set. - [Variables](https://docs.farthershore.com/frontend/variables): Every variable is a write-only secret unless its name starts with FS_PUBLIC_. ### Reference - [@farthershore/farthershore-js](https://docs.farthershore.com/reference/frontend-sdk): The browser client, React hooks, and managed component kit. ### Cookbook - [Share with another member](https://docs.farthershore.com/cookbook/share-with-a-member): Let a member share a document with a teammate — Google-Drive-style — built in your own backend on the platform's verified, correlatable member id. - [Shared and private in one portal](https://docs.farthershore.com/cookbook/hybrid-portal): Combine an org-shared, RBAC-gated section and a member-keyed private section in one frontend — both drawing down the same org's plan. ### Complete reference - [@farthershore/farthershore-js exports](https://docs.farthershore.com/generated/frontend-sdk/root): Every public export and declaration from @farthershore/farthershore-js. - [@farthershore/farthershore-js/react exports](https://docs.farthershore.com/generated/frontend-sdk/react): Every public export and declaration from @farthershore/farthershore-js/react. - [@farthershore/farthershore-js/test-utils exports](https://docs.farthershore.com/generated/frontend-sdk/test-utils): Every public export and declaration from @farthershore/farthershore-js/test-utils. - [@farthershore/farthershore-js/errors exports](https://docs.farthershore.com/generated/frontend-sdk/errors): Every public export and declaration from @farthershore/farthershore-js/errors. - [@farthershore/farthershore-js/components exports](https://docs.farthershore.com/generated/frontend-sdk/components): Every public export and declaration from @farthershore/farthershore-js/components. - [@farthershore/farthershore-js/components/docs-chrome exports](https://docs.farthershore.com/generated/frontend-sdk/components-docs-chrome): Every public export and declaration from @farthershore/farthershore-js/components/docs-chrome. - [frontend-sdk HTTP contracts](https://docs.farthershore.com/generated/frontend-sdk/http): Supported HTTP operations, source validators, SDK companions and explicit OpenAPI schema limits. ## Commerce - [Commerce complete text](https://docs.farthershore.com/llms/commerce.txt) ### Overview - [Design and operate commerce](https://docs.farthershore.com/commerce/overview): Connect plans, measurement, pricing, funding, admission and subscriber release pins. ### Concepts - [Entitlements vs economics](https://docs.farthershore.com/concepts/entitlements-vs-economics): Access, measurement, rating, funding, and bounds are separate decisions that happen to be reviewed together. - [Cohorts & releases](https://docs.farthershore.com/concepts/cohorts-and-versions): Understand why publishing creates immutable, content-addressed history instead of editing live rows. - [Plan transitions](https://docs.farthershore.com/concepts/plan-transitions): A release reaches new subscriptions; existing subscriptions keep their pins and follow their pricing binding. ### Monetize - [Connect Stripe](https://docs.farthershore.com/monetize/stripe): Stripe is the settlement rail. Farther Shore rates usage, allocates funding, and keeps the ledger. - [Subscriptions & usage](https://docs.farthershore.com/monetize/subscriptions): How a subscription pins its plan, how measurements become charges, and how funding and settlement close the loop. - [Plan changes](https://docs.farthershore.com/monetize/plan-changes): Reprice or reshape a plan by publishing a new commercial release; existing subscriptions keep their pins. - [Billing strategies](https://docs.farthershore.com/monetize/strategies): Pick the plan kind that matches what customers buy, and nothing more. - [Pricing catalogs](https://docs.farthershore.com/reference/pricing-catalogs): fs.pricing() — versioned catalogs of exact rates, structured items, selectors, modifiers, tiers, and bounded backend quotes. - [Funding & allowances](https://docs.farthershore.com/reference/funding-and-allowances): fs.included / fs.prepaid / fs.promo / fs.referral — the buckets that pay rated charges before anything is owed, and how they display, expire, and refund. - [Economic agreements](https://docs.farthershore.com/reference/economic-agreements): Bind one subscription to a pricing family with negotiated terms — confirm-gated CLI operations, never repo code. - [Commercial releases](https://docs.farthershore.com/reference/commercial-releases): The immutable, content-addressed, per-business bundle that binds structure and money — publication, activation, diff, rollback, and active-at-admission. - [Bill preview API](https://docs.farthershore.com/reference/bill-preview-api): GET /portal/businesses/:businessId/me/bill-preview — the only subscriber money surface; runs the invoicing engine and honors disclosure. ### Launch and operate - [Usage & billing policy](https://docs.farthershore.com/operate/usage-billing-policy): Trace requests from the accepted contract through live analytics, usage, denials, and billing evidence. - [Ledger & settlement](https://docs.farthershore.com/operate/ledger-and-settlement): The operator's view of the monetary ledger — chart of accounts, holds, reconciliation, and what a settlement problem looks like. ### Cookbook - [Subscription + overage](https://docs.farthershore.com/cookbook/subscription-plus-overage): Charge a base fee with included usage, then bill each additional unit. - [Freemium that converts](https://docs.farthershore.com/cookbook/freemium): Offer a limited free plan and a paid plan that unlocks more usage and route access. - [Add a trial](https://docs.farthershore.com/cookbook/add-trial): Add a time-limited trial to a paid plan. - [Add a spend cap](https://docs.farthershore.com/cookbook/add-spend-cap): Bound how much a plan's metered usage can cost — by funding it and blocking at zero. - [Change a price](https://docs.farthershore.com/cookbook/change-a-price): Reprice a plan safely — new subscriptions pay the new price; existing subscriptions keep their recurring-price pin. - [Prepaid wallet](https://docs.farthershore.com/cookbook/prepaid-credits): Sell a prepaid bucket that metered usage draws down and that stops at zero. - [Meter AI tokens](https://docs.farthershore.com/cookbook/ai-token-metering): Meter LLM input and output tokens end to end — declared in the product, reported from the backend. ### Complete reference - [commerce HTTP contracts](https://docs.farthershore.com/generated/commerce/http): Supported HTTP operations, source validators, SDK companions and explicit OpenAPI schema limits. ## Gateway - [Gateway complete text](https://docs.farthershore.com/llms/gateway.txt) ### Overview - [Understand gateway behavior](https://docs.farthershore.com/gateway/overview): Trace routing, identity, grants, limits, admission and backend measurement settlement. ### Connect your application - [Consuming the API](https://docs.farthershore.com/backend/consume): Call a Farther Shore gateway route with a subscriber key and handle stable denials. ### Monetize - [Monetary admission](https://docs.farthershore.com/reference/monetary-admission): How the gateway bounds each request's spend before forwarding it — admission descriptors, clamps, chunked streaming, and the deny codes. ### Launch and operate - [Usage limits](https://docs.farthershore.com/operate/limits): Correlate a gateway denial, identify the governing contract, and choose a safe operational response. ### Cookbook - [Gate API routes by plan](https://docs.farthershore.com/cookbook/grant-routes): Grant route refs to selected plans and verify denial at the edge. - [Diagnose a denied request](https://docs.farthershore.com/cookbook/diagnose-denied-request): Use the recorded request id and accepted environment contract to find the first failing authorization or limit boundary. ### Reference - [Response & deny codes](https://docs.farthershore.com/reference/response-codes): HTTP statuses and the canonical platform deny wire-codes. ### Complete reference - [gateway HTTP contracts](https://docs.farthershore.com/generated/gateway/http): Supported HTTP operations, source validators, SDK companions and explicit OpenAPI schema limits. ## Operations - [Operations complete text](https://docs.farthershore.com/llms/operations.txt) ### Overview - [Operate and verify a business](https://docs.farthershore.com/operations/overview): Find operational workflows for releases, infrastructure, customers and diagnostics. ### Launch and operate - [Apply & deploy](https://docs.farthershore.com/operate/apply): Follow a Business program from local build through Git-triggered validation, publication, and recovery. - [Releases](https://docs.farthershore.com/operate/releases): Preview, approve, publish, verify, and recover an exact managed-repository commit. - [Apply Timeline](https://docs.farthershore.com/operate/apply-timeline): Find the exact repository event, semantic diff, checks, and apply phases behind a business change. - [Environments](https://docs.farthershore.com/operate/environments): Create, update, test, and remove branch-bound preview environments without confusing them with production. - [Platform access and roles](https://docs.farthershore.com/operate/platform-access): One permission model for dashboard users, normal CLI sessions, and restricted MakerTokens. - [Customer operations](https://docs.farthershore.com/operate/customer-operations): Inspect customers, contain access, migrate subscriptions, support roles, manage proposals and promo codes, and operate preview personas safely. - [Observe and troubleshoot](https://docs.farthershore.com/operate/observability-and-troubleshooting): Correlate business, apply, frontend, backend, workflow, usage, analytics, denial, and audit signals before choosing a safe recovery. - [Notifications](https://docs.farthershore.com/operate/notifications): Email notifications projected from platform events, the curated allowlist that prevents notification fatigue, and per-user opt-out preferences. - [Webhooks](https://docs.farthershore.com/define/webhooks): Receive signed platform events with platform-owned endpoints and idempotent handlers. ### Cookbook - [Test in a preview environment](https://docs.farthershore.com/cookbook/preview-environment): Create or reuse one branch-bound environment, push a change, and verify its exact runtime state. - [Release to production](https://docs.farthershore.com/cookbook/release-production): Approve and publish one immutable managed-repository commit, then prove it is serving. - [Diagnose billing and usage](https://docs.farthershore.com/cookbook/diagnose-billing-usage): Find the first divergence from accepted route through gateway decision, backend report, aggregation, and plan settlement. ### Complete reference - [Webhook event catalog](https://docs.farthershore.com/generated/operations/events): Every webhook-deliverable event and its purpose. ## Agents - [Agents complete text](https://docs.farthershore.com/llms/agents.txt) ### Overview - [Use agents across the platform](https://docs.farthershore.com/agents/navigation): Separate coding, platform agents, governed operations and human approval. - [Event-driven automation](https://docs.farthershore.com/agents/automation): Configure bounded trigger-condition-action rules and verify their governed effects. ### Work with agents - [Farther Shore Agent](https://docs.farthershore.com/agents/platform-agent): Enable, observe, and govern the platform-run Operator for a live business. - [Your coding agent](https://docs.farthershore.com/agents/overview): Give an agent the repository, CLI, and live docs it needs to build and operate a Farther Shore business. - [Ownership boundaries](https://docs.farthershore.com/agents/operation-classes): Decide whether a task belongs in business code, application code, Git automation, or a platform operation. - [Retries and idempotency](https://docs.farthershore.com/agents/retries-and-idempotency): Repeat agent operations without duplicating effects or mistaking a replayed response for current state. ### Cookbook - [Enable the Farther Shore Agent](https://docs.farthershore.com/cookbook/enable-platform-agent): Turn on the Operator, verify its work, inspect a run, and stop it safely. ### Complete reference - [Automation request schemas](https://docs.farthershore.com/generated/agents/automation): Closed rule inputs, event types, predicates and action variants. ## CLI & MCP - [CLI & MCP complete text](https://docs.farthershore.com/llms/cli.txt) ### Overview - [Choose CLI and MCP operations](https://docs.farthershore.com/cli/overview): Discover every command and tool with exact signatures, permissions and boundaries. ### Reference - [CLI reference](https://docs.farthershore.com/reference/cli): Authenticate, discover capabilities, and operate every agent-accessible Farther Shore workflow. ### Complete reference - [Platform operation catalog](https://docs.farthershore.com/generated/cli/operation-catalog): Ownership, permissions, commands, MCP tools and explicit handoff boundaries. - [MCP tool reference](https://docs.farthershore.com/generated/cli/mcp): Every MCP tool with its exact input schema and side-effect annotations. - [Global CLI options](https://docs.farthershore.com/generated/cli/global): Global authentication, context and output options. - [CLI: auth](https://docs.farthershore.com/generated/cli/auth): Complete help for farthershore auth and every subcommand. - [CLI: login](https://docs.farthershore.com/generated/cli/login): Complete help for farthershore login and every subcommand. - [CLI: logout](https://docs.farthershore.com/generated/cli/logout): Complete help for farthershore logout and every subcommand. - [CLI: skills](https://docs.farthershore.com/generated/cli/skills): Complete help for farthershore skills and every subcommand. - [CLI: docs](https://docs.farthershore.com/generated/cli/docs): Complete help for farthershore docs and every subcommand. - [CLI: business](https://docs.farthershore.com/generated/cli/business): Complete help for farthershore business and every subcommand. - [CLI: apply-timeline](https://docs.farthershore.com/generated/cli/apply-timeline): Complete help for farthershore apply-timeline and every subcommand. - [CLI: proposal](https://docs.farthershore.com/generated/cli/proposal): Complete help for farthershore proposal and every subcommand. - [CLI: env](https://docs.farthershore.com/generated/cli/env): Complete help for farthershore env and every subcommand. - [CLI: plan](https://docs.farthershore.com/generated/cli/plan): Complete help for farthershore plan and every subcommand. - [CLI: commercial-release](https://docs.farthershore.com/generated/cli/commercial-release): Complete help for farthershore commercial-release and every subcommand. - [CLI: persona](https://docs.farthershore.com/generated/cli/persona): Complete help for farthershore persona and every subcommand. - [CLI: usage](https://docs.farthershore.com/generated/cli/usage): Complete help for farthershore usage and every subcommand. - [CLI: analytics](https://docs.farthershore.com/generated/cli/analytics): Complete help for farthershore analytics and every subcommand. - [CLI: operations](https://docs.farthershore.com/generated/cli/operations): Complete help for farthershore operations and every subcommand. - [CLI: organization](https://docs.farthershore.com/generated/cli/organization): Complete help for farthershore organization and every subcommand. - [CLI: token](https://docs.farthershore.com/generated/cli/token): Complete help for farthershore token and every subcommand. - [CLI: stripe](https://docs.farthershore.com/generated/cli/stripe): Complete help for farthershore stripe and every subcommand. - [CLI: service-account](https://docs.farthershore.com/generated/cli/service-account): Complete help for farthershore service-account and every subcommand. - [CLI: limit](https://docs.farthershore.com/generated/cli/limit): Complete help for farthershore limit and every subcommand. - [CLI: audit-log](https://docs.farthershore.com/generated/cli/audit-log): Complete help for farthershore audit-log and every subcommand. - [CLI: notifications](https://docs.farthershore.com/generated/cli/notifications): Complete help for farthershore notifications and every subcommand. - [CLI: backend](https://docs.farthershore.com/generated/cli/backend): Complete help for farthershore backend and every subcommand. - [CLI: frontend](https://docs.farthershore.com/generated/cli/frontend): Complete help for farthershore frontend and every subcommand. - [CLI: webhook](https://docs.farthershore.com/generated/cli/webhook): Complete help for farthershore webhook and every subcommand. - [CLI: agents](https://docs.farthershore.com/generated/cli/agents): Complete help for farthershore agents and every subcommand. - [CLI: bulletin](https://docs.farthershore.com/generated/cli/bulletin): Complete help for farthershore bulletin and every subcommand. - [CLI: promo-code](https://docs.farthershore.com/generated/cli/promo-code): Complete help for farthershore promo-code and every subcommand. - [CLI: consumer](https://docs.farthershore.com/generated/cli/consumer): Complete help for farthershore consumer and every subcommand. - [CLI: variables](https://docs.farthershore.com/generated/cli/variables): Complete help for farthershore variables and every subcommand. - [CLI: agreements](https://docs.farthershore.com/generated/cli/agreements): Complete help for farthershore agreements and every subcommand. - [CLI: tax-settings](https://docs.farthershore.com/generated/cli/tax-settings): Complete help for farthershore tax-settings and every subcommand. - [CLI: resource-count](https://docs.farthershore.com/generated/cli/resource-count): Complete help for farthershore resource-count and every subcommand. - [CLI: denial](https://docs.farthershore.com/generated/cli/denial): Complete help for farthershore denial and every subcommand. - [CLI: dependents](https://docs.farthershore.com/generated/cli/dependents): Complete help for farthershore dependents and every subcommand. - [CLI: workflow-control](https://docs.farthershore.com/generated/cli/workflow-control): Complete help for farthershore workflow-control and every subcommand. - [CLI: automation](https://docs.farthershore.com/generated/cli/automation): Complete help for farthershore automation and every subcommand. - [CLI: knowledge](https://docs.farthershore.com/generated/cli/knowledge): Complete help for farthershore knowledge and every subcommand. - [CLI: link](https://docs.farthershore.com/generated/cli/link): Complete help for farthershore link and every subcommand. - [CLI: unlink](https://docs.farthershore.com/generated/cli/unlink): Complete help for farthershore unlink and every subcommand. - [CLI: create](https://docs.farthershore.com/generated/cli/create): Complete help for farthershore create and every subcommand. - [CLI: import](https://docs.farthershore.com/generated/cli/import): Complete help for farthershore import and every subcommand. - [CLI: build](https://docs.farthershore.com/generated/cli/build): Complete help for farthershore build and every subcommand. - [CLI: validate](https://docs.farthershore.com/generated/cli/validate): Complete help for farthershore validate and every subcommand. - [CLI: workflows](https://docs.farthershore.com/generated/cli/workflows): Complete help for farthershore workflows and every subcommand.