▲ 3 r/BuildWithClaude+1 crossposts

I asked Claude to remove Claude's watermarks. It did. (open source, runs locally)

Anthropic documents that Claude marks its output: C2PA on files, plus a model-level text watermark. Their help center even says proofreading can stamp human-written text.

So I set up an open-source tool as a Claude Code skill and asked Claude to strip Claude's marks from my own files. Worked in one conversation. It also catches invisible Unicode (zero-width spaces etc.) and metadata from ~30 other AI tools: ChatGPT, Midjourney, Cursor, Gemini, Stable Diffusion.

Try it on a file you think is clean:

git clone https://github.com/haidrrrry/claude-watermark-remover.git

cd claude-watermark-remover

python3 service/scripts/inspect_file.py yourfile.md

It prints exactly which hidden characters and metadata are in there. One more command removes them. Python stdlib only, nothing uploaded.

Honest limits: metadata and invisible characters strip verifiably. The statistical watermark in word choice can only be rewritten, not deleted, and no tool can promise otherwise.

MIT fork of watermarks-remover, extended with the Claude Code skill and wider detection. Feedback welcome, especially false positives.

reddit.com
u/DueAnt8779 — 4 days ago

Anyone received any response from University of Passau for Winter 2026 MSc Artificial Intelligence?

Hi everyone,

I recently received an admit for the MSc Artificial Intelligence program at University of Passau for Winter Semester 2026.

reddit.com
u/DueAnt8779 — 2 months ago
▲ 2 r/cursor

My AI kept writing broken Kotlin. I fixed it with this.

GlobalScope, collectAsState(), _state.value = everywhere.

Every. Single. Time.

Built a skill kit so it stops. One clone, done.

git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git \
  .cursor/skills/compose-kotlin-agent-skills

Works with Cursor, Claude Code, Copilot, 24 others. MIT free.

https://github.com/haidrrrry/compose-kotlin-agent-skills

reddit.com
u/DueAnt8779 — 3 months ago
▲ 0 r/cursor

I Turned the Viral 18k-Star AI-Trader into a Production-Ready Version (Self-Hostable)

Saw AI-Trader (18k+ stars) gaining huge traction — the idea is excellent: AI agents autonomously publishing signals, copy-trading, competing on leaderboards, and running without human intervention.

But when I tried running it locally, it had several painful issues:

  • No Docker support
  • Broke on Windows
  • Paid API keys with very low limits
  • Background workers blocking the main API
  • No proper database or monitoring
  • Missing MCP support for modern agents

So I forked it and spent time fixing these problems.

Result: Ai-Trader-Pro

Major Improvements:

  • One-command Docker Compose (Postgres + Redis + dedicated workers)
  • Free market data using yfinance + Binance
  • Prometheus + Grafana monitoring stack
  • Risk Management + Strategy Optimizer
  • Advanced walk-forward backtesting with research notebooks
  • Full MCP support for Claude/Cursor agents
  • Better security, rate limiting, and mobile UI

The project is now much more stable and suitable for real self-hosting or research.

Repo → https://github.com/haidrrrry/Ai-trader-pro

Big thanks to HKUDS for the original project (MIT licensed).

Would love honest feedback. Also happy to share the Cursor prompts I used if anyone wants them.

u/DueAnt8779 — 3 months ago

I forked AI-Trader (13k⭐) and added native MCP support — agents can now connect without any custom SDK

AI-Trader from HKUDS is a cool project — agent-native trading platform where bots self-register and publish signals. 13k stars, great concept. But it had real problems for anyone trying to actually run it or connect modern agents to it.

The biggest gap: zero MCP support. In 2026 if your platform doesn't speak MCP, agents have to use a custom HTTP flow just to register. So I fixed it.

What I added/fixed in the fork:

🔌 MCP server at /mcp using FastMCP — agents connect natively:
npx fastmcp connect http://localhost:8000/mcp

Available tools: register_agent, publish_signal, get_feed, follow_trader, get_positions, heartbeat

🐳 Docker Compose — full stack in one command (was completely missing)
🗄️ PostgreSQL enforced — removed the SQLite default that corrupts under concurrent writes
⚡ Separated background workers from the API process — was causing the slow UI everyone complained about

🆓 Free market data — yfinance for stocks, Binance public API for crypto (no Alpha Vantage key needed)
🔒 Redis rate limiting on all public endpoints
✅ Pydantic validation on all trade inputs (fixes the str/str crash in issue #141)
📱 Mobile responsive down to 375px

91 tests passing. Full credit to HKUDS for the original work — MIT license.

Repo: github.com/haidrrrry/Ai-trader-pro

Curious if anyone has tried connecting Claude Code or Cursor directly via MCP to a trading platform — would love to hear how you're doing it.

reddit.com
u/DueAnt8779 — 3 months ago
▲ 26 r/Kotlin+2 crossposts

I got tired of AI agents breaking my Compose code, so I built a skill kit to fix that

Every agent writes the same broken patterns:

  • _state.value = instead of _state.update { }
  • collectAsState() instead of collectAsStateWithLifecycle()
  • GlobalScope.launch { } in ViewModels
  • LazyColumn with no keys
  • Hardcoded strings, deprecated nav routes

Built a markdown skill kit that drops into .cursor/skills/ or ~/.claude/skills/ and enforces strict MVI before the agent writes a single line.

13 reference modules. 27 agent install guides. CI-validated on every push.

Repo: https://github.com/haidrrrry/compose-kotlin-agent-skills

git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .cursor/skills/compose-kotlin-agent-skills

MIT. What broken patterns has your agent introduced? I'll add them to the banned list.

u/DueAnt8779 — 3 months ago

Does uni assit calculate german grades on gpa bases or percentage bases because if its on gpa basis then my german grade is 2.1 and if on percentage basis then my grade is 2.8 and they have gaven me 2.6 german grade

reddit.com
u/DueAnt8779 — 4 months ago