AI Agent Army — deploy client-scouting agents from a simple UI#14
Draft
ceoguy wants to merge 2 commits into
Draft
AI Agent Army — deploy client-scouting agents from a simple UI#14ceoguy wants to merge 2 commits into
ceoguy wants to merge 2 commits into
Conversation
Introduce a second agent type on top of AgenticOS: deployable client- scouting agents managed from a simple /agents dashboard. Agents combine a product + workflow playbook + targeting + cron cadence and use the ChainGPT Web3 LLM to surface scored, qualified leads with personalized outreach drafts. - Extensible product/workflow registry (data/products.json) seeded for ChainGPT Pad, ChainGPT AI, and Saleium — new sales motions are data edits, no redeploy. - Scouting engine, agent/lead stores, and a cron scheduler that fans out the whole fleet (reusing the existing node-cron + JSON-store patterns). - UI to deploy/pause/run agents and triage leads through a pipeline; password auth reused from the scheduler. Architecture write-up in docs/.
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this is
A blueprint and working MVP for an "army" of AI agents that can be deployed from a simple UI to scout for clients across the ChainGPT ecosystem — ChainGPT Pad, ChainGPT AI, and Saleium — with the ability to add new sales motions as data, no redeploy.
It layers a second agent type onto AgenticOS, reusing every primitive the repo already has (ChainGPT Web3 LLM,
node-cron, the EJS+Tailwind dashboard,PASSWORD_AUTHmiddleware, JSON stores).Mental model
Products and workflows are data, not code (
data/products.json), seeded with:What ships
/agentsdashboard: deploy → manage (run-now / pause / delete) → triage leads through anew → contacted → qualified → wonpipeline.runAgent): builds a brief from the workflow + operator targeting, asks the ChainGPT LLM for scored leads + outreach drafts, persists them.agent.job.ts): one cron task per enabled agent, re-applied live on changes.docs/agent-army-architecture.md.Extensibility
Add a workflow under a product (or a whole new product) in the registry and it appears in the UI instantly — writing a playbook is a sales exercise (
targetPersona,icp,signals,qualificationCriteria,outreachTemplate), not an engineering one.Notes / next steps
runAgentflow is connector-shaped so real signal sources (X search, the existing ChainGPT news webhook, on-chain, CRM sync) slot into the "gather candidates" step without other changes. See doc §6–8.CHAINGPT_LLM_URLenv (defaults to the public chat API) — worth confirming against our account's exact endpoint before go-live.Verification
tsc --noEmitclean for all new source.bun build ./src/index.tsbundles successfully (240 modules).Opened as a draft for review of the approach and the seeded playbooks.
Generated by Claude Code