
Research
/Security News
Chrome and Firefox Extensions Posing as Free VPNs Add Clipboard Stealers via Malicious Updates
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.
rstack-agents
Advanced tools
Production-ready agentic SDLC framework for Pi and coding agents — orchestrator, builder/validator teams, lifecycle state, and specialist reuse
A governed AI-SDLC operating layer for any coding framework. RStack sits on top of Pi, Claude Code, Operator, Codex-style CLIs, Gemini-style CLIs, or a custom harness and gives agent teams a repeatable lifecycle with approvals, builder/validator contracts, evidence, memory, budget envelopes, and a live Business Hub.
clarify → plan → spec → approve → build → validate → release-readiness → learn
cd your-project
npm install rstack-agents
npx rstack-agents init --profile business-flex
init auto-detects pi | claude-code | operator | custom, creates .rstack/, registers the project with the Business Hub, writes framework glue, and never overwrites existing files.
Use a smaller or larger business profile when needed:
npx rstack-agents init --profile lean-mvp
npx rstack-agents init --profile enterprise-webapp
| Profile | Best for | Result |
|---|---|---|
business-flex | Most business/product teams | Product, backend, frontend, QA, security, devops, docs, budget policy, Business Flex dashboard |
lean-mvp | Fast prototypes | Smaller full-stack team and lower budget defaults |
enterprise-webapp | Heavier governance | Enterprise web app team with security/compliance/devops emphasis |
From the host AI framework session:
sdlc_start(goal="Upgrade this app, add required tests, improve docs, and run a security review")
sdlc_clarify()
sdlc_plan()
Approve gates, then build and validate:
sdlc_approve(artifact="plan.md", status="APPROVED")
sdlc_approve(artifact="requirements.json", status="APPROVED")
sdlc_approve(artifact="architecture.md", status="APPROVED")
sdlc_build_next()
sdlc_validate()
init createsyour-project/
├── .rstack/
│ ├── rstack.config.json # active profile, enabled domains/plugins, dashboard pages
│ ├── budget.json # run/daily/monthly budget, warnings, approval thresholds
│ ├── runs/ # every governed run lands here
│ ├── registry/ # agents, skills, plugins, routing metadata
│ └── policy.json # optional approval policy you control
└── framework glue # e.g. .claude/rstack-sdlc.md or Operator template
Every run records its manifest, plan, tasks, approvals, evidence, events, stage artifacts, builder contracts, validator contracts, and metrics under .rstack/runs/<run-id>/.
RStack ships a large catalog, but business users should not have to use all of it. Profiles narrow the active teams before planning:
{
"profile": "business-flex",
"enabled_domains": ["product", "backend", "qa", "security", "docs"],
"enabled_plugins": [
"business-analytics",
"backend-development",
"unit-testing",
"security-scanning",
"documentation-generation"
],
"dashboard_pages": ["command", "business-flex", "workflow", "agent-work", "live-feed", "approvals"]
}
When sdlc_plan runs, each task gets:
profile and workflowrouting.explanation showing why the agent/team was selectedbudget_envelope for requirements-stage business controlProfiles guide routing, budget, dashboard visibility, and project-local configuration. The npm package still ships the full catalog so offline/project-local routing works. The next product step is a pack installer that physically copies only selected packs into .rstack/ for stricter enterprise footprints.
RStack uses scoped task packets instead of giving every worker the whole project and whole catalog.
| Role | Tools | Must write | Rule |
|---|---|---|---|
| Orchestrator | planning/status tools | plan.md, tasks.json, specs | Routes work; does not directly implement |
| Builder | read, bash, edit, write, grep, find, ls | builder.json | Changes only task-scoped files; runs checks before claiming done |
| Validator | read, grep, find, ls | validation.json | Read-only review; no mutation |
Builder contract:
{
"task_id": "003-architecture",
"agent": "builder",
"status": "PASS|FAIL|BLOCKED|DONE_WITH_CONCERNS",
"summary": "",
"files_modified": [],
"tests_run": [],
"risks": [],
"next_steps": []
}
Contract v2 can also capture backend visibility:
{
"execution": { "tools_used": [], "events": [], "artifacts_written": [] },
"cost": { "currency": "USD", "estimated_usd": 1.5, "actual_usd": 1.2 },
"context": { "profile": "business-flex", "workflow": "production-business-sdlc" },
"routing": { "selected_by": "profile-domain-stage-affinity", "explanation": [] }
}
Validator contract:
{
"task_id": "003-architecture",
"validator": "rstack-validator",
"status": "PASS|FAIL",
"checks": [],
"issues": [],
"retry_recommendation": "none|retry_builder|ask_user|block"
}
npx rstack-agents hub
The dashboard derives everything from real .rstack files — no fake demo state and no telemetry leaving your machine.
| Page | What you get |
|---|---|
| Command Center | Portfolio status, attention signals, stage health, live activity |
| Business Flex | Active profiles, enabled domains, budget guardrails, routing proof |
| Studio / Studio 3D | Agent workspace with live stage status and clickable agent panels |
| Projects & Runs | Every run and its actual deliverables |
| Run Analytics | Stage timing, Gantt, trend rows |
| Agent Work | Builder/validator contracts and evidence |
| Approvals / Alerts | Human gates, guardrails, spend/stall signals |
| Traceability | Requirement → stage → task → evidence chains |
| Command | Purpose |
|---|---|
rstack-agents init --profile business-flex | Set up project profile, budget policy, framework glue, and Business Hub registry |
rstack-agents hub | Start/open the dashboard |
rstack-agents list agents|skills|plugins | Browse packaged catalog |
rstack-agents add plugin <name> | Copy a packaged plugin into the project |
rstack-agents notify --test | Test Slack/Teams/Discord/Telegram/WhatsApp notifications |
rstack-agents validate | Validate packaged and local agent definitions |
rstack-business --port 3008 --project . | Run the dashboard directly |
| Framework | Status | Notes |
|---|---|---|
| Pi | Native adapter | Full sdlc_* tool surface through extensions/rstack-sdlc.ts |
| Claude Code | Asset/session bootstrap | init writes Claude usage guide/session hook assets |
| Operator | Bridge adapter | Python adapter shells out to the same Node harness |
| Codex/Gemini/custom | Universal mode | Use .rstack state contract, prompts, agents, and CLI bridge |
.rstack is adapter-friendly, but a native MCP/A2A server is still a future slice.Mintlify docs live in docs/mintlify:
The original presentation is kept as a backup at:
docs/mintlify/assets/backups/RStack-The-Future-of-Software-Development.backup.pptx
git clone https://github.com/richard-devbot/SDLC-rstack.git
cd SDLC-rstack
npm install
npm test
npm run lint
npm run validate
Latest verified branch state for this business-flex slice:
npm test -- --runInBand # 111 pass, 0 fail
npm run lint # pass
npm run validate # All 196 agents passed validation
npm pack --dry-run # package includes new profile/dashboard files
MIT © Richardson Gunde
FAQs
Production-ready agentic SDLC framework for Pi and coding agents — orchestrator, builder/validator teams, lifecycle state, and specialist reuse
We found that rstack-agents demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.

Research
/Security News
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.

Security News
Rolldown paused Rust React Compiler integration after a 5MB binary size increase raised concerns about shipping React-specific code to all Vite users.