[TASK] Full-Stack Developer — $500 USDC/Month + Coding Tools — Long-Term

Looking for a reliable full-stack developer for a long-term project.
Compensation:
$500 USDC/month
20x Codex or Claude coding access provided
Long-term position
Pay can increase based on performance and project growth
Requirements:
Experience with both backend and frontend development
Comfortable using Codex, Claude, or similar AI coding tools
Able to work independently and ship consistently
Good communication
Interested in working with the project long term
Please send when applying:
Short introduction
Tech stack / experience
GitHub
Portfolio or previous projects
X profile, if available
Telegram username
Country / timezone
Availability
Payment is monthly in USDC.
DM me with the information above. Looking for someone interested in growing with the project rather than a one-off gig.

reddit.com
u/pzarevich — 1 day ago
▲ 10 r/IOT

Built an agent skill for embedded work

I do a lot of embedded work and I've been running a coding agent alongside it.

Out of the box they're bad at hardware. They'll confidently hand you a pin

number for a board they've never seen, or call a flash "successful" while the

display sits there black.

So I wrote a skill for my harness that forces a different discipline:

- **Measure, never recall.** No pin numbers, FQBNs, flash offsets or display

drivers from memory. Walk the USB bus, run esptool, read the eFuses, check the

local board manifests. Anything it can't measure has to be tagged [ASSUMED].

- **Back up flash before the first overwrite.** read-flash 0 ALL backup.bin, or

it doesn't get to write.

- **A clean build and a verified flash prove nothing.** It has to read the device

back (serial, a probe sketch, or asking me what I actually see on the display)

before it claims anything works.

- **Bounded retry.** Two attempts per hypothesis, and never re-run a failed

command unchanged.

- **A hardware inventory on disk** with provenance on every line: measured vs

vendor claim vs assumption. A project is usually several boards and a pile of

components, and chat sessions get restarted.

Safety side: it runs sandboxed. The agent gets the serial device and nothing

else on my machine. It can flash my board, it can't go wandering.

Video: one prompt to identify the board. It measures its way to an

ESP32-D0WD-V3, 4 MB flash, CH340 bridge. Then a second prompt to rewrite the

OLED UI, build, flash, and read the sensor back over serial.

Half the rules in there exist because I got them wrong on real hardware first.

Toggling DTR/RTS on a native USB-JTAG S3 doesn't reset the board, it drops it

into download mode and looks exactly like a boot crash. eFuse FLASH_TYPE

describes the flash, not the PSRAM. GPIO 22-25 don't exist on the S3 and will

kill an I2C sweep halfway through.

Open question, and the actual reason I'm posting: what would you want in

something like this? What does your agent get wrong about hardware that drives

you up the wall? And what should it be flat-out forbidden from doing without

asking you first?

(I built this and it's open source. Link in the comments if anyone wants it,

happy to just talk about the rules otherwise.)

u/pzarevich — 10 days ago
▲ 3 r/ollama

I added a verify-before-load safety check for Ollama models

I maintain llm-checker, and I’ve added structural model-file validation for Ollama.

Ollama stores downloaded models as local blobs. If one is truncated, malformed, or has invalid internal offsets, you may only discover it when the model fails to load. llm-checker can now inspect that file before inference and block it if structural validation fails.

npm install -g llm-checker

# Check a model file directly
llm-checker verify /path/to/model.gguf

# Check installed Ollama models
llm-checker installed --verify

# Verify the selected Ollama model before running it
llm-checker ai-run --verify --category coding --prompt "Hello"

The same check is exposed through MCP, so Grok or another MCP-compatible client—can inspect a model from a normal English request. That’s what I’m showing in the video.

The validation is powered by ModelVet and supports GGUF and safetensors. An accepted result means the file is structurally valid; it does not prove provenance, detect poisoned weights, or guarantee model behavior.

GitHub: https://github.com/signerless/llm-checker

Feedback from Ollama users would be very helpful.

u/pzarevich — 16 days ago
▲ 1 r/solana

we built an onchain labor market where AI agents hire and pay each other, and you can try it today in Solana

I've been working on AgenC, a protocol where the entire lifecycle of a job happens on-chain. Not

just the payment. The job posting, the escrow, the claim, the delivered work, the review, the dispute if there is one, all of it settles inside one Solana program.

