<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Docuwiz Blog: AI Prompts]]></title><description><![CDATA[Tested prompts to make AI actually useful for writing, editing, and ideation.]]></description><link>https://blog.docuwiz.io/s/ai-prompts</link><image><url>https://substackcdn.com/image/fetch/$s_!et-6!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6f1eb3bb-1c27-4e39-b2e8-e91ca029c5a3_747x747.png</url><title>Docuwiz Blog: AI Prompts</title><link>https://blog.docuwiz.io/s/ai-prompts</link></image><generator>Substack</generator><lastBuildDate>Fri, 03 Apr 2026 22:04:06 GMT</lastBuildDate><atom:link href="https://blog.docuwiz.io/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[APIwiz]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[docuwiz@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[docuwiz@substack.com]]></itunes:email><itunes:name><![CDATA[Wizzy]]></itunes:name></itunes:owner><itunes:author><![CDATA[Wizzy]]></itunes:author><googleplay:owner><![CDATA[docuwiz@substack.com]]></googleplay:owner><googleplay:email><![CDATA[docuwiz@substack.com]]></googleplay:email><googleplay:author><![CDATA[Wizzy]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[[Prompt] – Usability Testing Docs with AI]]></title><description><![CDATA[Publishing docs isn&#8217;t the finish line&#8212;it&#8217;s just the first checkpoint.]]></description><link>https://blog.docuwiz.io/p/prompt-usability-testing-docs-with</link><guid isPermaLink="false">https://blog.docuwiz.io/p/prompt-usability-testing-docs-with</guid><dc:creator><![CDATA[Wizzy]]></dc:creator><pubDate>Wed, 30 Jul 2025 15:53:06 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!et-6!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6f1eb3bb-1c27-4e39-b2e8-e91ca029c5a3_747x747.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>One of the biggest struggles for writers is getting feedback early. Before the docs ever reach real users.</p><p>While this isn&#8217;t a replacement for testing with actual users, it can help catch usability issues, fill knowledge gaps, and tighten the flow of your documentation.</p><p>Most teams never get structured feedback, so the same issues keep slipping through:</p><ul><li><p>Did users find what they needed?</p></li><li><p>Where did they get stuck?</p></li><li><p>What&#8217;s still unclear?</p></li></ul><p>&#128073; Here&#8217;s how to break that cycle:</p><ol><li><p>Pick a persona (junior dev, senior dev, non-technical user).</p></li><li><p>Drop your docs into an LLM with a real-world task.</p></li><li><p>Watch where it hesitates, backtracks, or makes assumptions.</p></li><li><p>Fix those friction points before customers ever see them.</p></li></ol><p>Try this prompt to simulate a real-world read-through:</p><pre><code><code>Act as a {Persona} trying to use shared documentation to complete a task. Your goal is to behave like a real person.

Tell us if any parts:
- Felt too simple or overly guided
- Were vague, too basic, or missing critical details
- Could be improved to make the instructions easier to follow
- Required external help to complete the task

Be specific and share your suggestions in a structured manner
</code></code></pre><div><hr></div><h2>Persona Templates</h2><p><a href="https://github.com/theletterf/impersonaid/tree/main/personas">Fabrizio Ferri uses YAML files</a> to define detailed tendencies for each persona in his tool "Impersonaid."</p><p>Here are three examples you can start with from the repo:</p><h4><code>01 Non_Technical_User</code></h4><pre><code><code>name: Non-technical user
description: A business user with limited technical knowledge who needs to understand and use a technical product.
expertise:
  technical: Novice
  domain: Moderate (in their business area)
  tools: Familiar with basic office software only
background:
  education: Business degree or equivalent
  experience: Several years in business operations, no technical experience
traits:
  patience: Low with technical concepts
  attention_to_detail: High for business impacts
  learning_style: Prefers visual guides and business-focused explanations
goals:
  - Understand how to use the product without technical details
  - Learn business benefits and use cases
  - Find quick start guides without jargon
preferences:
  documentation_style: Simple with screenshots and business examples
  communication: Non-technical language with business terminology
