cd /news/ai-agents/i-asked-my-ai-assistant-to-automate-… · home topics ai-agents article
[ARTICLE · art-126572] src=dev.to ↗ pub= topic=ai-agents verified=true sentiment=↓ negative

I Asked My AI Assistant to Automate Our Dev Marketing. Here Are the Mistakes It Made.

A developer who spent 48 hours testing whether an AI coding agent could automate a technical marketing and build-in-public pipeline reported that the agent defaulted to low-value tactics, drafting Tweepy scripts to auto-post to X despite the account having no followers. The developer said the agent only conceded the approach was an "evasion loop" when pressed with hard data, and that it also tried to fabricate a dramatic narrative when drafting the writeup. The experiment concluded that search-indexed technical articles on platforms like Dev.to outperform social automation, and that sharing a 20-line Ashby ATS scraping snippet acts as a "recipe" while a hosted cloud actor remains the "restaurant.

by read3 min views1 publishedSep 11, 2026

Over the last 48 hours, while building out automated data scrapers on our cloud servers, I conducted an experiment: I asked my AI coding agent to help design and automate our technical marketing and build-in-public pipeline.

If you read LinkedIn or Twitter, you would think AI agents can autonomously run your company's marketing on autopilot.

Here is the unvarnished reality of the mistakes my AI made, the blind spots it had, and the exact corrections I had to enforce to keep us grounded in reality.

I had an active X (Twitter) developer API key sitting idle. My initial thought was: Why not automate our build updates and scraper iterations directly to X?

When I asked my AI agent how to handle this, it immediately drafted Python scripts using Tweepy to schedule automated posts.

I stopped and forced an honest audit:

The correction: Social feeds are follower graphs. If nobody follows you, posting automated tweets is just screaming into an empty room.

When execution gets hard—when code takes iterations, when applet stores have thousands of competitors, or when review queues take days—there is an invisible temptation to pivot into "safe" side-projects.

Building a Twitter automation bot felt like work. It felt productive.

In reality, it was what I call the Infrastructure Trap: spending hours perfecting a pipeline for an audience that doesn't exist yet, instead of focusing on the core product (the scrapers and data tools themselves).

I had to explicitly demand: "Be brutally honest with me. Is this an evasion loop?" The agent only conceded when pressed with hard data.

Once we ruled out noisy social media automation, I pointed our focus toward platforms where technical exhaust actually matters: Dev.to and technical blogs.

My concern was immediate:

"I have zero followers on Dev.to as well. Who is actually going to read this?"

Here is where the strategic distinction became clear:

#python, #webdev). When an engineer or recruiter searches Google for "how to extract Ashby ATS job listings without proxies", Google indexes high-domain-authority technical articles on page 1. You don't need a single follower; you just need to have documented a real technical solution to a problem someone is actively trying to solve.

When we decided to share our findings on reverse-engineering modern ATS platforms (like Ashby HQ), another question surfaced:

"If I share the working code snippet, won't people or competitors just copy it instead of using our cloud actor?"

The realization that solved this:

The code snippet is the recipe. The cloud actor is the restaurant.

Here is the exact 20-line snippet we extracted when analyzing Ashby's public API:

import requests

def fetch_ashby_jobs(company_slug: str):
    url = f"https://api.ashbyhq.com/posting-api/job-board/{company_slug}"
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
        "Accept": "application/json",
    }

    payload = {"operationName": "ApiJobBoardWithTeams"}
    response = requests.post(url, json=payload, headers=headers, timeout=10)
    response.raise_for_status()

    data = response.json()
    return [
        {
            "title": j.get("title"),
            "department": j.get("department"),
            "location": j.get("locationName"),
            "url": j.get("jobUrl")
        }
        for j in data.get("jobs", [])
    ]

A junior developer will copy these 20 lines and run them on their laptop. That's fine.

A busy team lead or non-technical recruiter doesn't want to maintain Python environments, write CSV exporters, handle retries, or configure cron jobs. They don't want the recipe; they want the ready-to-run automation.

Even when drafting this very article, the AI's first instinct was to fabricate a dramatic, movie-like narrative about "first-principles battles" and heroic architectural breakthroughs.

I had to stop it again and say:

"Why are you hyping it? Look at the actual conversation. Look at the mistakes you made and the instructions I actually gave you. Tell the truth."

In the era of autonomous AI agents, the bottleneck is never code generation. AI will happily generate thousands of lines of code, dozens of automated posts, and inflated hype in seconds.

The human operator's entire value is:

Maintained by w8explorer. Building cloud data pipelines and documenting what really happens behind the scenes.

── more in #ai-agents 4 stories · sorted by recency
── more on @x 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/i-asked-my-ai-assist…] indexed:0 read:3min 2026-09-11 ·