Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AGENTS.md

Fullsend is a platform for fully autonomous agentic development for GitHub-hosted organizations. It contains design documents organized by problem domain (`docs/`) and a Go CLI (`cmd/fullsend/`) that manages GitHub App setup and org configuration. See [fullsend.sh](https://fullsend.sh) for the full documentation site.
Fullsend is a platform for fully autonomous agentic development for Git-hosted organizations (GitHub, GitLab, Forgejo). It contains design documents organized by problem domain (`docs/`) and a Go CLI (`cmd/fullsend/`) that manages forge setup and org configuration. See [fullsend.sh](https://fullsend.sh) for the full documentation site.

## How to work in this repo

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fullsend

Autonomous agentic software development for GitHub-hosted organizations.
Autonomous agentic software development for Git-hosted organizations (GitHub, GitLab, Forgejo).

Fullsend agents triage issues, implement solutions, review code, and merge to production autonomously — while being secure by design.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/dev/behaviour-drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Use `forge.Client` for operations it already exposes; add REST helpers inside th

## Step definitions

Steps must **not** import `internal/forge/github` directly — only drivers. This keeps scenarios vendor-agnostic.
Steps must **not** import forge-specific packages (`internal/forge/github`, `internal/forge/gitlab`) directly — only drivers. This keeps scenarios vendor-agnostic.

Steps use `world.Install` for config repo paths (`ConfigOwner`, `ConfigRepo`, `ConfigPathPrefix`) instead of hardcoding the per-org `.fullsend` config repo.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/getting-started/getting-inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ for, and `<gcp-project>` is your GCP project name. The output resembles:

```text
⚡ fullsend <version>
Autonomous agentic development for GitHub organizations
Autonomous agentic development for Git-hosted organizations

→ Provisioning WIF for repo-scoped inference: <org>/<repo>

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/getting-started/org-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Where `<org>` is the GitHub organization and `<gcp-project>` is your GCP project

```text
⚡ fullsend <version>
Autonomous agentic development for GitHub organizations
Autonomous agentic development for Git-hosted organizations

→ Provisioning WIF for org-scoped inference: <org>

Expand Down
2 changes: 1 addition & 1 deletion docs/vision.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Modern coding agents have largely solved the code generation problem. Given a we
- **Authority and governance** — who decides what agents can do?
- **Security** — how do we prevent the autonomous system from being exploited?

This project exists to explore these problems in a way that's applicable to any GitHub-hosted organization, though the patterns may need adaptation for specific organizational contexts. See [docs/problems/applied/](problems/applied/) for organization-specific considerations.
This project exists to explore these problems in a way that's applicable to any Git-hosted organization, though the patterns may need adaptation for specific organizational contexts. See [docs/problems/applied/](problems/applied/) for organization-specific considerations.

## Principles

Expand Down
4 changes: 2 additions & 2 deletions internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ func resolveUpstreamRef() (ref, tag string) {
func newRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "fullsend",
Short: "Autonomous agentic development for GitHub organizations",
Long: "fullsend automates the setup and management of agentic development pipelines for GitHub organizations.",
Short: "Autonomous agentic development for Git-hosted organizations",
Long: "fullsend automates the setup and management of agentic development pipelines for Git-hosted organizations.",
SilenceUsage: true,
SilenceErrors: true,
Version: version,
Expand Down
Loading
Loading