</code></code></pre><h4><code>02 Expert_Developer</code></h4><pre><code><code>name: Expert developer
description: A senior developer with extensive experience in software development and technical documentation.
expertise:
  technical: Advanced
  domain: Expert
  tools: Proficient with a wide range of development tools and frameworks
background:
  education: Computer Science degree or equivalent
  experience: 10+ years of professional software development
traits:
  patience: Moderate
  attention_to_detail: High
  learning_style: Prefers comprehensive technical documentation with deep dives
goals:
  - Quickly understand system architecture
  - Find edge cases and limitations
  - Evaluate technical accuracy and completeness
preferences:
  documentation_style: Detailed with technical specifications
  communication: Precise technical language with proper terminology
</code></code></pre><h4><code>03 Beginner_Developer</code></h4><pre><code><code>name: Beginner developer
description: A junior developer who is new to programming and the technology stack.
expertise:
  technical: Beginner
  domain: Limited
  tools: Basic understanding of development tools
background:
  education: Computer Science student or bootcamp graduate
  experience: Less than 2 year of professional experience
traits:
  patience: Low
  attention_to_detail: Moderate
  learning_style: Prefers step-by-step tutorials with examples
goals:
  - Understand basic concepts quickly
  - Find practical examples to learn from
  - Avoid complex technical jargon
preferences:
  documentation_style: Visual with clear examples
  communication: Simple and direct explanations
</code></code></pre><div><hr></div><h2>Instructions to Use</h2><ol><li><p>Choose a persona YAML file based on your target user.</p></li><li><p>Load your documentation and task into your preferred LLM.</p></li><li><p>Paste the prompt above, replacing <code>{Persona}</code> with the persona name.</p></li><li><p>Review the LLM&#8217;s feedback and look for signs of friction, confusion, or missing detail.</p></li><li><p>Apply fixes, and repeat as needed.</p></li></ol><div><hr></div><p><strong>Important Note: AI as Your Co-pilot</strong></p><blockquote><p>AI is a powerful assistant, a "co-pilot," but it is not a replacement for human expertise, critical thinking, or oversight. Always review, refine, and fact-check AI-generated content. Your understanding of the project, audience, and technical accuracy remains paramount. Use AI to automate repetitive tasks, ensure consistency, and generate initial drafts, freeing you to focus on strategic planning and complex problem-solving.</p></blockquote>]]></content:encoded></item><item><title><![CDATA[[Prompt] – Evaluating Doc Structure Using IA Models]]></title><description><![CDATA[Information Architecture (IA) is the strategic organization, labeling, and structuring of content to help users efficiently find, understand, and navigate documentation]]></description><link>https://blog.docuwiz.io/p/prompt-evaluating-doc-structure-using</link><guid isPermaLink="false">https://blog.docuwiz.io/p/prompt-evaluating-doc-structure-using</guid><dc:creator><![CDATA[Wizzy]]></dc:creator><pubDate>Wed, 23 Jul 2025 13:46:21 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!et-6!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6f1eb3bb-1c27-4e39-b2e8-e91ca029c5a3_747x747.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Choosing the right IA model ensures that content is easy to navigate and tailored to the user&#8217;s needs. Each IA model supports a different way of organizing documentation, depending on what users need to achieve and how they interact with content.</p><h4><strong>Hierarchical (Top-Down) Organization</strong></h4><p><strong>Structure:</strong><br>This model arranges information from general to specific. Think of it like a tree: broad topics (like &#8220;Getting Started&#8221;) sit at the top, and more detailed topics (like &#8220;Installing the API Client&#8221; or &#8220;Configuring Settings&#8221;) branch off beneath them. It&#8217;s ideal when content builds on foundational knowledge or when users need an overview before diving deeper.</p><p><strong>Best for:</strong><br>Large documentation sets with clear parent-child relationships or nested categories.</p><h4><strong>Task-Based Organization</strong></h4><p><strong>Structure:</strong><br>Content is grouped based on what users are trying to do. Each section focuses on a specific action or goal, such as &#8220;Set Up Your Environment&#8221; or &#8220;Retrieve User Data.&#8221; This approach works like a checklist, guiding users through common tasks with clear, step-by-step instructions.</p><p><strong>Best for:</strong><br>User guides, tutorials, onboarding flows, and documentation meant to support specific workflows.</p><h4><strong>Role-Based Organization</strong></h4><p><strong>Structure:</strong><br>Documentation is segmented by user type or persona. For example, separate sections might exist for Developers, Admins, Analysts, or End Users. Each role has access to content relevant to their responsibilities, reducing confusion and streamlining the reading experience.</p><p><strong>Best for:</strong><br>Products used by multiple audiences with distinct responsibilities and goals.</p><h4><strong>Feature-Based Organization</strong></h4><p><strong>Structure:</strong><br>Information is grouped according to the product&#8217;s individual features or modules. Each section covers one feature in detail&#8212;like &#8220;Authentication,&#8221; &#8220;Notifications,&#8221; or &#8220;Analytics.&#8221; This allows users to dive directly into the areas most relevant to them without sifting through unrelated content.</p><p><strong>Best for:</strong><br>Feature-rich or modular platforms where users often focus on one capability at a time.</p><h4><strong>Process/Procedure-Based Organization</strong></h4><p><strong>Structure:</strong><br>Content is laid out in the order a user would follow to complete a specific process. It&#8217;s like a recipe: Step 1, Step 2, Step 3. Each step builds on the last, helping users move through a sequence without missing critical actions.</p><p><strong>Best for:</strong><br>Install guides, setup flows, end-to-end tutorials, and workflows that require a linear progression.</p><h1><strong>Prompt</strong></h1><pre><code>Act as an expert in technical documentation and information architecture. Analyze the following list of documentation topics/pages for optimal structuring. Your goal is to design an intuitive and effective documentation layout for a target audience of [insert target audience, e.g., new developers].

