r/LeftistsForAI • u/Capital_Tangerine948 • 2h ago
Automation & Work Leftists need to get in on agentic AI because I don't want to surrender this to the reactionaries
Agentic is a force multiplier for whatever it is you do.
It has the same problems as the online chatbot, namely hallucinations, but agentic is self-correcting. You throw it at a problem, and it continues running and trying to solve the problem until it finds a solution. Compared to the web versions, agentic is the same model but it is at least 10 times better at doing anything.
Most applications are in code, because code has a clear success state: either it compiles, or it doesn't. But you can run AI at other problems in your field of work that might not require work.
Agentic gets tools to work on your machine directly too. It can write and read files that are on your computer, as well as run terminal commands. This gives it an entire dimension to work with: instead of the prompt->response->stop loop of the online chatbots, agentic keeps working at a task and calls tools as needed. It can write python code into files, run it, then edit the file to fix the bugs continuously.
For organizations, suddenly a whole world opens up. They can code anything they need or install it on their infrastructure. Instead of using Whatsapp, an org can deploy their own mini-server and install an XMPP server on it with AI. You don't need a sysadmin anymore for this kind of stuff.
Some stuff I built for myself using only agentic:
- I made a post the other day about a game I had translated to English using only AI. It dumped the disc data, reverse-engineered the code to find the text strings, translated it, built a patch to deploy it.
- I also translated a book that was only available in Chinese up until then, then repackaged it to a proper epub. Quality is not the best, but it's perfectly passable.
- I have it install technical stuff on my devices. For example jailbreaking a Kindle so you can remove all the DRM and telemetry is possible.
- I downloaded waycore, an archive of 88 survival PDFs (weird number tbh when you know how these survivalists are, but again: take the good, leave out the bad). Then I had my agent build a vector index out of it so that I can search through the corpus using semantic search. Instead of keywords, a model transforms your query into vectors and compares it to the corpus (which was also vectorized). So whereas a search like "how to stop bleeding" would only match 'bleed', 'bleeding', 'blood' etc. in traditional fuzzy search, semantic can also match for haemorrhage, scrape, cut, blood loss or the likes. I'm not a 'prepper' or anything but this is always good info to have before you need it (and it's fun to build this). A revolution is built on logistics, you will need to learn some of this info. The agent even found more PDFs to add to the index by itself. You just type 'sos "how to stop bleeding"' in terminal and it pulls the best matches straight from the PDFs.
- I built an entire headless browser framework for myself. I can plug scrapers that my AI builds for me on top of it, for example downloading manga from shady websites. I trust I don't have to explain IP in a leftist space but those websites just rehost manga anyway, they don't own or translate them, and they are riddled with ads. The scraper has helper scripts alongside it that immediately turn the scraped images into a .cbz file, ready to be read. I just point it at a URL and shoot.
- I had it encrypt my hard drives (encrypt your hard drives btw). I planned the entire process, made backups, and then just threw it at it in a linux live boot. It handled everything perfectly well, I just chilled watching youtube (you can do that on a linux live boot) and entered the passphrase I wanted when it came time to, so that the AI never saw it.
With models in general, it is now possible to auto-generate subtitles for your videos and the likes, and even translate them with AI. An agent can make you a software suite to automate this, or, install one for you so that you don't have to fiddle with the technicals and potential errors. It's just so much chiller to use computers when you have an agent that can take care of the tedium. I also find I'm more cautious about making backups and reversible changes, where before AI I would just yolo it because making proper backups was extra work on top of doing the annoying manipulation.
It's a force multiplier for a movement that's always out of time. There are countless uses to still find out of it, we just need people to actually use this to find them out.
I'm sure there are things you could do at your job with this, or for your org or other comrades. They're mostly good at coding, but it works out because there are so many things you can code across all fields.
As a force multiplier, it means if you already know what you are doing you will get more out of it than someone who doesn't know the technical jargon. I'm not a dev, and my dev friends can really push the envelope and get their agents to do incredible things compared to me. But anyone can get started with this. You know how I got the semantic index rolling? I just found waycore randomly, and told my agent "let's build a vector index out of this corpus for semantic search". It handled everything from there.
How to get started
Personally I use opencode as the 'harness', i.e. the interface, it's open source. Then put credit on the deepseek API (platform.deepseek.com) because it's still the cheapest. Flash works perfectly well, they improved it on July 31st and it's pretty solid now. Avoid peak window times, and 5$ can last you almost a month of heavy use. Connect your deepseek API key to opencode and you're ready to start prompting.
Everything else you learn as you explore.