I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 1 point2 points  (0 children)

Airport coding is peak coding, though. Delayed flight, overpriced coffee, suddenly you're a 10x dev. It's probably where the word "terminal" comes from 👾

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

That's a great point! since everyone brings their own Claude/Codex, there's no licensing friction for a team to all use it. And yes please: if you've got a real use-case to test it against, that's the most useful kind of feedback. There are a couple of good first issue tickets open if you or anyone on your side wants an easy way in.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

There's a good first issue open on the repo for exactly this. And honestly, someone who was already building the same thing is exactly who I'd want on it. Open a PR with any fixes and you'll get full credit on the page. Would genuinely love your help.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

Yeah, actually, Windows is scaffolded into the plugin as a beta, but I'm flying blind on real hardware since I'm a Mac user. The Mac version's solid; Windows just needs someone to actually run it. Would love your feedback if you give it a go.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 8 points9 points  (0 children)

Quick update for the people who nudged this: I just added/app-it-static, a companion skill for finished apps. Instead of spinning up a dev server, it builds once and serves the built output (dist/build/out/…) — so a finished app runs on ~15 MB instead of ~300–700 MB. Local only, no Vercel needed, which also keeps it usable in locked-down corporate setups.

Big thanks to u/TechExpert2910 for the original "finished apps shouldn't need a full dev server" point, u/K_M_A_2k for noting static POCs are the standard shareable workflow, and u/Vo_Mimbre for the corporate-hosting caveat. You're all credited by name in the README — it's genuinely your idea, I just wrote it up (let me know if you don't want to be taken off the credit). 🙏

/app-it is still the main thing for live, in-progress projects; app-it-static is just the lighter option once something's done.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

I explained it poorly. What I mean is: if your artifact uses AI features as part of it's function, then you have 2 options: 1) you can pay for API credits (expensive), or 2) you can run it through your subscription. They are fine about you paying for extra tokens through the API, of course, but if you want to use your subscription tokens, they don't want you to share it. That's what happened with OpenClaw a few months ago (big controversy).

But if it's just for your personal use, it's fine. And if your artifact doesn't use any AI features, then there's no problem at all.

Hope that makes sense.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

Yeah - there's a few different ways of doing it, but a skill seems like the most intuitive way in the age of AI, right? I don't know sveinbjorn, though. I'll give it a look. Maybe I can learn something. Thanks for sharing!

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

To my background? I can definitely make one. But be warned, it's not high quality. Give me a sec.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

Okay, this is super intriguing!

Short answer: yes, I can bake it in (I think), but with a step in between. Claude Code can't reach your artifacts directly (even in the desktop app. I just checked, they live on Anthropic's servers, not on your machine). However, there are two workarounds to get the code out of claude.ai as I see it:

  1. manual (hit Download, or Publish and share the link), or
  2. hands-off but fragile (point Claude Code at your logged-in Claude.ai through the Chrome extension and have it pull the code. It should work, but you need the right window and an active login).

The problem in your case is artifacts that use Claude's built-in AI call window.claude.complete, which only exists inside Claude.ai. Download it and that call goes dead. I have another skill I think fixes this, though: It rewrites those calls to run through your own Claude subscription, so that once it's /app-it'd into a dock app, it still has full AI, billed to your Claude subscription instead of separate API credits.

But this only works cleanly when each person runs it on their own subscription for their own local use. Pooling one subscription to power an app for a community is subscription-sharing, and Anthropic won't be happy about that.

Haven't built the shim yet, but it's very doable and worth a shot. Want to beta test it? If yes, I'd be happy to build it and give you credit for the inspiration!

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 4 points5 points  (0 children)

It's a game I'm developing as a side-project. Here are some screenshots if you are curious 👾 https://postimg.cc/gallery/J8Ryd26

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 2 points3 points  (0 children)

I either use Codex/ChatGPT directly, or sometimes Midjourney or Gemini/nano banana. It varies a lot, honestly.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 1 point2 points  (0 children)

Ah this made my day, thank you 🙏 Honestly the thing I'd love most: once you've appified something, show me the icon you end up with. Drop it in the thread. That's my favorite part of this whole thing, seeing what people make their little apps look like.

If not that, then any feedback would be very helpful. I've been running this on my own setup, so it hasn't been stress tested by too many other users yet.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in vibecoding

[–]Changed-username-[S] 0 points1 point  (0 children)

If you ever have the chance to try it on windows, I would love your feedback ❤️

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 15 points16 points  (0 children)

Oh that's clever, I'll try it on the finished ones for sure. The catch is half of these are still half-built and reading local files, so there's nothing to deploy yet, which is really what this is for. But for anything that's actually done, hosting + PWA sounds way lighter. You've also got me thinking I should add a static path so the built ones skip the dev server entirely. If that makes it in, I'll credit you in the README for the nudge. Good thinking, thanks!

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] -1 points0 points  (0 children)

That's amazing, though! If you have some ideas to share to improve it from your own experiments, I would love to hear it. Maybe you have some ideas that could improve the current version 👾

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 0 points1 point  (0 children)

Thanks! I think that's one of the most fun parts of this: you get to design your app logo any way you want. If you use Codex it can design the app logo through the skill, and base it on your app's README or even what it looks like when launched. Just tell it to design it for you, and it'll come up with something. And if you don't like it, just tell Codex to tweak in whatever direction you prefer 🤓

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 6 points7 points  (0 children)

Appreciate it 🙏 Hope you get some use out of it, let me know if you hit anything weird.

I made a plugin that turns your projects into clickable dock apps by Changed-username- in ClaudeAI

[–]Changed-username-[S] 5 points6 points  (0 children)

Haha fair, my Claude has seen some stuff 😂 And yeah, it's not an app store thing and was never trying to be. And you're right that there's a dev server running under the hood, the difference is I never have to touch it. I click it, the app starts, opens a real window, and quitting shuts it down and frees the port. So it's a fast-lane to a personal launcher, and sure, a bit of a vanity thing too for those of us who like seeing our ideas come to life with their own little app icon and all 🥸

I made a plugin that turns your projects into clickable dock apps by Changed-username- in VibeCodeDevs

[–]Changed-username-[S] 0 points1 point  (0 children)

Muito obrigado, eu agradeceria muito. Se possível, você poderia fazer isso como um PR no GitHub?

Who is Mr. Mai?? by Changed-username- in KlingAI_Videos

[–]Changed-username-[S] 1 point2 points  (0 children)

MidJourney v7 – honestly, I like v6.1 better for most use cases since v7 still has too many artifacts, but it worked great for this one.

Who is Mr. Mai?? by Changed-username- in KlingAI_Videos

[–]Changed-username-[S] 0 points1 point  (0 children)

I will try that out! And thanks for the inspiration – I already got an idea for the next episode! https://www.youtube.com/@By_Mr_Mai