Skip to content
Closed
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
10 changes: 10 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ The e2e tests require GitHub credentials. There are three ways to provide them:

If only `E2E_GITHUB_USERNAME` and a password source are available, `make e2e-test` will automatically generate a session file before running tests. See `make help` for all available targets.

## Agent definitions and skills

Agent definitions, skills, harness configs, and related content have moved to
[`fullsend-ai/agents`](https://github.com/fullsend-ai/agents). The copies under
`internal/scaffold/fullsend-repo/` are stale and will be removed. Do not modify
files under `internal/scaffold/fullsend-repo/agents/`,
`internal/scaffold/fullsend-repo/skills/`, or
`internal/scaffold/fullsend-repo/harness/` — make changes in
`fullsend-ai/agents` instead.

## Forge abstraction

All git forge operations (GitHub API calls, PR comments, issue creation, workflow dispatch, etc.) **must** go through the `forge.Client` interface defined in `internal/forge/forge.go`. This is a fundamental architectural rule — the codebase supports multiple forges (GitHub, GitLab, Forgejo) and direct coupling to any single forge breaks the abstraction.
Expand Down
4 changes: 4 additions & 0 deletions internal/scaffold/fullsend-repo/agents/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Deprecated

This content has moved to [`fullsend-ai/agents`](https://github.com/fullsend-ai/agents).
Do not modify files here — they are stale copies and will be removed.
6 changes: 6 additions & 0 deletions internal/scaffold/fullsend-repo/harness/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Deprecated

This content is being migrated to [`fullsend-ai/agents`](https://github.com/fullsend-ai/agents).
These files are still embedded by Go code (`internal/scaffold/baseurl.go`), so
changes here remain necessary until the Go references are updated. Once migrated,
these copies will be removed.
4 changes: 4 additions & 0 deletions internal/scaffold/fullsend-repo/skills/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Deprecated

This content has moved to [`fullsend-ai/agents`](https://github.com/fullsend-ai/agents).
Do not modify files here — they are stale copies and will be removed.
Loading