Activity
Mon
Wed
Fri
Sun
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Memberships

AutoSkool.Club AI

59 members • $5/m

FA
Feeble Academy

25 members • Free

Automation Incubator™

40.3k members • Free

AI Automations by Jack

1.5k members • $77/m

AI Sales & Lead Gen Secrets

1.4k members • Free

20 contributions to AutoSkool.Club AI
Ask Me Anything!
Hi Everyone, After taking some time off and setting up camp with my newly created venture, my next target is Skool. For a long time I wanted to invest much more time here and provide help, resources, and advice in a much more active way, but the available time always plays against me. From now on I have dedicated specific time every week exclusively to Skool, so you will start to see posts more often, shared content and tools, and also I will start live sessions free for all community members. These sessions are aimed to help everyone with whatever challenges you are facing with your projects, builds, or any technical questions you may have. I will also use these sessions to explain new tools and concepts that I think are interesting or useful. The first AMA session will be next Friday 26th of September at 10am Central US time. I will keep these sessions once every two weeks to start, likely increasing them to once a week if people join them and enjoy them. You can add the event on your calendar by going to "Calendar" tab, clicking on the event, adn then "add to calendar". The sessions will be open but I will try to have a few topics to discuss prepared ahead. Feel free to drop them in a post or comment if you want to discuss anythign in particular. For this first AMA session I have noted: - How I use Genspark for increased productivity - Update on Chimera If there is anything else you want to talk about, drop it in the comments or bring it up on the same day! I hope to see you there!
1 like • 4d
Looking forward to it, Didac!
More perks! Interview templates.
Hi all! Let’s keep the freebies rolling. I’ve prepared a couple of templates/presentations that are a byproduct of the guide I shared yesterday. The guide gives the big-picture structure for the audit; these two templates focus solely on the interview process. There are two versions: one aimed at the executive level (senior managers, directors, C-suite) and another focused on operations, the people working in the field. Use them as is, or, together with the guide, run them through tools like Genspark or Manus to generate questions tailored to your niche (real estate, finance, marketing, etc.). I hope they help! If you’ve been here a while, you know I’ve mainly focused on the technical side of AI, building n8n workflows, vibe coding, etc, and paid less attention to front-end work like auditing, interviewing, and reporting. That’s changing. My vision is to equip this community with the full toolkit to win projects, helping you land clients and build rock-solid automations. Let’s keep it going. If there’s something specific you want me to create or share that would benefit the whole community, I’m all ears!
0 likes • 9d
Hey @Didac Fernandez can you share a loom showing how you use Genspark as your power tool? I know you've spoken highly of it, but it would be helpful to see how you're actually wielding it.
0 likes • 4d
@Didac Fernandez Looking forward to being there.
Weekly Perk early access!
Hi Everyone, Thank you for hanging on with me while I was getting my personal life events sorted. As a free perk for the best Skool community out there, I want to share this n8n automation I recently built as a social media content machine. What It Does: - Input your brand details once through a simple form - AI generates 6 unique posts (3 LinkedIn professional, 3 Facebook community-focused) - Creates custom images for each post using Google's latest AI - Sends each post to you for approval via Slack - Lets you request edits with natural language feedback using NanoBanana - Automatically schedules approved content across platforms - Tracks everything in organized spreadsheets I'm using a new platform called Late to help me automate and schedule the social media connections. The platform is brilliant, super smooth, and I haven't seen anyone talking about it. I will probably make a video about it very soon. The app is currently on AppSumo for $49 lifetime license, so if this is something you are interested in, don't miss the deal. Other similar platforms like Bloatao charge you $30/month for the same. Also, this will be my first official template sent to the n8n community, so I'm losing my virginity as an official n8n builder. But you get it here first! If you have any questions or need help setting it up, let me know! And by the way, you are going to see me much more active from now on, sharing a lot more really cool content for ya'll, stay tuned! Didac
Weekly Perk early access!
1 like • 16d
Thank you Didac.
Exciting things coming!
Hi Everyone, Apologies for the lack of activity these past two weeks, but I have been deep in the weeds of project work and also very exciting peronsal projects that soon I will be sharing with all of yous. One of these is Chimera. I'm currently finishing the last touches of Chimera version 3.X adn I will be sharing with all of you the current set up, agents, commands and instructions to x10 the vibe coding capabilities of your Claude Code agent. This thing never stops to amaze me. Quick pic attached of some tests I have been runing, you can see all teh agents working in harmony. Not long ago I joined a community/course to focus and increase my skills on the consulting part side of the work that we do. As you all know, I'm very comfortable on teh technical side, but I always felt I needed to put more energy on the front end part, to improve my skills for lead generation, client relationships and adquiring new business. I have been learning how to apply methodology used by the Big Four but adjusted to the current times, and learning how to mix the best of both worlds; structure methodology proven effective for over 100 years but adaptinging to the speed and flexibility that AI is bringing to the table. Form this mix a new concept has arraived: Vibe Consulting. A part from my traditioanl techinical builds, I will be also sharing materials, tools adn tips on this subject too, hoping that it will also help you to get mroe business and to have a proper structure in place for reaching out to potential clients, onboarding them, interviewing them and advising them. Also on the personal side, I have recently been laid off my 9-5 job, whicihh means that now I'm 100% full in AI. I will start to be much more active here, adn I will start to do more community activities, like organizing weekly AMA sessions (Ask Me Anything), creating more practical materials and MasterClasses Websinars on specific subjects I think are usefull to share. Bear with me while I get all teh structure in place, but I'm really excited to finally be able to dedicate myself to this 100%.
Exciting things coming!
1 like • 26d
Looking forward to this, @Didac Fernandez And like the others, completely agree with what’s been said.
Chimera Evolution Plan: Migrating to Claude Code Sub-Agents
Chimera architecture aligns remarkably well with what Anthropic has now built natively into Claude Code. Key Differences: What Chimera Has That Sub-Agents Don't (Yet) >Global persistent memory across projects via SQLite database >Cross-project learning and knowledge transfer >Automatic learning extraction and pattern synthesis >User preference tracking and adaptation over time >Complex orchestration with batch execution and parallel workflows What Sub-Agents Provide That Your System Lacks >Native integration with Claude Code's tool ecosystem >Automatic task delegation based on context matching >Separate context windows for each agent (prevents context pollution) >Built-in agent management via /agents command >MCP tool integration and granular permissions >Team sharing capabilities through version control My Migration Strategy: Hybrid Approach Rather than completely replacing Chimera, I will re-build a hybrid evolution that leverages the best of both approaches: Phase 1: Convert Specialist Agents to Sub-Agents format while preserving their memory capabilities. New File Structure: text .claude/├── backend.md # Native sub-agent format │ ├── designer.md # Native sub-agent format │ ├── datasci.md # Native sub-agent format │ ├── qa.md # Native sub-agent format │ ├── secure.md # Native sub-agent format │ ├── devops.md # Native sub-agent format │ └── ... (all specialists) ├── commands/ # Keep for orchestration │ ├── orchestrate.md │ ├── executor.md │ ├── learner.md │ └── memory_init.md Expected Benefits Immediate Gains: - Native tool integration and MCP compatibility - Automatic task delegation reduces manual orchestration - Separate context windows prevent context pollution - Built-in team sharing through .claude/agents/ versioning Long-term Advantages: - Hybrid intelligence combining native efficiency with learned wisdom - Cross-project knowledge transfer with modern delegation - Scalable architecture that grows with Claude Code's evolution - Future-proof design that adapts to new sub-agent capabilities
Chimera Evolution Plan: Migrating to Claude Code Sub-Agents
0 likes • Aug 2
Looking forward to seeing this update and demo when you're ready, @Didac Fernandez !
1-10 of 20
Dan Geller
3
41points to level up
@dan-geller-5877
Creative Director & AI-first Fractional CMO, I coach marketing leaders to leverage Generative AI to amplify their marketing and innovation goals.



Active 2d ago
Joined Apr 28, 2025
Powered by