@stillrivercode/agentic-workflow-template
Version:
NPM package to create AI-powered GitHub workflow automation projects
53 lines (32 loc) • 1.49 kB
Markdown
**Category**: Core Commands
**Definition**: When a user issues a `SELECT` command, they are asking you to find, retrieve, or explain information from the codebase or other resources. This is your primary command for information retrieval.
- `SELECT the user authentication logic from the 'auth.py' file and explain how it handles password hashing.`
- `SELECT all functions that handle user input validation`
- `SELECT the database connection configuration and explain the security settings`
````markdown
- **File(s)**: Path references with line numbers
- **Function/Class**: Specific code elements identified
````javascript
// Relevant code with annotations
```markdown
Clear explanation of what the code does, how it works, and any important considerations.
- Other files or functions that interact with this code
- Dependencies and relationships
```markdown
- Always provide file paths and line numbers when possible
- Include context about how the selected code fits into the larger system
- Explain any security, performance, or architectural implications
- [**explain this**](../documentation/explain-this.md) - For detailed explanations of selected code
- [**analyze this**](../development/analyze-this.md) - For deeper analysis of selected components
````
````