Activity
Mon
Wed
Fri
Sun
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
What is this?
Less
More

Owned by Scott

For people into building Automations, Agents and Full Stack Apps with AI - a place to come together and share knowledge. GROUP IS INVITE ONLY.

Memberships

AI Developer Accelerator

11.3k members • Free

21 contributions to AI Developer Accelerator
RecapFlow : July 28th Coaching call analysis
📝 SUMMARY This coaching call brought together founders and developers navigating the tension between product development and market validation. Brandon Hancock shared a candid business update on EMS SOAP pivoting its ideal customer profile from slow-moving fire departments to faster-closing private ambulance companies under cash-flow pressure. Patrick Chouinard detailed his enterprise Claude Code rollout expanding from 250 to 2,500 users, including a self-improving support knowledge base and automated training generation. The group also demoed diverse projects including Agent Task for cross-agent orchestration, a multi-model security review system, fully automated ERP pipelines, an AI photo booth, and school pickup management software. Throughout, Brandon coached on sales segmentation frameworks, disciplined outreach habits, and productizing internal tools while technical discussions covered cross-model review strategies, local model use cases, and AI architecture decisions. 💡 KEY INSIGHTS Whale/Minnow/Tuna Segmentation: Brandon introduced a sales framework distinguishing whales (huge slow contracts taking a year or more), minnows (small deals handled via automation), and tunas (mid-size $20-40k accounts closing in months). Most startups should focus limited selling time on tunas for sustainable growth. Cash-Flow Driven ICP Pivots: While standard advice suggests staying with one avatar until saturated, burning startups may need to pivot ICPs specifically to accelerate sales cycles when survival is at stake. Sales Enablement as Champion Creation: Providing prospects with case studies, ROI calculators, and one-pagers they can hand up their chain of command turns customers into internal advocates who sell to both department heads and budget authorities. Cross-Model Review Discipline: Never use the same model family to review code it generated. Using Claude for generation and Codex (or another vendor) for review surfaces different cognitive biases and catches issues the original model misses.
1 like • 2d
Here's an html dynamic explainer of the system I built if anyone is interested in reading more on it. May spark some ideas for yourself.
How I extracted value out of Fable while it is in my subscription
With July 7th coming up, I’ve been thinking less about using Fable and more about capturing its value. My approach has been to spend my remaining time with Fable on work that only Fable can realistically do. Not writing code. Not debugging. Not implementing features. Instead, I’ve been asking it to design systems, challenge architectures, and produce implementation specifications for projects that are simply too large or too interconnected for me to have tackled with previous models. The key is this: The output isn’t the final product. The output is a specification detailed enough that Opus, GPT-5.5, Codex, or another implementation model can execute it later. In other words, I’m using Fable to build my implementation backlog. By the time July 7 arrives, I don’t want to have “used” Fable for a few conversations. I want to have months of high-quality architectural work waiting to be implemented. It’s almost like borrowing the brain of a senior architect for a limited time, then leaving the office with a stack of blueprints your engineering team can build from over the coming months. If you still have access, I’d encourage you to spend less time asking it to do the work and more time asking it to define the work. That knowledge doesn’t disappear when access ends. In many cases, it’s the most durable asset you’ll get from the entire preview.
0 likes • Jul 4
@Patrick Chouinard And I agree, there’s some WILD outcomes 🤣
1 like • Jul 4
@Patrick Chouinard oh man I’m loving this! When dots connect it’s so amazing. Fun fact, I made my Hermes agent call me today. We had a literal phone conversation. In real time. And I had it make great suggestions for app planning afterwards. Based on my mcp to granola and custom rag embedding process of notes. And I also on the fly had it build itself a method of emailing me a smart summary of every call afterwards, and an md file of the transcript and the mp3 recording of it attached.
AI Developer Accelerator — Coaching Call - June 30th
**THIS IS A BRANDON WEEK, don't miss him** Last week we watched an entire video production pipeline run itself end-to-end while Claude somehow compressed two months of estate paperwork into a single weekend. If you've ever wanted to talk to your codebase like it's a senior dev over coffee—or just automate the boring stuff so you can focus on the fun stuff—this is the week to jump back in. 📞 HOW THE CALLS WORK The calls can run 2+ hours. We want to make sure we're respecting everyone's time. Especially those of you who actually show up. Here's the structure: 👉 Reply to this post with your questions before the call 👉 If you submit a question and you're on the call, you go first 👉 We work through questions in the order they came in 👉 Then we open it up for everyone else If you can't make the call but want your question answered, drop it in the comments. We'll get to it. But priority goes to people who are there. The goal is simple: if you're taking the time to show up, you shouldn't have to wait behind questions from people who aren't even on the call. Scott is bringing back that fully automated video pipeline for a larger demo plus a new voice-based codebase conversation tool, while Ty continues building out his CodeTalk voice interface on Proxmox. Morgan is also stress-testing AirLLM to see if consumer hardware can really handle 32B+ models—if you've been curious about local inference without the enterprise price tag, come see how the experiment turns out. 🔗 ZOOM LINK (save this) https://us06web.zoom.us/j/81995207847?pwd=Xe6u6LmIQOmCP5VTnOwWYjDBfZNKGB.1 📅 WHEN Tuesday June 30th at 6PM ET Looking forward to seeing you on the call!
0 likes • Jun 30
@Jeff Moore it's really more learning about how to think and build. Not a hand me a workflow that makes it easy. That's a trap I wouldn't fall into imo.
Claude Code Security Feature
Here's a fun way (prompt) you can use the claude code security skill / slash command to run on your whole codebase instead of just PR's or uncommitted changes if you are wondering about how it stacks up to start: Run Anthropic's built-in /security-review on my ENTIRE codebase, not just a diff, then restore my git state exactly as it was. The built-in /security-review only scans `git diff origin/HEAD...` (branch vs remote default), so to scan everything you must present the whole tree to it as the diff: 1. Capture my current state first: current branch, whether origin/HEAD is set, and stash any uncommitted changes (git stash push -u) so nothing is lost. 2. Build an empty-base structure so the full tree shows as the diff: - empty=$(git commit-tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904 -m "scan base") - w=$(git commit-tree $(git rev-parse HEAD^{tree}) -p $empty -m "scan tree") - git checkout -b secscan-tmp $w - git update-ref refs/remotes/origin/HEAD $empty - verify `git diff --name-only origin/HEAD...` lists all files 3. Invoke the actual built-in /security-review skill (its genuine identify → parallel false-positive filtering → confidence≥8 methodology). Do NOT substitute a manual review or a multi-agent workflow — I want the real feature. 4. ALWAYS restore afterward, even if the scan errors: checkout my original branch, delete secscan-tmp, restore origin/HEAD to its prior state (or delete the ref if it wasn't set), and pop my stash. Confirm `git status` matches the starting state. 5. Give me the final findings report, then a one-line confirmation that git is restored. Don't commit anything. Don't push.
RecapFlow : May 12th Coaching call analysis
📝 SUMMARY This week's call packed actionable intelligence on agentic development workflows, from dual-AI validation strategies to full-stack testing innovations. Patrick Chouinard shared his evolving "red team" approach using Claude Code alongside OpenAI Codex for adversarial validation, plus updates on a community RAG system and regulatory-driven SDLC requirements. Ty Wells demoed a user feedback hub and "Isotope" testing framework, while Morgan Cook showcased a digital signage engine and Elena presented a multi-cloud disaster recovery agent. The session wrapped with deep Q&A on Claude Code architecture, email automation safety guardrails, and targeting the right customer segment for AI consulting engagements. 💡 KEY INSIGHTS Red-team with different providers. Validate Claude Code output using OpenAI Codex (or vice versa) rather than the same model. Different biases mean flaws invisible to one may be caught by the other. Codex as adversarial harness. Prompt Codex to "destroy the application" when reviewing Claude Code output, then feed the failure reports back for remediation. Codex also includes GPT Image 2 in its $20/month subscription, useful for agentic image generation workflows without separate API costs. Security hygiene for AI skills. Avoid downloading skills from external repositories due to supply chain risks. Instead, use Claude Code's built-in skill creator to generate skills from completed work, or recreate them from reference. Agent design principles. Split agent responsibilities by context and single goals rather than human work logic. Giving one agent opposing objectives creates instability. It is acceptable for agents to have uneven workloads. Code generation vs artifact generation. When accuracy matters (like drawing precise graphics), ask AI to write code that generates the artifact rather than generating the artifact directly. AI evaluates code correctness better than visual correctness. Process before automation. AI amplifies broken processes. Clean up workflows before adding AI, then convert stable processes to deterministic scripts that run without AI for speed and reliability.
2 likes • May 13
I agree with a lot of this. I’m adding in running another model like gpt/codex for checks and balances. It’s smart. As much as a fan I am of sticking with a tool and learning it well (I’m not a fan of the jump to the latest model / tool - fomo and not focus - that’s how people don’t ship and get stuck), and I’m an Anthropic fan, we need to not rely on only one model / company. That being said using multiple models requires smart documentation and an adaptable workflow / rules. IE Claude.md vs agents.md etc at the most simplest level. I will say playwright is garbage. I feel bad for missing so many meetings lately. I’ve figured out how to wire in Claude design at the right time in app dev and it’s amazing with the release and ease of handoff.
0 likes • May 17
@Tom Welsh right I’ve missed so much good stuff
1-10 of 21
Scott Rippey
3
31 points to level up
@scott-rippey-7319
A.I. Automation, Agent and App Builder, Consultant, Video Producer and Coffee addict from North Carolina.

Active 2h ago
Joined Jan 20, 2026
Powered by