element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Artificial Intelligence and Machine Learning
  • Technologies
  • More
Artificial Intelligence and Machine Learning
Forum Which AI tool do you use for documentation?
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Artificial Intelligence and Machine Learning to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 26 replies
  • Subscribers 94 subscribers
  • Views 777 views
  • Users 0 members are here
  • artificial intelligence
Related

Which AI tool do you use for documentation?

prajaktaa
prajaktaa 26 days ago

I am curious to know that which AI tool the community members are using to create or improve technical documentation.

Whether it is for the project documentation, API documentation any troubleshooting guides, or internal knowledge base articles, AI has become a helpful assistant for many professionals.

Some popular options include ChatGPT, Claude, Gemini, GitHub Copilot, Microsoft Copilot, and Perplexity, but each has its own strengths and limitations.

My questions are:

  • Which AI tool is easy to use for documentation?
  • What type of documentation do you create with it?
  • What do you like most about the tool?
  • Have you found any limitations or challenges?
  • Do you rely on AI-generated content as-is, or do you always review and edit it before publishing?

I'd love to hear about your workflow, practical experiences, and any tips or best practices you've discovered.

  • Sign in to reply
  • Cancel
Parents
  • shabaz
    shabaz 3 days ago

    Anyone tried Mermaid? It's an online diagram-drawing tool that accepts text-based input. I mention it because AI can be prompted to generate Mermaid output. Might not be correct always, but it can be useful to get an idea about a body of code that one might be new to.

    Example screenshot, where the red box is my microcontroller. 

    image

    To do this was quite simple:

    1. Install AntiGravity CLI (or use whatever AI you wish; AntiGravity is the consumer way of accessing the functionality in Google Gemini).

    2. I used Windows PowerShell. I went to the folder where my body of code was, and ran AntiGravity (by typing agy) and then just explained in text what I wanted: 

    image

    If you were say using ChatGPT you could have uploaded the files, or perhaps simply provided the URL if the code was on GitHub, and so on.

    3. The output was a file called ARCHITECTURE_DIAGRAMS.md 

    4. I copy-pasted the diagram from the .md file into the Mermaid website.

    I can use the diagram to refresh myself about how the code is architected. 

    Personally I like drawing my own diagrams because I prefer reducing them for as much simplicity as I can manage, but it is still useful for a quick reference. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • BigG
    BigG 3 days ago in reply to shabaz

    Yep, I tried it although I believe the free option is a time limited trial. Pain.

    I found https://sequencediagram.org/ to be very handy and works well with AI tools like Gemini/AntiGravity. I just tell it to review my code base and create a sequencediagram script of the sequence process and it does it. Then you just copy the script into the website and out pops a diagram which you can view/download. Very useful.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • BigG
    BigG 3 days ago in reply to shabaz

    Yep, I tried it although I believe the free option is a time limited trial. Pain.

    I found https://sequencediagram.org/ to be very handy and works well with AI tools like Gemini/AntiGravity. I just tell it to review my code base and create a sequencediagram script of the sequence process and it does it. Then you just copy the script into the website and out pops a diagram which you can view/download. Very useful.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • shabaz
    shabaz 3 days ago in reply to BigG

    It's free (open source) so the diagram source should always be usable if the site disappears. But I am interested in other options always, I would prefer more design control personally (I am quite picky about positioning of each element, etc!) hence I mostly (ab)use PowerPoint, but that's not efficient use of time.

    A shortcut I've used a few times for reverse documentation: run all the test cases, capture the log output, and then run that through a parser to generate such ping-pong/message sequence diagrams, and use that as documentation : ) That's only possible if the logging has enough information in it of course.

    For one project that was so useful, a customer saw me using the parser tool to troubleshoot their setup, and wanted it; so from then on we packaged it with the system, and the customer could turn on logging, and run the tool, and easily see what was going on (the diagram showed external inputs arriving into the system, then the few key functions that were executed internally to ripple through to state changes or a response back out, so they could easily see if things were abnormal or not). It was quite handy to see if things were overloaded (e.g. loads of incoming events) or weird state machine changes, etc. This was for the more tech-oriented users (the more normal way was to use third party tools to monitor the entire solution at once, not just one device).

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube