# Graph

The Once graph describes the named parts of a workspace and what Once can do
with them. Start with one target, inspect it, and build it. Add dependencies or
more specialized target kinds only when the project needs them.

## Try Your Existing Project First

If the repository already uses Cargo, Swift Package Manager, Xcode, or Bazel,
start in its root without creating a file:

```sh
once query targets
once build
once test
once lint
```

The first command shows what Once recognized. The remaining three act on the
workspace's own targets by default: `once build` builds every workspace-owned
target that exposes `build` (failing fast on the first bad build), `once test`
runs first-party tests, and `once lint` lints every workspace-owned target
that exposes `lint` (running each one to completion so you see every finding).

Workspace-owned means the target is one of the pieces the repository's own
manifest declares, not one pulled in through a resolved dependency. A test
run on a Cargo project builds and tests the workspace's crates without
running the test suites of the crates they depend on; the same rule applies
to `once build` and `once lint`.

The current definition of workspace-owned is heuristic: Once traces every
target whose dependency chain reaches one of the resolver's declared primary
products. Sibling targets that live in the same manifest but do not depend
on one of those products (a standalone macro plugin, for example) can slip
past the default. Pass the target id explicitly, or use `--all`, to pick
those up. A future release will replace the heuristic with an explicit
origin marker on each target so the default catches every workspace-owned
target without exception.

Pass `--all` (available on all three) to reach past the workspace boundary
and act on every capable target in the loaded graph, resolved dependencies
included. Use it with care on `once lint --all`: it will run every
lint-capable target in the graph, including vendored third-party code, and
the invocation fails when any finding meets `--fail-on`. `once lint --all
--fail-on error` is a reasonable starting point when you want to sweep the
whole graph.

Pass `once build --ui` or `once test --ui` on a single explicit target to
follow the live graph in the Runs interface.

Continue with the guide for [Rust](/guide/graph/rust), [Swift
Packages](/guide/graph/swift-packages), [Xcode
Projects](/guide/graph/apple/xcode), or [Bazel](/guide/graph/bazel). Declare
targets only when the automatically derived graph needs a project-specific
boundary or capability.

## Start With One Target

Targets live in package-level `once.toml` files. This example declares an
Apple library in `apps/ios/once.toml`:

```toml
[[target]]
name = "AppCore"
kind = "apple_library"
srcs = ["Sources/**/*.swift"]

[target.attrs]
platform = "ios"
minimum_os = "17.0"
```

The manifest location and target name form the target identifier
`apps/ios/AppCore`. Query it before running any work:

```sh
once query targets
once query capabilities apps/ios/AppCore
once query schema apple_library
```

The first command lists the workspace. The second shows what `AppCore` can do.
The third explains which attributes, dependencies, outputs, and capabilities
an `apple_library` accepts.

Build the same target:

```sh
once build apps/ios/AppCore
```

Outputs are materialized under `.once/out/<target>/`. The
[target kind reference](/reference/prelude/) lists the exact output groups for
each kind.

## Connect Targets With Dependencies

A dependency says that one target consumes the typed output of another. The
following target can live beside `AppCore` in the same manifest:

```toml
[[target]]
name = "App"
kind = "apple_application"
srcs = ["AppSources/**/*.swift"]
deps = ["./AppCore"]

[target.attrs]
platform = "ios"
bundle_id = "dev.once.App"
minimum_os = "17.0"
families = ["iphone"]
```

`./AppCore` resolves from the package that owns the manifest. `../` moves to a
parent package. References without either prefix resolve from the workspace
root.

Once validates each dependency against the contract declared by the target
kind. This catches incompatible edges before a compiler or runner starts.

Restrict a target when only selected packages should consume it:

```toml
[[target]]
name = "InternalSupport"
kind = "rust_library"
visibility = ["package:apps/ios", "subtree:tests"]
```

An empty visibility list is public. `private` allows only the same package,
`package:` grants one package, `subtree:` grants a package hierarchy, and an
exact target grants one consumer. `once query validate-workspace` reports an
attribute-scoped repair when a dependency crosses that boundary.

## Capabilities Become Actions

A capability is an operation a target exposes:

- [`build`](/reference/cli/build) materializes an artifact.
- [`run`](/reference/cli/run) builds required outputs and starts the target.
- [`test`](/reference/cli/test) builds and executes a test target.

The target kind turns a capability into one or more actions. Each action
declares its executable, arguments, inputs, outputs, environment, platform
requirements, and cache policy. Build actions can replay from cache when their
declared inputs match. Launch and device-test actions can opt out of replay
when each invocation must happen again.

The command surface stays the same across ecosystems:

```sh
once build apps/ios/AppCore
once run apps/ios/App
once test apps/ios/AppTests
once lint quality/swift
```

Ask `once query capabilities <target>` which of these operations a target
supports instead of guessing from its kind.

When a workspace has more than one test target, continue with
[Testing and scheduling](/guide/graph/testing). It explains conservative
affected selection, exact unit requests, dynamic workers, current ecosystem
coverage, and project-local scripted test adapters.

Use [Linting](/guide/graph/linting) for cacheable, normalized findings from
the analyzers used by each supported ecosystem.

## Choose an Ecosystem

A target's `kind` connects it to a typed contract for a language or platform.
The built-in ecosystem guides continue from the concepts above with runnable,
ecosystem-specific examples:

- [Apple](/guide/graph/apple)
- [Android](/guide/graph/android)
- [C and C++](/guide/graph/c)
- [Bazel](/guide/graph/bazel)
- [CMake](/guide/graph/cmake)
- [Elixir](/guide/graph/elixir)
- [Kotlin](/guide/graph/kotlin)
- [Go](/guide/graph/go)
- [Rust](/guide/graph/rust)
- [Zig](/guide/graph/zig)

The [Ecosystems guide](/guide/graph/ecosystems) compares these choices and
helps you decide when a typed target is a better fit than a script.

## Start From A Native Project

Once can recognize supported native workspace descriptions before a package has
an explicit target. A native integration supplies an ephemeral seed target, then
the seed's ordinary resolver derives the detailed typed graph from native
metadata.

Before loading a project, follow its ecosystem guide to make the native
lockfile and locked dependency sources available. Detection only reads marker
names, but graph loading may run the native resolver and require those sources.

Inspect the graph Once derived from the workspace:

```sh
once query workspace
once query targets
```

Normal build, run, and test commands can use the derived graph immediately.
Discovery does not write `once.toml`; the native project description and
lockfile remain authoritative for dependencies, products, tests, and releases.
When discovery produces one buildable workspace root, `once build` selects it
without requiring a target argument. `once test` runs the first-party test
targets rooted in that workspace. Use `once test --all` to include test targets
from its complete resolved dependency graph.

The native seed can remain the only target, or it can live beside explicit
targets for exceptional build boundaries. Keep manifest data in `once.toml`
and introduce a project Starlark module only when reusable behavior is missing
from the built-in target kinds.

An explicit Once target for the same target kind takes precedence in its
package. Unrelated targets do not hide a native integration in the same package or
elsewhere in the workspace.

An Xcode project checked in beside the repository root is recognized the same
way. Its seed resolves every native target into Apple applications,
frameworks, libraries, resource bundles, and test bundles, so a repository with
no `once.toml` at all can be queried and built directly:

```sh
once query targets
once build MyApp
```

[Xcode Projects](/guide/graph/apple/xcode) walks through the full flow,
including workspaces with several projects, build configurations, and current
limitations.

A Swift Package Manager workspace is recognized from `Package.swift`. Its
native seed lowers first-party package targets into the existing Apple target
kinds, without requiring an `once.toml` file:

```sh
once query targets
once build MyLibrary
```

The [Swift Packages](/guide/graph/swift-packages) guide covers native package
workspaces, locked external package graphs, and network policy.

Every built-in target kind also ships a complete starter with manifests and
source files. Discover the available slugs, then materialize one directly:

```sh
once query target-kinds
once edit materialize-example rust_binary rust-binary-minimal
once build crates/hello/hello
```

Use `once query example <kind> <slug> --format json` when a caller needs to
inspect and adapt the files before writing them. Contributors can run
`mise run examples:verify-portable` to materialize and execute every portable
starter against the current release build.

## Select Configuration-Specific Values

Some attributes accept `select`, which chooses a value from the active target
configuration. For example, an Apple library can choose a framework by
platform without duplicating the target:

```toml
[target.attrs]
sdk_frameworks = { select = { ios = ["UIKit"], macos = ["AppKit"] } }
```

The root manifest can describe a target platform independently of the host:

```toml
[workspace.configuration]
os = "linux"
arch = "arm64"
tokens = ["release"]
```

`once query workspace` returns the normalized operating system, architecture,
and ordered selection tokens used by dependency and attribute selection. The
target kind schema identifies configurable attributes and any additional
tokens meaningful for that ecosystem. Attributes marked `implemented: false`
are compatibility fields that validation rejects until the target kind gives
them behavior.

## Run Supported Targets

Some artifacts need a simulator, device, or service after they build. Target
kinds that own this behavior expose the `run` capability directly. Apple and
Android application targets, for example, can build, install, and launch the
application through the same command:

```sh
once query capabilities apps/mobile/App
once run apps/mobile/App
```

Check the target's capabilities before running it. The ecosystem guide and
target kind reference explain any required simulator, device, or host setup.

## Validate Shared Mobile Code

The shared-code target kinds expose the `native-mobile-shared-code-e2e`
starter. It wires an Android application to Swift and Rust native libraries,
and an Apple application to a Kotlin/Native framework plus the same Rust
mobile library target. The Apple application calls both shared
implementations. The Android application loads the Swift and Rust libraries
and calls both through the
[Java Native Interface](https://developer.android.com/training/articles/perf-jni).
The Swift target statically links its standard library and packages the C++
shared runtime from the selected toolchain.

## Extend the Graph With Local Modules

Use a local module when a project needs a typed target kind that is not built
in. Root `once.toml` files can load checked-in
[Starlark](https://starlark-lang.org/) modules:

```toml
[modules]
paths = ["modules/*.star"]
```

Public symbols in those files become target kinds and use the same schema,
dependency, capability, and validation surfaces as built-in kinds. Confirm
that a local kind loaded successfully before declaring targets that use it:

```sh
once query target-kinds
once query schema my_target_kind
```

Only the root manifest can declare `[modules]`. Paths resolve from the
workspace root and load in sorted order. See the
[Modules reference](/reference/modules/) when authoring a target kind.

## Give Agents Read Access First

The [Model Context Protocol](https://modelcontextprotocol.io/) server can
expose graph inspection without execution. An agent can discover targets,
query schemas, and inspect target kind contracts without being allowed to
change workspace state:

```sh
once mcp
```

Editing and running are side-effectful. They can change manifests, build code,
write outputs, install software, or launch a process, so Once only advertises
state-changing tools when the server is started with an explicit opt-in:

```sh
once mcp --allow-run
```

With that opt-in, agents can edit manifests, run tests, or call
`once_build_target`, `once_run_target`, or `once_start_target` with the same
target id the command-line interface accepts. The start call returns a runtime
session id immediately, then the agent can use `once_runtime_status`,
`once_runtime_logs`, and `once_stop_runtime` to follow or stop the run. Without
it, the Model Context Protocol surface remains read-only and state-changing
tools are not listed.

For a complete creation and verification loop, including graph-wide validation,
annotated scripts, output checks, and project memory, see
[Coding harnesses](/guide/harness).

See the [Model Context Protocol tools reference](/reference/mcp/tools) for
the available operations.
