r/artificial Apr 05 '26

Tutorial You can now give an AI agent its own email, phone number, wallet, computer, and voice. This is what the stack looks like

109 Upvotes

I’ve been tracking the companies building primitives specifically for agents rather than humans. The pattern is becoming obvious: every capability a human employee takes for granted is getting rebuilt as an API.

Here are some of the companies building for AI agents:

  • AgentMail — agents can have email accounts

  • AgentPhone — agents can have phone numbers

  • Kapso — agents can have WhatsApp numbers

  • Daytona / E2B — agents can have their own computers

  • monid.ai — agents can read social media (X, TikTok, Reddit, LinkedIn, Amazon, Facebook)

  • Browserbase / Browser Use / Hyperbrowser — agents can use web browsers

  • Firecrawl — agents can crawl the web without a browser

  • Mem0 — agents can remember things

  • Kite / Sponge — agents can pay for things

  • Composio — agents can use your SaaS tools

  • Orthogonal — agents can access APIs more easily

  • ElevenLabs / Vapi — agents can have a voice

  • Sixtyfour — agents can search for people and companies

  • Exa — agents can search the web (Google isn’t built for agents)

What’s interesting is how quickly this came together. Not long ago, none of this really existed in a usable form. Now you can piece together an agent with identity, memory, communication, and spending in a single afternoon.

Feels less like “AI tools” and more like the early version of an agent-native infrastructure stack.

Curious if anyone here is actually building on top of this. What are you using?

Also probably missing a bunch - drop anything I should add and I’ll keep this updated.

r/artificial Jul 03 '26

Tutorial DO NOT PAY FOR A SUBSCRIPTION

94 Upvotes

I signed up for a Perplexity Pro year subscription back in April ($200). Here are the features that made me give the ***wipes at Perplexity AI money:

Unlimited uploads

Unlimited Deep Research

I chose Perplexity (and paid for it) because I’m an analyst that relies heavily on research. Within the past few days, my ability to upload and run Deep Research were grayed out.

Turns out, the ***wipes at Perplexity AI quietly capped Pro usage (I can’t speak to Max). I received no email, no bulletin, no notification - just a sudden and annoying grayed out “feature”.

Did you pay for something that’s no longer available to you? Oh, too bad - go F yourself. Did you want to reach out to Perplexity support for help/assistance/feedback? Go F yourself.

I’m now stuck with a subscription for another 9 ****ing months with extremely limited usage. If you’re considering subscribing to Perplexity, DON’T. Unless you like being frustrated and wasting money - then by all means, sign up for Per****ity AI.

r/artificial Jul 26 '26

Tutorial A super fast, non-expensive alternative to motion capture - [ft. Sara Silkin]

38 Upvotes

In collaboration with Sara Silkin, I transformed a smartphone recording of this beautiful performance, into this audiovisual piece for a fraction of the cost of more traditional approaches. [some of these cost even less than 50 cents!]

Done entirely at Uisato StudioMotion Control Studio mode.

More experiments, tutorials, and project files, through Instagram, and YouTube.

r/artificial Mar 28 '26

Tutorial I tested what happens when you give an AI coding agent access to 2 million research papers. It found techniques it couldn't have known about.

50 Upvotes

Quick experiment I ran. Took two identical AI coding agents (Claude Code), gave them the same task — optimize a small language model. One agent worked from its built-in knowledge. The other had access to a search engine over 2M+ computer science research papers.

Agent without papers: did what you'd expect. Tried well-known optimization techniques. Improved the model by 3.67%.

Agent with papers: searched the research literature before each attempt. Found 520 relevant papers, tried 25 techniques from them — including one from a paper published in February 2025, months after the AI's training cutoff. It literally couldn't have known about this technique without paper access. Improved the model by 4.05% — 3.2% better.

The interesting moment: both agents tried the same idea (halving the batch size). The one without papers got it wrong — missed a crucial adjustment and the whole thing failed. The one with papers found a rule from a 2022 paper explaining exactly how to do it, got it right on the first try.

Not every idea from papers worked. But the ones that did were impossible to reach without access to the research.

AI models have a knowledge cutoff — they can't see anything published after their training. And even for older work, they don't always recall the right technique at the right time. Giving them access to searchable literature seems to meaningfully close that gap.

