[PR #179] Enhance deployment automation, fix config issues, and add ECC bundles #2641

Open
opened 2026-06-07 15:05:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/reconurge/flowsint/pull/179
Author: @Abdullakala
Created: 6/6/2026
Status: 🔄 Open

Base: mainHead: main


📝 Commits (10+)

  • fd1f24f chore: add setup/install/deploy/start automation and update app/core changes
  • 292c7ed chore: add handoff bundle scripts and artifacts
  • cb6ba48 fix: address PR review comments for setup/deploy/start scripts
  • b927a7a fix: resolve AUTH_SECRET loading order and improve config defaults
  • 36e63ea feat: add API reverse proxy to nginx and fix prod compose
  • 3f5b86f feat: add docker-compose.deploy.yml for GHCR-based deployment
  • 60c280e fix: improve .env.example and Makefile configuration
  • 6685df5 feat: add flowsint ECC bundle (.claude/ecc-tools.json)
  • f2500b2 feat: add flowsint ECC bundle (.claude/skills/flowsint/SKILL.md)
  • 02a851a feat: add flowsint ECC bundle (.agents/skills/flowsint/SKILL.md)

📊 Changes

49 files changed (+7038 additions, -30 deletions)

View changed files

.agents/skills/flowsint/SKILL.md (+96 -0)
.agents/skills/flowsint/agents/openai.yaml (+6 -0)
.claude/ecc-tools.json (+195 -0)
.claude/homunculus/instincts/inherited/flowsint-instincts.yaml (+319 -0)
.claude/identity.json (+14 -0)
.claude/skills/flowsint/SKILL.md (+96 -0)
.codex/AGENTS.md (+26 -0)
.codex/agents/docs-researcher.toml (+9 -0)
.codex/agents/explorer.toml (+9 -0)
.codex/agents/reviewer.toml (+9 -0)
.codex/config.toml (+48 -0)
📝 .env.example (+26 -3)
COMMANDS.makefile (+264 -0)
FILES_INDEX.md (+427 -0)
📝 Makefile (+16 -0)
QUICK_REFERENCE.sh (+385 -0)
SETUP_DEPLOYMENT_GUIDE.md (+368 -0)
agent_handoff_bundle.sh (+181 -0)
deploy.sh (+341 -0)
docker-compose.deploy.yml (+145 -0)

...and 29 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/reconurge/flowsint/pull/179 **Author:** [@Abdullakala](https://github.com/Abdullakala) **Created:** 6/6/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`fd1f24f`](https://github.com/reconurge/flowsint/commit/fd1f24f091460097719cc3fd80a18c27405579b3) chore: add setup/install/deploy/start automation and update app/core changes - [`292c7ed`](https://github.com/reconurge/flowsint/commit/292c7ed3f6df494b23442ba41a5aded1a175a3e6) chore: add handoff bundle scripts and artifacts - [`cb6ba48`](https://github.com/reconurge/flowsint/commit/cb6ba48bc94c920b0ddb7a42c33524169a5fc378) fix: address PR review comments for setup/deploy/start scripts - [`b927a7a`](https://github.com/reconurge/flowsint/commit/b927a7ac68e288c02cf1f18d9947a4f7af347a40) fix: resolve AUTH_SECRET loading order and improve config defaults - [`36e63ea`](https://github.com/reconurge/flowsint/commit/36e63ea7c88bf6350496fc0cbc95d78e434d33de) feat: add API reverse proxy to nginx and fix prod compose - [`3f5b86f`](https://github.com/reconurge/flowsint/commit/3f5b86fc8bc263a5e20769ee22813ccae9c8b98c) feat: add docker-compose.deploy.yml for GHCR-based deployment - [`60c280e`](https://github.com/reconurge/flowsint/commit/60c280e546c97b65acaae5b50958c7ae1e2bccb6) fix: improve .env.example and Makefile configuration - [`6685df5`](https://github.com/reconurge/flowsint/commit/6685df5bd7ffddf86d441643ce0fe32f461f2803) feat: add flowsint ECC bundle (.claude/ecc-tools.json) - [`f2500b2`](https://github.com/reconurge/flowsint/commit/f2500b240b3826c71da4b6afd50640c85de38de6) feat: add flowsint ECC bundle (.claude/skills/flowsint/SKILL.md) - [`02a851a`](https://github.com/reconurge/flowsint/commit/02a851a0bc1d8baa1c1cdaf40f3a60b77de071c5) feat: add flowsint ECC bundle (.agents/skills/flowsint/SKILL.md) ### 📊 Changes **49 files changed** (+7038 additions, -30 deletions) <details> <summary>View changed files</summary> ➕ `.agents/skills/flowsint/SKILL.md` (+96 -0) ➕ `.agents/skills/flowsint/agents/openai.yaml` (+6 -0) ➕ `.claude/ecc-tools.json` (+195 -0) ➕ `.claude/homunculus/instincts/inherited/flowsint-instincts.yaml` (+319 -0) ➕ `.claude/identity.json` (+14 -0) ➕ `.claude/skills/flowsint/SKILL.md` (+96 -0) ➕ `.codex/AGENTS.md` (+26 -0) ➕ `.codex/agents/docs-researcher.toml` (+9 -0) ➕ `.codex/agents/explorer.toml` (+9 -0) ➕ `.codex/agents/reviewer.toml` (+9 -0) ➕ `.codex/config.toml` (+48 -0) 📝 `.env.example` (+26 -3) ➕ `COMMANDS.makefile` (+264 -0) ➕ `FILES_INDEX.md` (+427 -0) 📝 `Makefile` (+16 -0) ➕ `QUICK_REFERENCE.sh` (+385 -0) ➕ `SETUP_DEPLOYMENT_GUIDE.md` (+368 -0) ➕ `agent_handoff_bundle.sh` (+181 -0) ➕ `deploy.sh` (+341 -0) ➕ `docker-compose.deploy.yml` (+145 -0) _...and 29 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-07 15:05:37 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/flowsint#2641