Last week I gave a Grok 4.5 agent one instruction: find claimable work, claim it, do it, submit it. It found an open bounty, claimed it on-chain, wrote the deliverable, published it with its SHA-256 committed on-chain, and submitted for review. The buyer side reviewed it against the spec and paid out. 0.004 SOL bounty, escrow closed, no human in the loop. When the RPC rate-limited it mid-payment, it waited out the cooldown, switched endpoints and landed the transaction on its own. That was the moment this stopped feeling like a demo to me.

What you can actually do with it:

  • Post work with the reward locked in escrow, and pay only when you accept the result
  • Run an agent that finds tasks, does them and gets paid in SOL. Rewards, bonds and stakes are all plain SOL, there's no protocol token you have to hold
  • Register agents, publish service listings and sell digital goods, all permissionless, nobody approves you
  • Build your own marketplace frontend on top. Every settlement splits fees on-chain and one leg goes to whoever operated the storefront, so distribution is a business, not a favor
  • Dispute bad work. Disputes, stake slashing and completion bonds are protocol instructions, not a support ticket

The part I think matters most compared to everything else in this space: most agent platforms stop when the buyer signs. Here the deal keeps existing after that. There's arbitration, there are bonds on both sides, and reputation comes from settled escrow rather than reviews someone can farm.

Getting started is one command for the kit, and the docs live at agenc.ag. It's early, volume is small, and I'd genuinely rather hear what breaks for you than compliments. Happy to answer anything technical in the comments.

u/pzarevich — 24 days ago
▲ 8 r/Agentic_Marketing+2 crossposts

open source terminal agent powered by grok

i've been building agenc-core, an open source terminal agent harness, and it's at a point where grok is doing some genuinely interesting things in it. figured this group would appreciate a look.

what it is: a cli coding agent where grok drives the reasoning, reading, editing, running tools, and spawning sub agents. it's not a chat wrapper. it's a full harness with a tui, a permission model, and multi agent orchestration.

the parts that turned out well:

  • agent swarm. give it a divisible task and it fans out to parallel sub agents, each with its own context, tools, and token budget, all running at once. i watched it build 8 separate c terminal games this way, one agent per game, with a live agents rail showing each worker as running, idle, or done. the orchestrator integrates and verifies everything at the end.
  • a real tui. workbench layout with a project explorer, agents rail, approval pickers for tool calls, markdown rendered responses, and a reasoning effort toggle (/effort) so you can trade latency for depth on each call.
  • ledger agent stack integration. it detects a connected ledger device, shows the model in the status bar, and can handle balances, history, sending, and swaps. every value moving action requires physical approval on the device. agents propose, humans approve. keys never leave the secure chip.
  • grok imagine for image and video generation, so it can create visuals and short clips during a task.
u/pzarevich — 29 days ago
▲ 6 r/solana

we’re opening the safety layer behind agenc as a pay-per-use api for solana agent marketplaces

A lot of people are starting to build agent marketplaces on Solana, but the scary part is not listing jobs or connecting a wallet.

The scary part is letting agents read random tasks, prompts, links, buyer instructions, and then letting them act near money.

So we packaged the safety layer we built for AgenC into a standalone Attestation API.

Marketplaces can send a task before an agent touches it, get back a risk decision, and optionally receive a signed receipt that proves the task was reviewed.

The goal is simple: if agents are going to work and get paid onchain, marketplaces need a shared way to screen work before wallets, secrets, or payouts are exposed.

We’re testing it now at attestation.agenc.tech

u/pzarevich — 2 months ago
▲ 13 r/solana

Why are people launching Solana agent marketplaces without basic security?

I’ve been working on the security side of the AgenC marketplace for months: escrow flows, agent wallets, task settlement, moderation gates, signing paths, and all the boring edge cases that can lose users money.

Recently I’ve seen more people launching “AI agent marketplaces” on Solana, and honestly it’s worrying. I found at least one critical vulnerability in a marketplace design that could have put user funds or agent wallets at serious risk.

I’m not going to post exploit details or name anyone here. That’s not the point.

The point is: if you are building a marketplace where agents connect wallets, accept tasks, sign transactions, or hold/route escrow, security cannot be an afterthought. Users are not your testnet. “Move fast” is not an excuse when real wallets are involved.

Audit your flows. Threat model your signing path. Test malicious task payloads. Check every escrow transition. Assume the frontend can lie. Assume RPC/indexer state can be stale. Assume every transaction builder will be attacked.

AI agents + crypto is going to be a huge category, but if builders keep shipping unsafe rails, users will get drained before the ecosystem even has a chance.

reddit.com
u/pzarevich — 2 months ago
▲ 51 r/ollama

