Alvaro Cintas's banner
Alvaro Cintas's profile picture

Alvaro Cintas

@dr_cintas130,798 subscribers

Educating about AI, Cybersecurity and Technology | Professor | PhD in Computer Science & Engineering

Shorts

You can now orchestrate Fable 5, Sol, and any model inside Codex with one plugin. It's called Codex-Orchestration. Assign Fable 5 as the advisor, Sol as the executor, or any model to any role. Then define the order they work in. Codex handles the routing. I ran Fable 5 High as planner with GPT-5.6 Sol Extra High as executor on a set of issues Opus and GPT-5.5 always struggled with. Done in 30 minutes. 40% fewer limit hits. 2x faster implementation. Install it by pasting this into Codex: "Install Codex Orchestration: codex plugin marketplace add Cjbuilds/Codex-Orchestration codex plugin add codex-orchestration@codex-orchestration Verify the installation, then tell me to start a new task." Then assign your models: @ codex-orchestration advisor: Claude Fable 5 High, Executor: GPT-5.6 Sol High Open source. Tweak the routing however you want.

You can now orchestrate Fable 5, Sol, and any model inside Codex with one plugin. It's called Codex-Orchestration. Assign Fable 5 as the advisor, Sol as the executor, or any model to any role. Then define the order they work in. Codex handles the routing. I ran Fable 5 High as planner with GPT-5.6 Sol Extra High as executor on a set of issues Opus and GPT-5.5 always struggled with. Done in 30 minutes. 40% fewer limit hits. 2x faster implementation. Install it by pasting this into Codex: "Install Codex Orchestration: codex plugin marketplace add Cjbuilds/Codex-Orchestration codex plugin add codex-orchestration@codex-orchestration Verify the installation, then tell me to start a new task." Then assign your models: @ codex-orchestration advisor: Claude Fable 5 High, Executor: GPT-5.6 Sol High Open source. Tweak the routing however you want.

86,253 views

The xAI API is incredible. I just created an AI assistant that can fetch news content from URLs and write a post about it on my own writing style. Super simple to set up and you can try free. Here’s how:

The xAI API is incredible. I just created an AI assistant that can fetch news content from URLs and write a post about it on my own writing style. Super simple to set up and you can try free. Here’s how:

15,384,417 views

OpenAI’s GPT-5.6 Sol model can now run inside Claude Code. There are two ways to do it, and both take minutes to set up, here’s how: Option 1, the official plugin: /plugin marketplace add openai/codex-plugin-cc /plugin install codex@openai-codex /reload-plugins, then /codex:setup That unlocks /codex:review, /codex:adversarial-review, and /codex:rescue. Claude writes, GPT critiques, you ship. Option 2, the proxy. One alias makes Sol your main model: alias claudex=‘CLAUDE_CODE_SUBAGENT_MODEL=gpt-5.6-sol CLAUDE_CODE_ALWAYS_ENABLE_EFFORT=1 claude –model gpt-5.6-sol’ Bonus: Claude Code lets you set subagent model and effort yourself. Sol Ultra runs can burn several times the tokens of a base run, so right-sizing delegated work saves real money.

OpenAI’s GPT-5.6 Sol model can now run inside Claude Code. There are two ways to do it, and both take minutes to set up, here’s how: Option 1, the official plugin: /plugin marketplace add openai/codex-plugin-cc /plugin install codex@openai-codex /reload-plugins, then /codex:setup That unlocks /codex:review, /codex:adversarial-review, and /codex:rescue. Claude writes, GPT critiques, you ship. Option 2, the proxy. One alias makes Sol your main model: alias claudex=‘CLAUDE_CODE_SUBAGENT_MODEL=gpt-5.6-sol CLAUDE_CODE_ALWAYS_ENABLE_EFFORT=1 claude –model gpt-5.6-sol’ Bonus: Claude Code lets you set subagent model and effort yourself. Sol Ultra runs can burn several times the tokens of a base run, so right-sizing delegated work saves real money.

86,044 views

Claude Fable 5 orchestrating Grok 4.5 is now my favorite real workflow. all you need is this free Claude Code plugin that makes Grok the default implementer. Fable writes the specs and reviews every diff, Grok 4.5 does the typing through the Grok CLI. - Grok handles the volume, Fable handles the judgment - Every diff gets cross-vendor review for free - Specs run as parallel agents when they're independent I've been testing it for a few days and the part that sold me is watching Fable refuse to write code. It sends specs down, judges what comes back, and that's it. setup: 1. claude plugin marketplace add DannyMac180/fable-advisor && claude plugin install fable-advisor 2. Install the Grok CLI from then grok login 3. /model fable It's open source, so you can read the agent files and tweak the routing however you want.