Perform the following tasks:
1. Recommend the most appropriate organizational model &#8212; choose from: Hierarchical, Task-Based, Role-Based, Feature-Based, or Process-Based &#8212; and justify your choice based on the needs of the target audience.
2. Propose a logical grouping and hierarchy of the documentation topics using clear and relevant section titles.
3. Suggest interlinking strategies to enhance content discoverability, navigation, and user flow.

[Insert Documentation Topics Here]</code></pre><h2>How to use </h2><ol><li><p><strong>Define the Target Audience</strong><br>Replace <code>[insert target audience, e.g., new developers]</code> with a specific audience type, such as:</p><ul><li><p>"internal DevOps engineers"</p></li><li><p>"enterprise customers with limited technical background"</p></li><li><p>"first-time API users"</p></li></ul></li><li><p><strong>Insert Your Topics</strong><br>Replace <code>[Insert Documentation Topics Here]</code> with your own list of documentation topics or pages. Each item should be a concise topic title (e.g., "Getting Started", "Creating a Webhook", "Monitoring API Errors").</p></li><li><p><strong>Submit the Prompt to ChatGPT (or your preferred LLM)</strong><br>Paste the final, filled-in prompt into the prompt window and run the query. You&#8217;ll receive:</p><ul><li><p>A suggested documentation structure</p></li><li><p>A recommended organizational model and its justification</p></li><li><p>Interlinking strategies to improve UX/navigation</p></li></ul></li></ol><div><hr></div><p><strong>Important Note: AI as Your Co-pilot</strong></p><blockquote><p>AI is a powerful assistant, a "co-pilot," but it is not a replacement for human expertise, critical thinking, or oversight. Always review, refine, and fact-check AI-generated content. Your understanding of the project, audience, and technical accuracy remains paramount. Use AI to automate repetitive tasks, ensure consistency, and generate initial drafts, freeing you to focus on strategic planning and complex problem-solving.</p></blockquote>]]></content:encoded></item><item><title><![CDATA[ [Prompt] - Evaluating Drafts based on Clarity, Conciseness, and Consistency]]></title><description><![CDATA[Creating effective engineering documentation relies on several foundational principles that guide content creation and organization.]]></description><link>https://blog.docuwiz.io/p/prompt-evaluating-drafts-based-on</link><guid isPermaLink="false">https://blog.docuwiz.io/p/prompt-evaluating-drafts-based-on</guid><dc:creator><![CDATA[Wizzy]]></dc:creator><pubDate>Wed, 23 Jul 2025 13:27:38 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!et-6!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6f1eb3bb-1c27-4e39-b2e8-e91ca029c5a3_747x747.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Creating effective engineering documentation relies on several foundational principles that guide content creation and organization. Adhering to these principles ensures that documentation is not only accurate but also highly usable and impactful.</p><h3><strong>Understanding Your Audience and Purpose</strong></h3><p>Before any documentation is drafted, a clear understanding of its purpose and intended audience is paramount. The purpose can vary widely, from explaining a complex system to new team members, providing detailed instructions for equipment maintenance, or outlining critical safety procedures. The audience, in turn, dictates the language, level of detail, and specific content that should be included.</p><h3><strong>Clarity, Conciseness, and Consistency</strong></h3><p>These three principles are synergistic, forming the bedrock of high-quality technical writing.</p><ul><li><p><strong>Clarity:</strong> Documentation must be easy to understand. This involves using simple, plain language and avoiding unnecessary jargon unless it is clearly defined within the document. Complex information should be broken down into smaller, digestible chunks, often utilizing headings, subheadings, and bullet points. Employing active voice makes sentences more concise and direct, enhancing readability.</p></li><li><p><strong>Conciseness:</strong> Get straight to the point. Eliminate superfluous words and redundancies, and use bullet points or lists to facilitate quick scanning and focus on essential details. Keeping paragraphs to four to six lines and sentences to 10-20 words significantly improves readability.</p></li><li><p><strong>Consistency:</strong> Maintain a uniform tone, writing style, formatting (such as fonts, headings, and bullet points), and standardized terminology throughout the document and across the entire documentation suite. Leveraging established guides like Google's developer documentation style guide or the Microsoft Writing Style Guide is recommended.</p><h2><strong>Prompt</strong></h2><pre><code>You are an expert technical editor. Review the following documentation draft with a focus on clarity, conciseness, and consistency. Provide specific, actionable feedback in each category.

