No description
Find a file
Snider e5e6698662 Merge github/main into dev — resolve module path conflicts
Keep dappco.re module paths throughout; github/main had stale forge.lthn.ai
paths in go.mod and several source files. All conflicts resolved in favour of
dev (HEAD): AX-pattern aliased imports, SecureSSHCommandContext, syncutil,
and _Good test naming convention.

Note: go mod tidy fails — dappco.re/go/core/cli@v0.3.7 and
dappco.re/go/core/config@v0.1.8 tags still declare forge.lthn.ai module
paths. New tags with correct dappco.re paths are needed on both repos
before tidy will succeed.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-07 08:42:34 +01:00
.core chore: add .core/ build and release configs 2026-03-06 18:52:37 +00:00
.forgejo/workflows ci: add Forgejo Actions test and security scan workflows 2026-02-23 03:28:08 +00:00
agentci feat(agentci): honour validation threshold in weave 2026-04-02 13:26:35 +00:00
cmd Merge github/main into dev — resolve module path conflicts 2026-04-07 08:42:34 +01:00
collect refactor(collect): make verbose mode emit progress 2026-04-02 07:12:56 +00:00
docs Merge github/main into dev — resolve module path conflicts 2026-04-07 08:42:34 +01:00
forge feat(forge): add issue label getter 2026-04-02 13:56:22 +00:00
git chore(ax): add usage docs to exported APIs 2026-03-30 14:11:15 +00:00
gitea feat(gitea): add current user helper 2026-04-02 14:16:01 +00:00
internal/ax chore(ax): add usage docs to exported APIs 2026-03-30 14:11:15 +00:00
jobrunner feat(agentci): add context-aware ssh command helper 2026-04-01 06:53:33 +00:00
locales chore(ax): gofmt exported declaration comments 2026-03-30 05:44:09 +00:00
manifest feat(manifest): allow version override during compile 2026-04-02 14:51:41 +00:00
marketplace refactor(marketplace): inject mediums into SCM helpers 2026-04-02 14:47:49 +00:00
pkg/api Merge github/main into dev — resolve module path conflicts 2026-04-07 08:42:34 +01:00
plugin Merge github/main into dev — resolve module path conflicts 2026-04-07 08:42:34 +01:00
repos refactor(repos): stabilise registry ordering 2026-04-02 06:52:45 +00:00
ui feat(ui): polish scm agent views 2026-04-02 07:04:25 +00:00
.editorconfig chore: add Go repo norms (badges, contributing, lint, taskfile, editorconfig) 2026-02-23 06:45:47 +00:00
.gitignore chore: add .core/ and .idea/ to .gitignore 2026-03-15 10:17:50 +00:00
.golangci.yml chore: add Go repo norms (badges, contributing, lint, taskfile, editorconfig) 2026-02-23 06:45:47 +00:00
CLAUDE.md chore: migrate to dappco.re vanity import path 2026-03-21 23:54:23 +00:00
CONTRIBUTING.md chore: add Go repo norms (badges, contributing, lint, taskfile, editorconfig) 2026-02-23 06:45:47 +00:00
go.mod fix: migrate module paths from forge.lthn.ai to dappco.re 2026-04-04 16:21:13 +01:00
README.md chore: migrate to dappco.re vanity import path 2026-03-21 23:54:23 +00:00

Go Reference License: EUPL-1.2 Go Version

go-scm

SCM integration, AgentCI dispatch automation, and data collection for the Lethean ecosystem. Provides a Forgejo API client and a Gitea client for the public mirror, multi-repo git operations with parallel status checks, the Clotho Protocol orchestrator for dual-run agent verification, a PR automation pipeline (poll → dispatch → journal) driven by epic issue task lists, and pluggable data collectors for BitcoinTalk, GitHub, market data, and research papers.

Module: dappco.re/go/core/scm Licence: EUPL-1.2 Language: Go 1.25

Quick Start

import (
    "dappco.re/go/core/scm/forge"
    "dappco.re/go/core/scm/git"
    "dappco.re/go/core/scm/jobrunner"
)

// Forgejo client
client, err := forge.NewFromConfig("", "")

// Multi-repo status
statuses := git.Status(ctx, git.StatusOptions{Paths: repoPaths})

// AgentCI dispatch loop
poller := jobrunner.NewPoller(jobrunner.PollerConfig{
    Sources:      []jobrunner.JobSource{forgejoSrc},
    Handlers:     []jobrunner.JobHandler{dispatch, tickParent},
    PollInterval: 60 * time.Second,
})
poller.Run(ctx)

Documentation

Build & Test

go test ./...
go test -race ./...
go build ./...

Licence

European Union Public Licence 1.2 — see LICENCE for details.