Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

๐Ÿšจ Claude Code costs $200/month. GitHub Copilot costs $19/month. Jack Dorsey's company built a free alternative. 35,000 GitHub stars. It's called Goose. An open source AI agent built by Block that goes beyond code suggestions. It installs, executes, edits, and tests. With any LLM you choose. Not autocomplete. Not...

392,530 Aufrufe โ€ข vor 3 Monaten โ€ขvia X (Twitter)

0 Kommentare

Keine Kommentare verfรผgbar

Kommentare vom Original-Post werden hier angezeigt

ร„hnliche Videos

-> someone cloned claude -> design interface and -> made it completely free -> it's work on YouTube -> and also suitable for kids -> itโ€™s called open design -> and itโ€™s live on github -> same clean split-screen ui -> you get in claude artifacts -> prompt on the left, live -> design/code preview on -> the right, type what you -> want to build and it -> generates the ui in real -> time, but hereโ€™s the twist -> you pick the ai model -> not locked into one -> company, want to use -> gemini, mistral, llama, -> deepseek any model -> with an api work -> if youโ€™re running local -> models with ollama -> that works too -> no subscription walls -> the big difference -> vs claude artifacts -> works with any free -> ai model youโ€™re not -> paying $20/mo just to -> design, use free tiers -> local models, or whatever -> you already have access to -> fully local, your prompts -> and code never leave -> your machine unless -> you want them to -> no data training -> no cloud storage -> privacy by default -> no usage limits -> claude cuts you off -> after a few designs -> here you can generate, -> iterate, break things -> and rebuild all day -> the only limit is your -> donโ€™t like how a button -> works, change it -> want to add your own -> components, go ahead -> you own the tool -> so if youโ€™ve been gatekept -> by paywalls or worried -> about sensitive prompts -> going to some companyโ€™s -> servers, this fixes that. -> same workflow, more -> control, zero monthly fee

BeingInvested

12,134 Aufrufe โ€ข vor 1 Monat

Anthropic just released a talk on building headless automation with Claude Code. Presented by Sid Bidasaria, Member of Technical Staff at Anthropic live at Code with Claude on May 22, 2025 in San Francisco. Here is what the talk covers. Headless mode lets you run Claude Code without a person actively typing prompts from inside an automated script. Instead of a live session, a script calls Claude with a pre-written instruction using the -p flag. This opens the door for Claude Code to become a piece of a much larger, automated process. In plain terms: Claude Code stops being a tool you use and starts being a service that runs on its own. What this unlocks: Scheduled tasks: Run Claude Code on a cron schedule without anyone at a keyboard. Fix linting errors across an entire codebase. Automatically. Overnight. CI/CD integration: Trigger Claude Code as a step in your build process. Open a PR. Claude reviews it, flags issues, and pushes fixes before a human ever looks at it. GitHub automation: A project manager comments "Claude fix this" on a GitHub issue. Claude reads the request, finds the code, writes the fix, and opens the PR. Multi-machine workflows: One orchestrator dispatches tasks to multiple Claude Code instances running in parallel across different repos simultaneously. When you combine headless mode, hooks, and GitHub Actions, development teams can automate tasks that usually eat up significant time freeing senior engineers to focus on architectural problems while Claude handles the repetitive ones. If you use Claude Code for anything beyond single sessions this talk is worth 20 minutes of your time.

Elias

14,028 Aufrufe โ€ข vor 1 Monat

๐—ข๐—น๐—น๐—ฎ๐—บ๐—ฎ + ๐—–๐—น๐—ฎ๐˜‚๐—ฑ๐—ฒ ๐—–๐—ผ๐—ฑ๐—ฒ ๐—ท๐˜‚๐˜€๐˜ ๐—บ๐—ฎ๐—ฑ๐—ฒ ๐—”๐—œ ๐—ฐ๐—ผ๐—ฑ๐—ถ๐—ป๐—ด ๐—ณ๐—ฟ๐—ฒ๐—ฒ. ๐—”๐—ป๐—ฑ ๐—ถ๐˜ ๐—ฟ๐˜‚๐—ป๐˜€ ๐—ฐ๐—ผ๐—บ๐—ฝ๐—น๐—ฒ๐˜๐—ฒ๐—น๐˜† ๐—น๐—ผ๐—ฐ๐—ฎ๐—น. No subscriptions. No limits. No data leaving your machine. Claude Code used to cost $3-$15 per million tokens. Now you can run it with free open-source models on your computer. January 16th, 2026: Ollama version 0.14.0 became compatible with Anthropic's messages API. That means Claude Code now works with any Ollama model. Zero ongoing costs. Your code never leaves your computer. Here's the setup: Download Ollama. Run `ollama pull qwen3-coder`. Install Claude Code. Set two environment variables to connect them. Then run: `claude --model qwen3-coder` Give it tasks in plain English: "Write a function to process images." "Debug why my API calls are failing." It reads your files. Makes changes. Tests the code. Shows you what it did. Top models: Qwen 3-Coder for everyday tasks. GPT-OSS 20B for complex projects. This is completely legal. Explicitly supported by both tools.

Julian Goldie SEO

168,502 Aufrufe โ€ข vor 5 Monaten