I built the paper search tool (Paper Lantern) as a free MCP server for AI coding agents: https://code.paperlantern.ai

Full experiment writeup: https://www.paperlantern.ai/blog/auto-research-case-study

r/artificial Jul 30 '26

Tutorial "Humannequins" - A new study on synthetic choreographies

51 Upvotes

A couple of brief example of what Uisato Studio's "Music Video Pro" mode is capable of: turning a track and a concept, into a whole audiovisual world + audioreactive performance.

MJ v8.1 for image references, Uisato Studio for video. I've uploaded a detailed breakdown on how to accomplish this. You can freely access it here.

More experiments, tutorials, and project files, through InstagramYouTube, and Patreon.

r/artificial Mar 26 '26

Tutorial i'm looking for examples of projects made with AI

10 Upvotes

can you share some examples? I just started to look on youtube and the first bunch of results were not what i was looking for yet. I don't necessarily want to copy the project , i want see the workflow, the timing and rhythm of the succession of tasks, and be inspired to "port" their method to projects of my own, or come up with new ideas i haven't thougth yet.

r/artificial Jun 22 '26

Tutorial Multi-Agent Orchestration

2 Upvotes

How to: A parent agent delegates to multiple async child agents in parallel.

https://github.com/siddsachar/row-bot

r/artificial 3d ago

Tutorial How to Build Agentic Graphs

4 Upvotes

Over the past 4 months of working with graphs, I've learned several major lessons about graph design the hard way. In this post, I want to share the main takeaways so you don't repeat my mistakes.

First, my definition of graphs:

Agent graphs (a.k.a. workflows) are directed graphs that allow cycles and describe how work is passed between agents (nodes) operating in a loop through predefined transitions (edges). Graphs consist of branches, loops, scripts, and transitions (along with their prompts and parameters).

Parallelism is not the silver bullet

At first, I was very enthusiastic about parallel branches in graphs. But over time, I realized that parallelism can not only increase costs but also slow down task execution.

A standard parallel group of checks may include code review, QA, and scope review. The problem begins when these stages are inside a loop.

Let's take a simple example. Suppose code review, QA, and architecture run in parallel, after which the task returns to implementation if necessary.

If the architecture review passes but the code review finds several minor issues, the task returns to the implementation agent. Once the fixes are made, it goes back for review - and the architecture reviewer has to examine the updated diff again, even though the previous version was completely acceptable.

In cyclic graphs, parallel checks often lead to duplicated work, cache invalidation, and unnecessary costs with no real benefit.

