Workspace Tools
The Kodeezly workspace is more than the AI chat editor. The header and its More menu give you a full set of tools to inspect, refine, configure, and ship your app.
Open any project to reach these tools from the workspace header and the More menu. Each one works on the real files on disk, so anything you change here is reflected in your build and in follow-up prompts.
Visual editor
The visual editor lets you tweak your app directly in the live preview without writing code.
- Click any element in the live preview to select it.
- Edit its text or styles inline, right where it appears.
- Changes persist to the real files, so they survive reloads and stay in sync with the AI editor.
It is the fastest way to make small copy and styling adjustments without describing them in a prompt.
Audits
Audits run one-click expert reviews of your app and return an impact-ranked, plain-language list of findings you can act on. Available reviews include:
- Accessibility — checks against common a11y issues.
- SEO — flags missing metadata and discoverability problems.
- Performance — surfaces things that slow your app down.
- Security — highlights risky patterns and exposures.
- Code quality — points out maintainability concerns.
Findings are ranked by impact and written in plain language, so you know what to fix first and why it matters.
Roadmap
Roadmap gives your app a plan to work through instead of a pile of one-off prompts.
- Track initiatives and milestones for the app in one place.
- Status on every item shows what is planned, in progress, and done.
- The build has a plan to follow, keeping larger efforts organized.
Personalize
Personalize lets you save standing instructions for the AI so you do not have to repeat your preferences in every prompt. Instructions apply at two scopes:
- Personal scope — applies to all of your apps.
- App scope — applies only to this app.
Saved instructions are applied automatically whenever Kodeezly generates.
Versions & rollback
Versions is a visual version history of your app so you can move forward confidently and undo when needed.
- Every build is checkpointed automatically.
- Visual history lets you browse previous versions at a glance.
- Restore or roll back to any previous version in a click.
Terminal
The terminal gives you a real shell inside your project for running commands directly.
- A real shell scoped to your project files.
- A shell picker lets you choose bash, zsh, fish, or sh when you open a new terminal.
Variables
Variables let you add encrypted per-project secrets and environment variables, such as API keys for Stripe, Resend, and AI providers. They are stored encrypted at rest and made available to your app at runtime.
STRIPE_SECRET_KEY=sk_live_...
RESEND_API_KEY=re_...
ANTHROPIC_API_KEY=sk-ant-...For how your app reads these values and connects to external services, see the Backend & SDK guide.
Ship an installable app (PWA)
You can publish your app as a Progressive Web App so users can install it like a native app.
- A web manifest describes your app to the device.
- A service worker enables installation and offline support.
- Users can install it to their home screen and use it offline.
PWA output turns your published app into something people can keep on their device, no app store required.
Free utilities
Kodeezly hosts a set of free developer micro-tools that need no account. They are handy while you build, including:
- JSON formatter — prettify and validate JSON.
- Base64 encode/decode — convert text to and from Base64.
- JWT decoder — inspect the contents of a token.
Browse the full set anytime at /utilities — no sign-in required.