Claude Fable 5 orchestrating Grok 4.5 is now my favorite real workflow. all you need is this free Claude Code plugin that makes Grok the default implementer. Fable writes the specs and reviews every diff, Grok 4.5 does the typing through the Grok CLI. - Grok handles the volume, Fable handles the judgment - Every diff gets cross-vendor review for free - Specs run as parallel agents when they're independent I've been testing it for a few days and the part that sold me is watching Fable refuse to write code. It sends specs down, judges what comes back, and that's it. setup: 1. claude plugin marketplace add DannyMac180/fable-advisor && claude plugin install fable-advisor 2. Install the Grok CLI from then grok login 3. /model fable It's open source, so you can read the agent files and tweak the routing however you want.

98,800 views

NVIDIA just made AI detect objects 10x faster by deleting one step. It's called LocateAnything, and it removes the biggest bottleneck no one else was fixing in vision-language models. Normally a model builds each bounding box one coordinate token at a time. 100 objects means thousands of tokens before an answer. NVIDIA scrapped that: their Parallel Box Decoding predicts the whole box in a single forward pass, as one atomic unit. → 12.7 boxes/sec on one H100 → 10x faster than Qwen3-VL → +3.8% F1 on LVIS, accuracy up, not down → 3B params, runs on one consumer GPU Treating the box as one unit keeps its coordinates tied together, which is why accuracy climbed instead of falling. One model handles detection, GUI grounding, OCR, and document understanding, ready for computer-use agents, robotics, and document pipelines. 100% open source, weights, code, demo, and paper all live.

NVIDIA just made AI detect objects 10x faster by deleting one step. It's called LocateAnything, and it removes the biggest bottleneck no one else was fixing in vision-language models. Normally a model builds each bounding box one coordinate token at a time. 100 objects means thousands of tokens before an answer. NVIDIA scrapped that: their Parallel Box Decoding predicts the whole box in a single forward pass, as one atomic unit. → 12.7 boxes/sec on one H100 → 10x faster than Qwen3-VL → +3.8% F1 on LVIS, accuracy up, not down → 3B params, runs on one consumer GPU Treating the box as one unit keeps its coordinates tied together, which is why accuracy climbed instead of falling. One model handles detection, GUI grounding, OCR, and document understanding, ready for computer-use agents, robotics, and document pipelines. 100% open source, weights, code, demo, and paper all live.

200,747 views

Grok 3 is an incredible AI coding assistant. After a couple of hours and +1000 lines of code generated, I have now a fully functional 2D vertical jumping game. With different heroes, monsters, platforms, difficulties, and lives. Here are the prompts and process I followed:

Grok 3 is an incredible AI coding assistant. After a couple of hours and +1000 lines of code generated, I have now a fully functional 2D vertical jumping game. With different heroes, monsters, platforms, difficulties, and lives. Here are the prompts and process I followed:

4,213,195 views

🚨 BREAKING: OpenAI just announced their new Text-To-Video model called Sora. Look at these 10 insane examples: 1. Space movie trailer featuring a man wearing a red wool knitted motorcycle helmet

🚨 BREAKING: OpenAI just announced their new Text-To-Video model called Sora. Look at these 10 insane examples: 1. Space movie trailer featuring a man wearing a red wool knitted motorcycle helmet

3,610,339 views

🚨 China has released an AI employee that runs 100% locally. It can do research, code, build websites, create slide decks, and generate videos.. all by itself. And it comes with its own computer. 100% Open Source.

🚨 China has released an AI employee that runs 100% locally. It can do research, code, build websites, create slide decks, and generate videos.. all by itself. And it comes with its own computer. 100% Open Source.

456,295 views

Stop typing “make it look modern”. There are 2,000+ 𝗗𝗘𝗦𝗜𝗚𝗡.𝗺𝗱 files from top products. Colors. Typography. Spacing. Component rules. All packed into a single Markdown file your AI reads before it generates anything. → Works with Claude Code, Cursor, Lovable, Bolt → 100% Free to use Pick a style you like. Drop it in your repo.

