Season 2 · Episode 13

Your Signature AI-Assisted Project

Episode 13 moves from learning about AI to proving what you can do with it. Use this companion page to listen, watch, read and understand the idea behind a signature AI-assisted project before moving into the full Learning Lab experience.

Listen or download wherever you prefer.

You can also follow Zero to AI on the major podcast platforms and download episodes for later.

What this episode is about

Episode 13 of Zero to AI is about turning AI use into visible professional evidence. The focus is not on trying one more prompt or collecting another tool. It is about choosing one real piece of work and shaping it into something you can explain in a review, interview, proposal or client conversation.

The main Learning Lab version of this episode helps you build a Signature AI-Assisted Project Plan. This classic version gives you the simpler listen-and-read path, using the same core ideas without the interactive fields, saved progress or asset builder.

The episode’s core goal is practical: help you move from “I can use AI” to “here is a real project where AI helped me create value, and here is the evidence.”

You can use AI. Now prove it with something real.

Why a signature project matters

A signature AI-assisted project is more than a practice exercise. It is a real deliverable for a real stakeholder, completed with AI support and documented so the value can be understood later.

This matters because vague AI confidence is hard to explain. A finished project is easier to show. It can demonstrate the problem you worked on, the workflow you used, the tools that helped, the judgement you applied and the result you produced.

For experienced professionals, this is where AI learning becomes more credible. The evidence is not the prompt. The evidence is the useful thing you create and the thinking behind it.

Watch the four-tool workflow

The suggested workflow is simple: research with Perplexity, analyse with Claude, draft with ChatGPT, then refine with the best tool for accuracy, tone and quality.

The tools are not the point on their own. The point is that each tool can play a role in a larger professional workflow, as long as you stay responsible for the judgement, interpretation and final quality.

Choose a project that can prove value

A good signature project should be real enough to matter and contained enough to complete. It does not need to be enormous, but it should not be a tiny prompt experiment either.

Criterion 1 Real stakeholder

Pick someone whose opinion matters to your work, such as a manager, client, team, customer group, board, committee or professional audience.

Criterion 2 Substantial work

Choose a task that would normally take meaningful manual effort without AI, ideally days or weeks rather than a few minutes.

Criterion 3 Explainable AI contribution

Make sure you can explain what AI made possible, where it saved effort and where it improved the output.

Criterion 4 Documented evidence

Capture the before state, after state, workflow and outcome so the project becomes a case study rather than a memory.

Critical pitfall: completing the project but not documenting it. The evidence evaporates quickly, so write the before-and-after case study while the work is still fresh.

The project plan structure

The full Learning Lab turns these areas into a guided project plan. In this classic view, use them as a simple checklist for thinking through the project before you build it.

Project title

Give the project a clear name that sounds like a real work initiative, not a vague experiment.

Professional context

Describe where the project sits in your work, role, business, client work or professional development.

Problem or opportunity

Identify the specific work problem, opportunity or improvement area the project is responding to.

Who this matters to

Name the person or group who benefits if the project works.

AI workflow

Describe how AI will help, including the sequence of steps rather than just the tool names.

Tools used

List the AI and non-AI tools involved, especially where different tools play different roles.

Show what changed

The strongest project evidence does not pretend AI did everything. It shows where AI helped and where your professional judgement remained essential.

That means you need to show the before state, the after state, the human judgement required, any risks or limitations and what the project taught you about applying AI to real work.

Before What did the work look like before?

Capture the manual effort, friction, delay, uncertainty or quality issue that existed before the project.

After What should be better?

Describe the improvement you are aiming for, such as speed, clarity, quality, consistency or stakeholder value.

Judgement Where do you still need to decide?

Identify the places where you still need to check, interpret, validate, edit or take responsibility.

Evidence How will you know it helped?

Use before-and-after examples, time saved, stakeholder response, quality improvement or a clearer decision.

Suggested project-shaping prompt

You can use this as a simple conversation starter with your preferred AI assistant. It is included here as static guidance only. The full Learning Lab gives you a more structured guided build.

Act as a practical AI project coach for an experienced professional. Help me turn this idea into a signature AI-assisted project that can become credible career evidence. Ask me for the stakeholder, deliverable, problem or need, normal production time, AI-assisted production time, AI tool allocation, before state, after state, human judgement required, evidence of value, stakeholder response, risks and next action. Keep the project realistic, explainable and suitable for a performance review, interview, proposal or client conversation.

Practical reflection

This episode is about creating evidence, not just completing an exercise. The value comes from choosing a real project, running it properly and documenting what changed.

What is one real piece of work you could turn into credible evidence of AI-assisted capability over the next few weeks?

Where to go next

This page is the classic companion version of Episode 13. It is useful if you want to listen, watch and read without using the interactive Learning Lab. When you are ready to build the actual project plan, move into the full Learning Lab version.

You can also return to the Learning Journey, browse the Zero to AI blog, or use the Start Here page to understand the wider approach.

This is the classic companion view.

The main Episode 13 Learning Lab remains the place for guided responses, local saving, progress tracking and the final takeaway asset. This page is intentionally simpler, so people who prefer the previous podcast/article format can still listen and read without entering the interactive Lab flow.

To use the full guided experience, visit the Learning Labs page.

Classic view Listen, watch and read without saved-progress functionality.

Ready to turn the idea into evidence?

Move from the classic companion page into the full Episode 13 Learning Lab when you want to create the actual project plan and use it as a practical takeaway asset.

' + ''; }fields.forEach(function (field) { field.addEventListener('input', function () { saveField(field); renderAsset(); updateProgress(); showToast('Saved'); });field.addEventListener('change', function () { saveField(field); renderAsset(); updateProgress(); }); });pathwayInputs.forEach(function (input) { input.addEventListener('change', function () { setPathway(input.value, true); }); });pathwayButtons.forEach(function (button) { button.addEventListener('click', function () { setPathway(button.getAttribute('data-pathway-choice'), true); }); });const copyPromptButton = lab.querySelector('#z2ai-copy-prompt'); const promptText = lab.querySelector('#z2ai-prompt-text');if (copyPromptButton && promptText) { copyPromptButton.addEventListener('click', function () { copyText(promptText.textContent.trim(), 'Prompt copied', 'Copy failed', showToast); }); }const copyAssetButton = lab.querySelector('#z2ai-copy-asset');if (copyAssetButton) { copyAssetButton.addEventListener('click', function () { copyText(getAssetText(), 'Asset copied', 'Copy failed', showToast); }); }const printAssetButton = lab.querySelector('#z2ai-print-asset');if (printAssetButton) { printAssetButton.addEventListener('click', function (event) { event.preventDefault();renderAsset();const printWindow = window.open('', '_blank', 'width=900,height=1100');if (!printWindow) { showToast('Print window blocked'); return; }printWindow.document.open(); printWindow.document.write(buildPrintHtml()); printWindow.document.close(); printWindow.focus();window.setTimeout(function () { printWindow.print(); }, 350); }); }const clearLabButton = lab.querySelector('#z2ai-clear-lab');if (clearLabButton) { clearLabButton.addEventListener('click', function () { const confirmed = window.confirm('Clear the saved responses for this Learning Lab in this browser?'); if (!confirmed) return;window.localStorage.removeItem(storageKey);fields.forEach(function (field) { field.value = ''; });setPathway('minimum', false); renderAsset(); updateProgress(); showToast('Responses cleared'); }); }restoreState(); }labs.forEach(initLab); })();