You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will create a directory with your project name inside the current folder.<br>
@@ -99,7 +99,7 @@ Additionally, pre-built templates are available as a shortcut to building your p
99
99
After generating a project, the next step is to build your agent project by creating Agents and Tasks. You can do this quickly with AgentStack:
100
100
101
101
```bash
102
-
agentstack generate agent/task <name>
102
+
uv run agentstack generate agent/task <name>
103
103
```
104
104
105
105
Modify the agents and tasks by changing the `agents.yaml` and `tasks.yaml` configuration files in `src/config`
@@ -115,7 +115,7 @@ A list of all tools can be found [on our docs](https://docs.agentstack.sh/tools/
115
115
Adding tools is as simple as
116
116
117
117
```bash
118
-
agentstack tools add
118
+
uv run agentstack tools add
119
119
```
120
120
121
121
## Running Your Agent
@@ -130,6 +130,31 @@ Runs the agent project in development mode.<br>
130
130
131
131
> 👀 Support for easy production deployment of agents is coming soon.
132
132
133
+
## Command Alias Setup
134
+
135
+
To make working with AgentStack more convenient, you can set up an alias for the `uv run agentstack` command:
136
+
137
+
### For Bash/Zsh (macOS/Linux)
138
+
Add this to your `~/.bashrc`, `~/.zshrc`, or equivalent:
139
+
```bash
140
+
alias agentstack='uv run agentstack'
141
+
```
142
+
143
+
### For Windows PowerShell
144
+
Add this to your PowerShell profile:
145
+
```powershell
146
+
Set-Alias -Name agentstack -Value "uv run agentstack"
147
+
```
148
+
149
+
After setting up the alias, you can use `agentstack` commands directly:
150
+
```bash
151
+
agentstack init <project_name>
152
+
agentstack run
153
+
agentstack generate agent <name>
154
+
```
155
+
156
+
> Note: The alias needs to be set up in each new shell session unless added to your shell's configuration file.
157
+
133
158
## Philosophy
134
159
135
160
-**Agents should be easy:** There are so many frameworks out there, but starting from scratch is a pain. Similar to `create-react-app`, AgentStack aims to simplify the "from scratch" process by giving you a simple boilerplate of an agent. It uses popular agent frameworks and LLM providers, but provides a cohesive curated experience on top of them.
0 commit comments