THIS MIGHT BE THE #1 OPEN-SOURCE REPO FOR CLAUDE CODE RIGHT NOW. IT GIVES CLAUDE A MEMORY AND SLASHES YOUR TOKEN COST ON EVERY QUESTION The repo is safishamsi/graphify, a free open-source skill that turns any codebase into a knowledge graph Claude Code can read instantly. Instead of grepping through your files every session, Claude gets a map of how everything connects The problem it fixes: Every time you ask Claude Code about a big repo, it does the same thing, greps through dozens of files like a brute-force Ctrl+F, blows through your context window, and sometimes still misses the answer hiding in a file nobody searched. Claude Code has no memory of how your project is structured. Every session starts from zero What it does: It maps your entire codebase into a knowledge graph, capturing not just which files exist, but which functions depend on which, which modules are central, and which files cluster around the same concern. Claude queries the map instead of scanning files How it works, three passes: 1. Code structure, free and local. Tree-sitter parses your files and pulls out classes, functions, imports and call graphs. No LLM, no tokens, just your actual code mapped deterministically 2. Audio and video, if you have them. Transcribed locally and folded into the graph 3. Docs, papers, images. Here an LLM does semantic analysis, figuring out what each document means and where it fits. Only the meaning gets sent up, never your raw source It saves you money: Normally a question about a big repo makes Claude spawn explore agents that scan file after file, eating your context window and your token budget before you get an answer. With the graph already built, Claude queries the map instead of re-reading the codebase every time. Same answer, a fraction of the tokens. The graph only gets built once, then a hook rebuilds it after each commit for free, so you never pay that scanning cost again. The bigger the repo, the bigger the gap The best parts: it's a skill, so once installed Claude knows when to use it without you memorizing commands. It works on non-code folders too, point it at docs or notes and it can spin up an Obsidian vault How to add it to your Claude: 1. Install Claude Code if you haven't: npm install -g Paul Jankura-ai/claude-code 2. Add the skill: claude skill add safishamsi/graphify 3. Open your project folder and run /graphify . to build the graph 4. Optional, make it automatic: graphify hook install so the graph rebuilds after every commit That's it. Ask Claude about your repo and it reads the map instead of burning tokens on a file hunt Bookmark this

Yarchi

55,345 Aufrufe โ€ข vor 1 Monat

Excited to share our new project ๐Ÿฆ‰OWL - an open-source alternative to Manus AI with 6K+ stars and climbingโ€ฆ ๐Ÿฆ‰OWL: Everyoneโ€™s talking about Manus AI (an agent that can research, browse, code, and automate tasks.) But thereโ€™s a catch: โ†’ All the above agents cost $20 to $200 a month โ†’ Manus AI is available via an invite code only OWL by CAMEL-AI is an opensource project thatโ€™s breaking records: โญ 6K+ GitHub stars in 2 days ๐Ÿ† Ranks #1 on the GAIA Benchmark among open-source projects with a 58.18 avg score! ๐Ÿ“Œ Specialized Multi-Agent Collaboration โ†ณ AI user agents break down complex tasks โ†ณ Assistants agents create detailed execution strategies and interact with tools and tool agents โ†ณ Tools / Tool agents interface with external services and APIs ๐Ÿ“Œ Real-World Capabilities โ†ณ Autonomous research, coding, and web browsing โ†ณ Runs locally on your machine for privacy โ†ณ Supports top LLMs (easily integrated with GPT-4O, Claude 3.7, Gemini, Mistral, DeepSeek , Qwen, Ollama, Groq more) โ†ณ Automates complex workflows, from research to execution I ๐Ÿ“Œ Simple Setup โ†ณ Fast installs via conda or uv โ†ณ Docker support for easy deployment โ†ณ Straightforward config with TOML files No restrictions. No invites. No paywalls. Just powerful multi-agent collaboration. AI autonomy shouldnโ€™t be locked behind paywalls.

Guohao Li ๐Ÿซ

223,208 Aufrufe โ€ข vor 1 Jahr

I got curious how compaction works as a PM, so I did some brain surgery on Claude Code: (Anthropic's been doing really interesting work on context editing - they showed Claude Opus playing Settlers of Catan for 75+ minutes in a single thread by constantly editing the context instead of starting fresh. When I saw that Claude Code has a compaction command with optional custom instructions, I wanted to understand what's actually happening.) Abhishek Katiyar and Aman Khan gave me the key tip: Claude Code stores all your conversation history as text files on your computer. Open a new directory and give Claude Code a task. Here's how to watch compaction happening: 1. Go to your user's root directory 2. Press Command+Shift+Period (Mac) to show hidden folders 3. Navigate to ~/.claude/projects/ 4. Find your project folder and use Cursor/VSCode to open it (there's a reason) 5. Install the JSONL Gazelle plugin (open source, thank you Gabor Cselle!) 6. Open the most recent JSONL file - each row is a message in your conversation 7. Run the compact command in Claude Code with custom instructions 8. Watch what happens in the file What I learned: When you compact, Claude Code doesn't just summarize and delete everything. It creates a "compact boundary" in the conversation file, writes a summary of what happened before, but keeps the full original conversation (!!!!) The new thread can still retrieve any details from before compaction if needed. That is so damn cool. Why this matters: What you're getting in Claude Code is similar to what Anthropic ships in their developer SDK - so inspecting your daily tools is how you build real product intuition. The best way to understand AI systems is to open them up and look inside. Everything is text files.

Tal Raviv

57,910 Aufrufe โ€ข vor 6 Monaten