惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 司徒正美
D
Docker
B
Blog
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
S
SegmentFault 最新的问题
小众软件
小众软件
J
Java Code Geeks
美团技术团队
腾讯CDC
MyScale Blog
MyScale Blog
爱范儿
爱范儿
H
Help Net Security
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 23 of 60: Someone Asked Me a Question on Day 3. I Put...
Cess Mbugua · 2026-06-01 · via DEV Community
Cover image for Day 23 of 60: Someone Asked Me a Question on Day 3. I Put It on My Build List. Today I Shipped the Answer.

Cess Mbugua

This build has been on my list since Day 3.

Three weeks ago I posted my client onboarding pipeline. A commenter read it carefully and asked a question that stopped me in my tracks:

"The space has a lot of tools for the work side but almost nothing for evaluating the client side before committing. What's the specific problem you're solving for freelancers?"

I didn't have a full answer that day. So I wrote it down, added it to my build list, and kept going.

Today I built it.

Meet ClearVet.


## The Problem

Imagine you run an AI automation business. Enquiries come in every day. Most are not a good fit. Wrong budget. Vague problem. Unrealistic timeline. Industries you cannot help with.

To figure out which ones are worth your time you have to read every single one manually, ask follow up questions, think about it, and decide. Twenty enquiries a week is hours of screening before you do any real work.

ClearVet automates that entire process.


## The Full Pipeline

Potential client fills Typeform
↓
n8n receives submission via webhook
↓
ClearVet FastAPI endpoint
↓
Claude evaluates across 6 dimensions as background task
↓
Score calculated — HIGH, MEDIUM, or LOW
↓
Slack message sent with dimension scores and approval buttons
↓
Human approves or rejects via API
↓
Decision logged to PostgreSQL with timestamp and notes


## The 6 Evaluation Dimensions

Budget Fit: is the budget realistic for the solution needed?
Problem Clarity: how well defined and specific is the problem?
Timeline Realism: is the timeline actually achievable?
AI Readiness: is the client ready to adopt AI solutions?
Industry Fit: does the industry align with our capabilities?
Growth Potential: what is the long-term revenue potential?

Claude scores each dimension 0-10 with reasoning. Overall score determines the recommendation tier.


## A Real Evaluation Output

{
  "company_name": "Nairobi Logistics Ltd",
  "overall_score": 7.5,
  "recommendation": "high",
  "scores": {
    "problem_clarity": {"score": 9, "reasoning": "Problem is exceptionally well-defined"},
    "growth_potential": {"score": 8, "reasoning": "200 reports daily suggests high volume"}
  },
  "status": "approved",
  "approved_by": "Cess"
}


## What Makes This Different

Human in the loop. Every evaluation requires a human decision before any action is taken. Claude does the analysis. You make the call.

Full audit trail. Every evaluation, score, dimension reasoning, decision, and timestamp stored in PostgreSQL. Nothing disappears.

Background processing. The API responds immediately. Claude evaluates in the background. Slack notification arrives when ready.

Real intake form. Connected to Typeform via n8n webhook. The same form a real potential client would fill out.


## What This Is Worth

A system like this for one agency is a KES 80,000-150,000 setup fee. It replaces hours of manual screening every week. The ROI is immediate and measurable.

37 more to go.

🔗 Full project on GitHub → https://github.com/mbuguacessy-glitch

python #fastapi #claudeapi #n8n #automation #buildinpublic #learninpublic #clearvet #100DaysOfCode @keynition