top | item 44588543

(no title)

mjsweet | 7 months ago

Wordpress is dead.

I officially logged into Wordpress for the last time six weeks ago.

I’m currently migrating a bunch of my sites over to Next.JS.

Claude has vibed the best SEO, E.E.A.T., CRO (CXL best practice), WCAG 2.0, and schema.org compared to any site I’ve ever built in Wordpress.

The audits OPUS was creating for each of these areas are astonishing.

I’m simply migrating them across to Next.JS and hosting them on Netlify.

I haven’t paid for any premium plugins to get these sites up and running; I just used Claude Max 100.

I won’t be renewing the AUD$3500 in Wordpress ecosystem subscriptions after they run out this year.

For my gardening business (I’m now a professional gardener), I’ve integrated a job route scheduling tool with Claude Code. This tool calculates travel times between my gardening jobs and provides basic CRM functionality for my clients. It uses the Google Distance Matrix API, and my week is laid out like a Kanban board.

For my new gardening website, I’ve created dozens of new service pages over the last ten days. I’ve also created a local admin dashboard that ingests my 1200 or so before and after pictures. This dashboard provides a neat interface to match before and after “pairs,” extracts the EXIF data, calculates the suburb, and allows me to tag by job type. It then moves the photos (stripped of EXIF) into the Next.JS public folder with AVIF and WebP versions and a JSON file that specifies their content.

Claude then uses the JSON to build custom gallery components for each service page.

None of this was conceivable for me two months ago.

I’m primarily building static JamStack sites that are secure.

Is Wordpress secure? I don’t think so.

I’ve done many months of work in the last twenty-one days.

Have I saved myself $50k by doing all this with Claude Code? No, because that was never an option previously.

I understand your concerns about false confidence, and I genuinely respect that perspective. I backed out of Firebase Studio a while ago because I lacked confidence in Gemini’s ability to create safe and functional Firebase rules.

However, the landscape is changing, and the new interface for CMS systems will no longer be the traditional wp-admin. Instead, it will be a user-friendly chat agent with a robust system prompt for building websites, forms, basic workflow rules, business logic, and authentication.

Although I’m not a programmer, I have experience as a digital producer, which has given me a good understanding of toolchains.

If I were a startup envisioning the next generation of CMS, I would be actively working on it and developing it as quickly as possible.

discuss

order

lil-lugger|7 months ago

I've built a CMS with Claude Code aswell and its working incredibly to create JSON proposals that my sveltekit website reads and turns into beautiful proposal pages. When a customer creates a booking for my mini-golf hire company they get emailed and they get their own booking hub where they can update their booking details, see the proposal when it comes through see any invoices ect. The best part is and what i'm so excited about is we have created a daily business script 'npm run daily' that Claude Code runs and the script uses the business logic to move bookings along in the cycle by telling Claude Code what bookings have tasks. It will return, you have 3 bookings that need attention, run 'npm run get-booking [booking shortcode] THEN that script returns ALL data for that booking row from the db and it knows what task is needed to be done so Claude Code has all the context for that booking and it's prompted at the end saying NEXT STEP Claude code run 'npm run generate-proposal [shortcode] JSON output. (there was an example json output in there for claude to know the syntax ) Everything goes to an out tray in the admin web ui that i have to manually approve. I'm still in testing but I'm starting to realise that Claude Code can be an agentic platform for apps run from the CLI, like my automated crm assistant we've built.

mjsweet|7 months ago

Just fantastic! You know you can setup GitHub Actions to move things along? I have made a few. I also installed Claude Code agent in the git hub repository. Then if I want to make changes to the site when I’m out and about I just raise an issue and ask @claude to do something. Also, I have been using Netlify functions to do quite a few different things as well, like sending SMS messages when a form is completed. Also the paid version of Netlify allows background functions that can run too.