Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.7 KB

File metadata and controls

43 lines (28 loc) · 1.7 KB

Basic REPL Commands

  1. /help - Check if help command works and displays available commands
  2. /clear - Test if the screen clears
  3. /version - Check if version information is displayed (if implemented)

Simple AI Interactions

  1. Hello world - Test basic AI response
  2. What can you help me with? - Check if AI describes its capabilities

File System Operations

  1. List the files in the current directory - Test if listDir tool works
  2. Show me the package.json file - Test if readFile tool works

Search Functionality

  1. Find files containing the word "repl" in them - Test content search with ripgrepSearch
  2. Search for files named "config" - Test fileSearch functionality

File Manipulations (Test in a safe directory)

  1. Create a file called test.txt with the content "Hello, this is a test" - Test file creation
  2. Read the test.txt file - Verify the file was created properly
  3. Edit test.txt to say "Updated content for testing" - Test file editing
  4. Delete test.txt - Test file deletion

Bash Commands

  1. Run the command ls -la - Test basic command execution
  2. Run pwd to show current directory - Test environment persistence

Context and Help

  1. What is the current project structure? - Test if it understands the context
  2. Help me understand how the tool system works in this codebase - Test code analysis

Complex Interactions

  1. Find all files that import the Tool interface and explain how they use it - Test semantic search and code analysis
  2. Create a simple "hello world" function in a new file called hello.js - Test multi-step task
  3. Add more test coverage to this codebase - Test high-level task understanding and execution