Skip to content

feat: initial Debian execution agent#1

Merged
fuse merged 2 commits into
developfrom
feat/initial-debian-agent
May 26, 2026
Merged

feat: initial Debian execution agent#1
fuse merged 2 commits into
developfrom
feat/initial-debian-agent

Conversation

@fuse

@fuse fuse commented May 26, 2026

Copy link
Copy Markdown
Contributor

Summary

  • Initial fluid-agent-debian with agent-core submodule, debian.* skills, and enrollment.
  • CI, CodeQL, Dependabot, release workflow; config/agent.example.yml and operator README.

Test plan

  • CI green on this PR
  • Squash merge to develop, then tag 0.1.0 for GHCR + release assets

fuse added 2 commits May 26, 2026 19:47
- fluid-agent-debian with agent-core submodule and debian.* skills.
- Enrollment via fluid/agents/core/enroll; CI, CodeQL, release workflows.
- config/agent.example.yml and operator README.
@github-advanced-security

Copy link
Copy Markdown

You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool.

What Enabling Code Scanning Means:

  • The 'Security' tab will display more code scanning analysis results (e.g., for the default branch).
  • Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results.
  • You will be able to see the analysis results for the pull request's branch on this overview once the scans have completed and the checks have passed.

For more information about GitHub Code Scanning, check out the documentation.

@fuse fuse merged commit 113eecf into develop May 26, 2026
3 checks passed
@fuse fuse deleted the feat/initial-debian-agent branch May 26, 2026 23:50
Comment thread internal/skills/script.go
if err := os.Chown(scriptPath, uid, gid); err != nil {
return nil, fmt.Errorf("run_as: chown: %w", err)
}
cred = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
Comment thread internal/skills/script.go
if err := os.Chown(scriptPath, uid, gid); err != nil {
return nil, fmt.Errorf("run_as: chown: %w", err)
}
cred = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
if cmd.SysProcAttr == nil {
cmd.SysProcAttr = &syscall.SysProcAttr{}
}
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
if cmd.SysProcAttr == nil {
cmd.SysProcAttr = &syscall.SysProcAttr{}
}
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(uid), Gid: uint32(gid)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants