Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .infer/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gateway:
url: http://localhost:8080
api_key: ''
api_key: ""
timeout: 200
oci: ghcr.io/inference-gateway/inference-gateway:latest
run: true
Expand Down Expand Up @@ -28,7 +28,7 @@ client:
- 504
logging:
debug: false
dir: ''
dir: ""
tools:
enabled: true
sandbox:
Expand Down Expand Up @@ -115,9 +115,9 @@ tools:
require_approval: true
export:
output_dir: .infer
summary_model: ''
summary_model: ""
agent:
model: ''
model: ""
system_prompt: |
Autonomous software engineering agent. Execute tasks iteratively until completion.

Expand Down Expand Up @@ -208,7 +208,7 @@ agent:
max_concurrent_tools: 5
git:
commit_message:
model: ''
model: ""
system_prompt: |-
Generate a concise git commit message following conventional commit format.

Expand All @@ -227,10 +227,10 @@ git:
Respond with ONLY the commit message, no quotes or explanation.
scm:
pr_create:
prompt: ''
prompt: ""
base_branch: main
branch_prefix: ''
model: ''
branch_prefix: ""
model: ""
cleanup:
return_to_base: true
delete_local_branch: false
Expand All @@ -243,18 +243,18 @@ storage:
host: localhost
port: 5432
database: infer_conversations
username: ''
password: ''
username: ""
password: ""
ssl_mode: prefer
redis:
host: localhost
port: 6379
password: ''
password: ""
db: 0
conversation:
title_generation:
enabled: true
model: ''
model: ""
system_prompt: |-
Generate a concise conversation title based on the messages provided.

Expand Down
24 changes: 24 additions & 0 deletions markdown/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,30 @@ The TUI provides:

The git shortcuts provide intelligent commit message generation using AI when no message is provided with `/git commit`.

### GitHub Actions Setup Shortcut

- `/setup-github-app` - **NEW**: Set up GitHub Actions for your project

This shortcut helps you quickly configure GitHub Actions for your project by:

- Creating a `.github/workflows/` directory structure
- Setting up basic CI/CD workflows
- Configuring GitHub Actions for automated testing and deployment
- Adding necessary workflow files for common development tasks

**Usage Example:**
```bash
infer chat
> /setup-github-app
# Agent will guide you through setting up GitHub Actions for your project
```

**Key Features:**
- Automates GitHub Actions configuration
- Creates standard workflow templates
- Guides you through the setup process
- Helps establish CI/CD pipelines
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to compare it with the CLI readme


## User-Defined Shortcuts

You can create custom shortcuts by adding YAML configuration files in the `.infer/shortcuts/` directory.
Expand Down