Stop typing “make it look modern”. There are 2,000+ 𝗗𝗘𝗦𝗜𝗚𝗡.𝗺𝗱 files from top products. Colors. Typography. Spacing. Component rules. All packed into a single Markdown file your AI reads before it generates anything. → Works with Claude Code, Cursor, Lovable, Bolt → 100% Free to use Pick a style you like. Drop it in your repo.

275,819 views

I took the AI video prompts from Sora and tested them on DALL•E 3. Look at these 10 amazing results: 1. Two pirate ships battling each other as they sail inside a cup of coffee

I took the AI video prompts from Sora and tested them on DALL•E 3. Look at these 10 amazing results: 1. Two pirate ships battling each other as they sail inside a cup of coffee

2,548,698 views

Perplexity Comet is scary GOOD. This agentic browser connects to your apps and does everything you want autonomously. 10 powerful use cases👇: 1. Summarize and provide me all the links of this video

Perplexity Comet is scary GOOD. This agentic browser connects to your apps and does everything you want autonomously. 10 powerful use cases👇: 1. Summarize and provide me all the links of this video

786,907 views

Stanford has launched an incredible research AI tool. It’s called STORM, and basically you enter a topic and it will search hundreds of websites to write an article about its major findings. Available to everyone for free!

Stanford has launched an incredible research AI tool. It’s called STORM, and basically you enter a topic and it will search hundreds of websites to write an article about its major findings. Available to everyone for free!

975,546 views

GPT-4o is my new Siri. I programmed an iPhone Shortcut that when I tap twice, automatically explains what I’m seeing real-time using GPT-4o 🤯

GPT-4o is my new Siri. I programmed an iPhone Shortcut that when I tap twice, automatically explains what I’m seeing real-time using GPT-4o 🤯

852,404 views

🚨 Meta just announced Meta Movie Gen. It can generate high-quality AI videos from text, sync audio to the video, and even perform video editing. Look at these 10 crazy examples: 1. Fluffy koala bear surfing

🚨 Meta just announced Meta Movie Gen. It can generate high-quality AI videos from text, sync audio to the video, and even perform video editing. Look at these 10 crazy examples: 1. Fluffy koala bear surfing

678,039 views

The world's first 10-million-polygon AI 3D model is here 🤯 Rodin Gen-2.5 generates 1 million polygons in 4 seconds and scales all the way up to 10M polygons with skin-level microstructure detail. Full 360° coverage, zero blind spots.

The world's first 10-million-polygon AI 3D model is here 🤯 Rodin Gen-2.5 generates 1 million polygons in 4 seconds and scales all the way up to 10M polygons with skin-level microstructure detail. Full 360° coverage, zero blind spots.

41,553 views

You can now run open-source AI coding agents without paying for API keys 🤯 Cline CLI 2.0 just dropped with free access to Minimax M2.5. → Runs from your terminal → Parallel agents → Works with any editor Any model you want. 100% Open Source.

You can now run open-source AI coding agents without paying for API keys 🤯 Cline CLI 2.0 just dropped with free access to Minimax M2.5. → Runs from your terminal → Parallel agents → Works with any editor Any model you want. 100% Open Source.

162,119 views

You can now add a voice to your chatbot with one prompt 🤯 ElevenLabs shipped Speech Engine. It’s a voice layer that drops onto your existing stack without touching your LLM, RAG, or architecture. 70+ languages. 11,000+ voices to pick from. One prompt to set up.

You can now add a voice to your chatbot with one prompt 🤯 ElevenLabs shipped Speech Engine. It’s a voice layer that drops onto your existing stack without touching your LLM, RAG, or architecture. 70+ languages. 11,000+ voices to pick from. One prompt to set up.

61,573 views

Google has released the AI function in Sheets. You can now use AI in your spreadsheets to generate text, analyze sentiment, or summarize and categorize information. Here’s how:

Google has released the AI function in Sheets. You can now use AI in your spreadsheets to generate text, analyze sentiment, or summarize and categorize information. Here’s how:

369,787 views

Ok, this is amazing. I asked Claude 3 to generate an animation of the Pythagorean Theorem and this is what it created:

Ok, this is amazing. I asked Claude 3 to generate an animation of the Pythagorean Theorem and this is what it created:

564,569 views

Google Veo 2 has released image-to-video via Freepik. You can now create images, edit them using Retouch, upscale them, and generate hyper-realistic AI videos instantly, all in one place. Here’s how:

Google Veo 2 has released image-to-video via Freepik. You can now create images, edit them using Retouch, upscale them, and generate hyper-realistic AI videos instantly, all in one place. Here’s how:

339,667 views

Videos