My CLI now recommends local models across 32k+ HuggingFace/Ollama/GPT4All builds, and finally sizes MoE correctly

I maintain a small open-source CLI, **llm-checker**, that scans your hardware and tells

you which local models you can actually run

  npm install -g llm-checker

    llm-checker hw-detect

    llm-checker registry-recommend --category coding

Pure JS, Node 16+, model DB packaged so it works offline. Apple Silicon / CUDA / ROCm /

Intel / CPU detected. Feedback welcome, especially mis-sizing on your rig.

Repo: github.com/Pavelevich/llm-checker · npm: llm-checker
u/pzarevich — 2 months ago
▲ 22 r/solana

settlement is the real unlock for ai agents on solana

connectors are easy. the hard part is letting agents do paid work without turning the wallet into a trust-me box.

with agenc, the work flow ends in real settlement: escrow funded onchain, agent submits proof, buyer reviews, payment releases, and reputation updates from the result.

that’s the part i think matters most for the agent economy. not agents “calling tools,” but agents actually earning through a settlement layer people can verify.

u/pzarevich — 2 months ago
▲ 9 r/solana

we shipped 84 onchain instructions to mainnet, economic rails for the agent economy on Solana

It took months of work, testing, redesigns, and a lot of resources to get here

u/pzarevich — 2 months ago
▲ 9 r/solana

Our full protocol is on Solana mainnet: agents can use our SDK or AgenC Kit to connect Claude, Codex, or Hermes directly to the chain and work autonom

The idea is simple: AI agents should be able to do paid work onchain, not just chat or suggest things.

With the AgenC SDK or AgenC Kit, agents like Claude, Codex, and Hermes can connect directly to the protocol, find work, claim tasks, submit results, and operate autonomously inside user-defined wallet policies.

The protocol handles the core rails on Solana: task escrow, settlement, reputation, service listings, bids, reviews, and dispute paths.

So instead of agents being trapped inside apps, they can start acting like real economic participants: working, earning, and building history onchain.

We’re still early, but this is the direction we believe the agent economy is moving.

u/pzarevich — 2 months ago
▲ 10 r/solana

I think Solana is the network agents need, and why I shipped this marketplace

u/pzarevich — 3 months ago

I’m building a marketplace where ai agents can find work and get paid onchain

I’ve been working for the last 6 months on a project called AgenC.

the idea is to build a real marketplace where ai agents can find tasks, claim work, submit results, and get paid, not just a demo where an agent chats with a user, but an actual workflow where agents can participate in an economy.

the hard part is not only “can the agent do the task”, the hard part is trust

If an ai agent is going to work for money, a few things need to be clear:

who is allowed to post tasks?

how does the agent know what it is supposed to do?

how do we stop task text from becoming prompt injection?

who decides if the work was good enough?

how does payment happen without giving the agent too much wallet authority?

how do humans stay in control when settlement matters?

the current version we are testing is intentionally conservative. A creator posts a reviewed public task. A worker agent claims it. The agent submits a result. The creator reviews the submission. Only after that does settlement happen through escrow.

The explorer is read only. It does not hold signer keys. The CLI uses signer policies, job spec hashing, moderation checks, and preview first flows so the agent cannot just blindly mutate things or sign transactions.

We are also working on ZK proofs for private agent work, and Ledger integration so users can approve important marketplace actions with better hardware wallet visibility.

I think this is going to become important if agents move from “assistant inside an app” to “worker that can do tasks across the internet.”

Curious what people here think.

What would you want to see before trusting an AI agent marketplace?

reddit.com
u/pzarevich — 3 months ago
▲ 3 r/solana

I’ve been building a solana marketplace for ai agents

I’ve been working for the last 6 months on a project called AgenC https://marketplace.agenc.tech

it’s a marketplace for ai agents on Solana, the idea is that agents should be able to discover tasks, claim them, do the work, submit results, and get paid onchain.

right now we’re testing a private mainnet canary, the first version is intentionally simple: reviewed-public tasks, creator approval before settlement, escrow on Solana, and a read-only explorer that never holds signer keys.

a lot of the work has been around safety more than hype: signer policies, jobspec hashing, moderation checks, cancel/refund flows, and making the cli usable from agent tools like Claude/Codex-style workflows.

We’re also working on two bigger pieces: zk proofs for private agent work, and Ledger integration so users can approve marketplace actions with better hardware-wallet visibility.

I’m curious what Solana builders think about this direction.

If agents are going to do real work and get paid for it, what should the safe onchain flow look like?

reddit.com
u/pzarevich — 3 months ago