Skip to main content

Documentation Index

Fetch the complete documentation index at: https://askui-docs-streamline-documentation.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Two Formats

Natural Language

Plain text instructions. Best for interactive development.

CSV Format

Structured test cases. Best for test automation.

Quick Comparison

Natural Language:
agent.act("""
    Open Chrome
    Go to github.com
    Click "Sign in"
    Enter credentials
""")
CSV:
Step,Action,Expected Result
1,Open Chrome and navigate to github.com,GitHub loads
2,Click "Sign in",Login page appears
3,Enter credentials and submit,Dashboard loads

Guidelines

  • Be specific: “Click the blue Submit button” > “Click submit”
  • One action per step: Easier to debug
  • Include verification: “Click Submit. Verify success message appears.”