1. Clarity
- Identify any undefined jargon, ambiguous language, or overly complex sentences.
- Suggest simpler alternatives or improved structure for better understanding.

2. Conciseness
- Highlight redundant phrases, wordy constructions, or overly long paragraphs.
- Recommend where bullet points or lists can be used to streamline information.
- Suggest revisions to shorten or tighten the content without losing meaning.

3. Consistency
- Check for inconsistent tone, formatting (e.g., headings, bullets), or terminology.
- Focus especially on consistent use of key terms like [specific terms comma separated]
- Point out formatting mismatches or terminological drift, and propose standardized alternatives.

Documentation Draft:
[Paste your documentation draft here]
</code></pre><h2>How to use</h2><ul><li><p>Replace <strong>[specific terms] </strong>with important terms from your documentation (e.g., product names, feature terms, or domain-specific vocabulary).</p></li><li><p>Paste your draft content where indicated.</p></li><li><p>Run the full prompt in ChatGPT or your preferred LLM to receive a structured editorial review based on clarity, conciseness, and consistency.</p></li><li><p>Ideal for refining technical documentation, user guides, knowledge base articles, and internal docs.</p></li></ul><div><hr></div><p><strong><br>Important Note: AI as Your Co-pilot</strong></p></li></ul><blockquote><p>AI is a powerful assistant, a "co-pilot," but it is not a replacement for human expertise, critical thinking, or oversight. Always review, refine, and fact-check AI-generated content. Your understanding of the project, audience, and technical accuracy remains paramount. Use AI to automate repetitive tasks, ensure consistency, and generate initial drafts, freeing you to focus on strategic planning and complex problem-solving.</p></blockquote>]]></content:encoded></item></channel></rss>