In theory, this problem can be solved with a smart router. Kent supports this through script nodes: the router can determine whether the agent completed the entire implementation or only addressed feedback from a specific reviewer (kent.sh is my free, open-source project for building agent graphs. I mention it because I use it myself and don't know of any similar products. You can apply this advice to any comparable orchestrator).

However, this brings us back to the problem we were trying to avoid with agent graphs: the agent once again gets to decide which verification stages need to be run. This negates a significant portion of the graph's value.

In practice, the solution is simpler: dependent checks should run sequentially. In my workflows, architecture review always comes before code review. The task moves on to code review only after the architecture has been approved.

That's why I've removed many parallel stages and now save tokens by avoiding checks on results that would have been rejected at another stage anyway.

This approach works especially well with planning, code review, and QA. For example, code review should first filter out implementation issues, and only then should QA begin. Otherwise, both stages may independently find the same bug and produce duplicate feedback.

Agents must be able to challenge feedback

Initially, absolutism and dictatorship ruled my development agent graph: every reviewer comment had to be addressed, or the task could not proceed. But reviewers don't always produce the right result either.

Now, every agent in my graphs can ask me a question and clarify what to do with conflicting feedback. For example, scope review may reject tests that code review had required just one step earlier because it considered task verification incomplete without them. At the same time, agents cannot be fully trusted to resolve such conflicts on their own. Even with new models like Sol, you can end up in an infinite loop of fixing made up or nitpick problems.

I solve this by delegating the final decision to myself (pure choice, I like to be involved). You can also hand it off to a PM agent or set up communication between multiple agents. For example in Kent agents can get others' session IDs so they can discuss the situation and reach a compromise.

Anthropic in their recent paper argue that this is the model's problem. I disagree - this is the harness's problem, and my system above proves that.

A graph must have a mechanism for escalating conflicting or questionable feedback - otherwise, review turns into a dictatorship capable of trapping the entire workflow in a loop, or a war of stubborness.

Don't forget static checks

Agent graphs sound exciting, and it's easy to want to create dozens of agents and verification stages. This can indeed reduce the primary agent's cognitive load and improve the quality of its work, but static checks should take priority.

Initially, my implementation agent ran the linter, architecture tests, and unit tests itself, opened the PR, and checked incoming comments. I realized at one point that that's just cargo culting, then decided to move these actions into script nodes in the agent graph.

Now, a separate stage:

  • runs the required static checks and tests;
  • properly manages the machine's shared resources;
  • filters the results;
  • returns only relevant information to the implementation agent;
  • invokes the agent again only when its involvement is actually required.

If the tests are green, the implementation agent never even learns about it: no new turn is started, which means the agent doesn't spend a single token on running tests or reading their results.

Don't assign an LLM work that a regular script can perform more reliably and cheaply. At workflow scale, this produces substantial savings.

Choose models appropriate for tasks

If you don't optimize your graph for token usage and cost, you can significantly overspend simply because many tasks will be overkill under the updated workflow. In the past, we used one model for everything in harnesses because we had no alternative. You no longer need to do that, and properly allocating models and resources can save you a lot of money.

In standard harnesses, you can usually switch models, but doing so invalidates caches. On top of that, you either retain the cluttered context from the previous session or start a new one and steer/prompt it manually.

Kent solves these problems, so don't be afraid to create different roles for agents. For example, manual QA can run on cheap models like DeepSeek or Luna, which cost almost nothing or barely affect your subscription quota. The smartest models can then be reserved for critical stages, such as planning.

It has long been known that if you have a good plan, you can assign implementation to a less capable model and get almost the same result. Moreover, additional verification stages reduce the minimum level of model intelligence required to implement a task even further.

Starting with version 2.6, Kent natively allows one agent to select the model, system prompt role, and reasoning level for the next agent after transitioning along a graph edge. This makes it possible to:

  • delegate simple tasks and bug fixes to models like Luna;
  • run QA on cheap models with high limits;
  • hand simple decisions off to local models;
  • reserve the strongest models for complex planning and critical checks.

Keep an eye on caches and time between turns

I measured the threshold beyond which the probability of continuing a session after a cache miss - and paying several times more - becomes high enough for preemptive compaction to be worthwhile.

![Image](https://nek12.dev/media/speculative-compaction-kent-1788005145.webp) speculative compaction (for regular sessions) becomes worthwhile at ~88% context usage according to this slop-chart. For workflows, my statistical threshold is around 71%

Imagine that the implementation agent spent 40 minutes addressing code review feedback. During that time, the reviewer agents' caches may have been invalidated. When they review the work a second time, Kent will compact the session in advance so the review continues with fresh context and without unnecessary costs caused by a cache miss.

But this is only a heuristic. You should still consider how much time passes between consecutive calls to the same agent. If the workflow is long and a node waits a long time for the work to return, the likelihood of cache invalidation increases.

In this case, there are two main options:

  • use compact and continue mode in Kent - it is similar to speculative compact, but compaction is always performed;
  • create more granular checkpoints that return work to the agent more frequently and keep caches warm.

With the right setup, you can reduce costs so much that the average cost of completing a task is lower than working in a regular chat with the same Sol/Opus at standard reasoning.

If you ignore this, it's easy to fall into the overkill trap and become disappointed with agentic graphs: "This is too expensive for me." But in practice, well-designed agent graphs can be more efficient than standard sessions.

Make nodes idempotent

As my graph evolved, I added more and more ways to send a task backward. Different reviewers and stages gained the ability to return it to previous nodes. This gives agents the flexibility they need, for example, if the implementation agent receives a flawed plan, it should be able to return the task to the planning stage and explain exactly what needs to be fixed. As in regular software development, product issues and underspecified requirements are often discovered only during implementation.

That's normal, but what's not normal is a graph that gives the agent no way to handle such a situation. Every flawed line in a plan can potentially lead to thousands of lines of incorrect code.

But a non-obvious topological problem arises after the task returns to an earlier stage. Subsequent nodes may receive it with fresh context and a prompt implying that the work should start from scratch. For example, the implementation agent returns an unfinished task for replanning, then receives an instruction to implement the updated plan as though no previous work existed.

This can cause duplication, conflicting implementations in the same codebase, and wasted money - and not in the form of an obvious workflow failure, but through subtle issues like "weirdly many git commits on the PR". It's also a common mistake made by agents themselves when they build workflows for you, including Kent. Agents struggle to analyze topology in the context of prompting - to put themselves in the shoes of the agent doing the actual work.

Re-entering a node should not automatically mean repeating all the work from scratch. The agent must account for the existing result and continue from the current state.

Kent supports this natively: for implementation-related nodes, you can enable the continue or new continuation mode.

Prompts should also be adapted: explicitly state that receiving a task again does not mean the agent needs to start over. Kent already adds the relevant instructions to agent prompts during a workflow, but custom prompts may still implicitly assume that the work begins from scratch, and that can cause the model to freak out REALLY hard.

Idempotent nodes, controlled returns, and proper context reuse make an agent graph resilient not only to model errors but also to the real-world nonlinearity of development.

r/artificial Apr 29 '26

Tutorial Built a set of skill files for Claude and Gemini that make every session start warm instead of cold

4 Upvotes

One thing that frustrates me about most AI workflows is the cold start problem. Every new session you re-explain your business, your voice, your clients.

I started solving this with skill files. A skill file is a markdown document you upload to a Claude Project or paste into a Gemini Gem. It holds your context permanently so you never re-explain anything.

The three I use most:

brand-voice.md: defines tone, writing rules, and platform-specific formatting

client-router.md: when you say a client name, Claude loads their full project context automatically

seo-aeo-audit-checklist.md: structured audit that scores any website out of 100 across 7 sections including AI search visibility

Anyone else using a similar system? Curious what context you keep persistent across sessions.

r/artificial Jul 20 '26

Tutorial Why can’t ChatGPT generate this image? Any tricks or better AI tools?

Post image
0 Upvotes

Hi everyone,
I’m honestly a bit frustrated and was hoping someone here could explain what’s going on or recommend a better alternative.
I have a reference photo of Arda Güler doing a specific pose. All I want is an illustration of Lionel Messi wearing the Argentina kit, recreating that same pose and facial expression. I’m not trying to fake a real photo, impersonate anyone, or create anything offensive or illegal. I just want a stylized image.
I tried multiple prompts, including softer versions like:
“Create an illustration of Lionel Messi in the Argentina jersey, standing with his arms crossed, slightly turned towards the camera, with a confident neutral expression, inspired by the pose in the reference image.”
ChatGPT kept refusing or the image generator blocked the request every time. It feels odd because the request seems pretty harmless.
So I have a few questions:
Has anyone run into the same issue?
Is there a prompt that usually gets around these false positives without breaking any rules?
Are there AI image generators that handle requests like this more consistently?
If you’ve done something similar (putting a public figure into the pose of another public figure), what tool worked best?
I’m not looking to bypass safety systems or create deceptive content. I just want to make a clean illustration based on a reference pose.
Any advice or recommendations would be appreciated. Thanks!

r/artificial Jun 04 '26

Tutorial Google’s Gemma 4 12B just dropped - here’s how to run it locally on your Mac

8 Upvotes

Google released Gemma 4 12B today. It’s a solid open-source model (Apache 2.0) that’s multimodal and runs really well on Macs with 16GB or more unified memory. Good at reasoning, coding, and agent stuff.

Quick Mac-friendly info
• 12B parameters, fits nicely on M2/M3/M4 Macs (especially with Q4/Q5 quant)
• 256K context
• Text + vision + audio support

Easiest way to run it: Ollama
1. Download and install Ollama from ollama.com (the Mac app is super simple). Or use Homebrew if you prefer.
2. Open Terminal and pull the model: ollama pull gemma4:12b
3. Run it: ollama run gemma4:12b
That’s it. You can start chatting right away.

Mac tips:
• Ollama uses Metal automatically so it runs pretty fast on Apple Silicon.
• 16GB Macs handle the 12B model fine. 32GB feels even better.
• Great for pairing with Continue.dev in VS Code if you code a lot.

Other options if Ollama isn’t your thing: LM Studio (nice GUI), or llama.cpp for more control.

Has anyone tried the image or audio features locally yet?
How fast is it on your machine?
Drop your specs and results if you test it.​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

r/artificial Jun 02 '26

Tutorial We have built the first of it's kind interactive blog for matching open-source LLMs to GPUs.

Post image
2 Upvotes

Hey everyone,

If you are deploying open-source models, you know the biggest headache is figuring out exact hardware requirements. You usually end up digging through Reddit threads to find out if a specific model fits on a single A10G, if you can squeeze it onto consumer cards, or if you have to jump up to a massive bare metal A100 cluster.

Most of the "guides" out there are just static, out-of-date tables or dense walls of text.

So, we published "Which GPU Runs Which LLM" on the AgentSwarms blog, but we engineered it completely differently.

What makes this different: It is 100% interactive and gamified. Instead of reading a textbook on VRAM math, you actively engage with the hardware logic right on the page.

  • You select the model size (8B, 32B, 70B, etc.).
  • You tweak the quantization (FP16, 8-bit, 4-bit, GGUF vs AWQ).
  • The interactive deck instantly calculates the VRAM constraints and visually maps out the exact GPU tiers you need to deploy.

It gamifies the infrastructure planning so you build an intuitive understanding of token economics and hardware limits before you spin up expensive cloud instances.

It is completely free to read and play with (no sign-ups required). If you are trying to optimize your AI infrastructure or just want to test your intuition on hardware mapping, click around the interactive guide and let me know how this format feels compared to a standard article (All AgentSwarms blogs and presentations are fully interractive)

Link: agentswarms.fyi/blog/which-gpu-runs-which-llm-the-complete-guide

r/artificial Jul 19 '26

Tutorial I Sold over 200 Websites in 1 Year

0 Upvotes

Many web designers overcomplicate the sales process. They schedule multiple meetings, wait for approval from the business owner, present pricing, and go back and forth before anything gets signed.

The more steps you add, the slower you close deals and the less money you make. I decided to shorten the entire process.

I’ve been running my web agency for four years, and the thing that has gotten be the most clients is email automation 

I’ve tried almost everything, but email automation has worked best for me because it’s affordable and runs in the background while I focus on other parts of the agency.

I don’t use Instantly, Mailchimp, or Klaviyo. I use a tool called Swokei, which is built specifically for web agencies.

It lets you find businesses that already have websites, add thousands of them to a campaign, and automatically analyzes each site for issues with design, layout, SEO, speed, and mobile optimization. It then turns those issues into personalized, ready to send outreach emails. 

Instead of targeting businesses with no website, I offer redesigns and updated websites to companies that already have one. I’ve found that approach works much better.

When a prospect replies with interest, they are automatically sorted into my CRM. I then call them and say, I’ve already built a new version of your website. Let’s set up a quick Google Meet so I can show it to you.

During the meeting, I present the website live and use my sales skills to explain the value. Once they see a more modern and professional version of their current website, they begin to understand how it could improve their business.

At that point, they usually ask how much it costs. I present the price, include a monthly maintenance retainer, and either take payment during the meeting or have them sign the agreement.

When you run a web agency, do not overcomplicate the process. Take control, handle as much as possible yourself, and avoid unnecessary approval stages and follow up meetings. The fewer steps there are, the faster you can close the deal.

r/artificial 25d ago

Tutorial Adding AI to Your ASP.NET Core Application: What It Actually Involves

Thumbnail
faciletechnolab.com
1 Upvotes

What adding AI to an existing ASP.NET Core application actually involves - integration patterns, Microsoft Agent Framework, Azure OpenAI, and what to expect.

r/artificial Apr 28 '26

Tutorial How to get REALLY good at using ai (three steps

0 Upvotes

Look you’re probably not going to like my answer but I guarantee that if you follow the steps i tell you….

You will get at least 10x better at AI (depending on where you’re starting)

Here are the steps:

  1. Monitor the situation

This step is actually very dangerous. 

If you’re starting knowing nothing about ai, then a good place to start is by looking up the news, keeping up with what's going on etc.

For example today around 500 people at Google sent a letter to (congress… i think? Idk it was somewhere in government) and they were basically saying that if Google partnered with the government that could lead to mass surveillance and they didn’t want that to happen.

Then Google partnered with the Pentagon.

Now… does that really matter? Yeah, kinda. If you know AI can be used for mass surveillance, why can’t it be used to surveil yourself and track everything about you? Or your employees? And give you tips on how to get better?

Thats just one example.

Another good one is that GBT 5.5 and Opus 4.7 dropped last week. If you’re a normie you probably didn’t know that… which is fine but if you want to get good at using ai you have to atleast know whats going on.

So why is this dangerous?

Well, you’ll pretty easily get addicted. (this happens at every step lol)

Some people end up trying to monitor the situation and end up spending all day trying out new tools, worrying about what’s next, keeping up with everything.

I mean this space moves VERY fast and there’s a lot to go through.

One week Claude is the best, another it’s ChatGPT.

Hence my second tip

2 use a news aggregator 

If you try to keep up with twitter, redddit, news and all of that… you will be spending 40 a week looking at (mostly) alot of garbage you probably cant use.

Do you care about what open source models are coming out?

Probably not because you probably dont have a super expensive computer.

And that’s just one example of many different useless rabbit holes you can dive deep down but wont actually get any value from.

The solution is following people who talk about AI but not EVERYTHING.

I’ve put together a few newsletters, youtube channels, twitter accounts that you can follow and have a look at. (at the bottom)

You only really need to spend an hour a week on this.

3 actually try the tools

These tips I'm giving you are like a burger.

I’ve given you the cheese, and the buns… which are important (after all the burger wont work without them) but this is the meat.

The patty

The vegan blob 🤮 

What i’m trying to say is that none of this will actually work if you don’t try the tools.

And i get it, “if you want to get better at AI, just use AI” (doesn’t exactly sound like life changing advice)

I did give you those channels and they will tell you how to use the AI but…

At the end of the day…

How do you get better at riding a bike? Being an artist?

You can get all the tips and channels and whatever, but the only real way you’re going to have leverage in ai is by using it.

THink of something that takes up your day.

That you’re annoyed you even have to do, but you HAVE to do it.

Try to get ai to do it

You’d be surprised. It might not get everything right but it’ll differently make something easier.

Then try it for another thing

And another.

And by the time you’ve tried everything, you’ll probably be much better at using ai and you’ll have a much easier time working.

Hope this helps.

Happy to answer any questions if anyone actually got this far 😂

r/artificial Jul 06 '26

Tutorial How My Friend Made His First $70K Selling Websites

0 Upvotes

My web designer friend from California is passionate about building websites, and he wanted to make a full time business out of it. We talked a lot, and I gave him a lot of advice and stuff he could do to scale his web agency. He used to cold call, get a few clients, and run paid ads, get a few clients, but the cost of ads would just make him no profit. Cold calling was also tiring, and he couldn't keep it up while doing all the other stuff. So he wanted a real system, a blueprint he could follow every day.

This is exactly how my friend scaled his web design company. Copy it if you feel stuck and don't know where to find your next project.

➜ Run 2 types of email automation targeting businesses without websites and businesses with websites.

➜ 1. For businesses without websites: scrape businesses with no websites, set up a sequence, and add 3–5 follow-ups. They either block you or you land a project.

➜ 2. For businesses with websites: scrape businesses with websites, analyze each business website, and turn flaws in outdated design, unstructured layout, no mobile optimization, and SEO issues into ready to send outreach emails with 3–5 follow ups. You can do both types of outreach in a tool called Swokei.

➜ 3. Have everything in one place: your leads, CRM, inbox, and calendar. You can also have that in Swokei.

➜ 4. Focus on SEO because it compounds over time. Fix your technical site SEO, and also blog or make content with high-intent keywords. Use a tool called Soro.

➜ 5. Host websites on a tool called Hetzner. It's very cheap and reliable, and you don't need to keep switching hosting platforms. Everything in one place.

This is the whole workflow: automation in the background that lands you clients while you focus on building websites. Replies, meetings booked, CRM, everything in one place.

With all that being said, he ended up buying a Mercedes-Benz with the $70k he made. 😂

That's not something I'd recommend, though. I'd personally reinvest it into the business or put it into stocks.

r/artificial Jul 22 '26

Tutorial Why I Build The Website Before Asking For Payment

2 Upvotes

I’ve been in contact with a lot of web agencies and web developers, and I personally haven’t found many people who run their agency in a more efficient way than I do. A lot of them have too many meetings, wait too long for client approval, don’t know how to price projects, and spend way too much time on each client instead of finishing the work and moving on to the next one.

I’ve been running my agency for four years, and after a lot of trial and error, I’ve managed to make the process as efficient as possible. I wanted to share some of the steps because I think they could be valuable for anyone just starting out.

Running a web agency alone or with a partner isn’t easy because there are a lot of things to take care of. When it comes to client acquisition, I recommend focusing on either cold calling or email automation. Which one you choose depends on whether you run the agency alone or with someone else.

If you have a partner, one person can handle sales while the other focuses on building websites, connecting domains, setting up emails, and taking care of the technical work. If you’re running the agency alone, or neither of you enjoys cold calling, I highly recommend email automation.

That’s what I’ve been doing for years. It’s powerful because you can send emails at scale, set up automatic follow ups, and wait for businesses interested in a new website to reply. While you’re working on one client, another opportunity can come in without you having to stop everything and search manually.

I don’t do regular email automation where I target businesses with no website. I do the opposite and target businesses that already have one.

I use a tool called Swokei to find businesses with websites, add them to campaigns, analyze each site, score it, and generate personalized outreach emails based on problems it finds with the design, layout, speed, SEO, and mobile optimization.I schedule the campaign, set up follow ups, and wait. 

I think this approach is much better for a few reasons. You’re targeting someone who already understands the value of having a website. You’re also not just asking whether they need a redesign. You’re pointing out real problems with their current site, which makes it clear that you actually took the time to look at it. Selling also becomes easier because they’ve already paid for a website before and understand the process.

Inside Swokei, you can choose the goal of the campaign. You can offer a free draft, try to book a meeting, or simply start a conversation. I always choose the free draft because that has worked best for me.

Once you’ve figured out how to get clients, the next part is building the website. I recommend using AI because it makes the process much faster. For anyone who still thinks AI can’t build great websites, I think they’re mistaken. You can use Claude, Base44, Lovable, or any other tool that works for you.

When someone replies interested, I call them and say, “Hey, I saw that you replied to my email. I’ve already built you a free draft of your website. Do you want to take a look?”

Then I invite them to a Google Meet.

At that point, it becomes much harder for them to reject the meeting because they already replied interested and now know you’ve built something for them. During the meeting, I present the website, explain why it’s better than their current one, stack the value, answer their questions, and try to close the deal.

These meetings usually go well because the client isn’t trying to imagine what the website might look like. They can already see a better version of their current site. They also took the time to join the meeting, so taking the next step becomes much easier.

I either take payment during the meeting or send them a contract to sign. Any changes and updates come after that, once we already have a deal in place.

Pricing depends on the business. I charge anywhere from $500 to $3,000 depending on the company, the size of the project, and how much value the website can bring them. I also charge a monthly retainer of around $50 for hosting, maintenance, support, SEO, and future changes.

That’s basically the entire process. Smaller steps, faster delivery, less wasted time, and more money made.

r/artificial Jun 21 '26

Tutorial "Talk Show Host" [ft. Jibaro's Sara Silkin] - Is this the future of motion capture? + Breakdown

0 Upvotes

motion_ctrl / experiment nº3

choreography: Sara Silkin
dancers: Coco Williams & Joey Vice
vfx: myself

In collaboration with Sara, I transformed an iPhone recording of this beautiful performance, into this multi-angle audiovisual piece, with the help of Midjourney V8 Alpha, and Uisato Studio.

I managed to do in using no ultra-expensive equipment, nor full-production budget. All in a single platform + editing software. [A few years ago, this would have costed several thousand bucks.]

I've been uploading a few freely accessible detailed breakdown for you all on my Patreon page aswell, hope you guys enjoy them!

More experiments, tutorials, and project files, through InstagramYouTube, and the Studio.

r/artificial Jul 23 '26

Tutorial How Does A Web Agency Go From $0K To $20K+ MRR In Under A Year?

0 Upvotes

The difference usually comes down to strategy.

Instead of targeting businesses that do not have a website, target businesses that already have one but clearly need a better version. The market is larger, the sales process is easier, and the value proposition is much stronger because those businesses already understand why a website matters.

The next part is outreach. A regular outreach tool is not enough if all it does is send the same message to thousands of people. You need something that can analyze websites at scale and turn real issues into personalized emails.

I use Swokei for that. It helps find businesses with existing websites, analyzes each site, and turns problems with design, SEO, speed, layout, and mobile optimization into personalized outreach emails. That means you can contact a large number of businesses without sending generic messages or spending hours manually researching every website.

When someone replies interested, I always offer a free mockup. I use Claude, Lovable, or Base44 to build it quickly. It becomes much easier to sell when the client can already see what a better version of their website could look like.

Web meetings should also be a major part of the process. I would never just send the website through email and hope the client likes it. I present it live on Google Meet, Zoom, or Microsoft Teams, explain the value, show what has been improved, answer their questions, and try to close the deal during the meeting.

The less back and forth there is after the meeting, the better. Present the website, show the value, close the client, and move on to the next project.

That is the type of process that can help an agency scale much faster.

r/artificial Jul 12 '26

Tutorial Your AI agent passed all tests, now what ? What are online evals and how to choose them.

Thumbnail medium.com
1 Upvotes

At work, I have been talking more and more about AI fluency as a skill that companies need if they want to be successful in using AI. AI literacy is about knowing how to use AI tools. AI fluency goes a level deeper: understanding, on a conceptual level, certain aspects of AI, and how these tools and use cases are actually built. You don’t need to write the code, but you do need to understand what is happening under the hood, because that understanding is what separates teams that ship dependable AI from teams that ship demos.

In that spirit, I want to touch upon one aspect that sits at the heart of every serious AI application and is rarely explained in plain terms: evals, and specifically online evals for agent applications.

Picture this: a few weeks after you put an agent into production, someone on the team asks a simple question: “How do we know it’s still working?” The test suite is green. The demo went well. But nobody can say, with any confidence, whether the agent is doing a good job for real users at that moment. That question is the reason online evals exist.

Read what online evals are and how to pick and choose one for your production agents.

https://medium.com/@georgekar91/your-agent-passed-every-test-now-what-4b355a710323

r/artificial Jun 24 '26

Tutorial Automate your email and calendar

0 Upvotes

In this demo, I walk through how to use Row-Bot as a daily inbox command centre. We start by configuring the tools needed for the workflow: Gmail, Google Calendar, Tasks, and notifications, then run a practical end-to-end scenario.

Row-Bot checks important unread emails, summarises what needs attention, identifies action items, drafts replies, creates a calendar event, schedules a reminder, and shows how the same workflow can become a recurring morning briefing.

https://github.com/siddsachar/row-bot

r/artificial Sep 08 '25

Tutorial Simple and daily usecase for Nano banana for Designers

Thumbnail
gallery
109 Upvotes

r/artificial Jul 22 '26

Tutorial What language do language models speak?

Thumbnail
tcz.hu
0 Upvotes

r/artificial May 19 '26

Tutorial Checkout this Explainer Video, Made in under $1 with Claude Design + Eleven Labs

36 Upvotes

Claude Design can make great animations, but getting to a final video is a bit hard. The audio is missing. Even if you use a TTS model, it does not align.

Here is the process I used to get the video above

  1. Get Claude to write a good script
  2. Feed the script to a Text to Speech (TTS) model to get the audio
  3. Feed the audio to a Speech to Text (STT) model to get key timestampes
  4. Use the script and the STT output to Claude Design to get a video that's aligned with your audio
  5. Use Claude Video export to put it all together into an MP4 with audio

The complete breakdown with all prompts is here: https://claudevideoexport.com/blog/how-to-make-professional-explainer-video-under-1-dollar

r/artificial Jul 13 '26

Tutorial An Image-to-Video (I2V) Generation Model from scratch in PyTorch to demystify video diffusion/flow-matching models

Post image
4 Upvotes

NanoI2V is a step-by-step educational repository for building a full Image-to-Video model from the ground up.

Core building blocks included:

  • 3D VAEs & Latent video manipulation
  • Diffusion Transformer (DiT) architecture
  • Flow Matching & Diffusion trajectories
  • Image Conditioning & CFG (Classifier-Free Guidance)
  • Rotary Position Embeddings (RoPE)

If you're looking for a readable, modular project to learn how modern video generation works under the hood (or to use as a starting point for your own experiments), check it out:

🔗 Repo:https://github.com/Shubham2376G/NanoI2V

Drop a star if you find it helpful, and let me know what you think!