Skip to content

Commit

Permalink
Merge pull request #145 from abinsanty/add-codemonkey-to-ROLES
Browse files Browse the repository at this point in the history
Add codemonkey to roles
  • Loading branch information
LeonOstrez authored Oct 10, 2023
2 parents 56b0947 + f0617f9 commit 2f82c13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion pilot/const/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
'tech_lead': ['development_planning'],
'full_stack_developer': ['create_scripts', 'coding'],
'dev_ops': ['environment_setup'],
'code_monkey': ['create_scripts', 'coding', 'implement_changes']
}
STEPS = [
'project_description',
Expand All @@ -13,7 +14,9 @@
'architecture',
'environment_setup',
'development_planning',
'coding'
'create_scripts',
'coding',
'implement_changes'
]

IGNORE_FOLDERS = [
Expand Down
8 changes: 4 additions & 4 deletions pilot/helpers/agents/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ TODO:

**TODO: no prompt**

`debug` functions: `run_command`, `implement_code_changes`
`debug` functions: `run_command`, `implement_changes`


## Developer (full_stack_developer)
`create_scripts`, `coding` **(TODO: No entry in `STEPS` for `create_scripts`)**
`create_scripts`, `coding`

- Implement tasks assigned by tech lead
- Modular code, TDD
- Tasks provided as "programmatic goals" **(TODO: consider BDD)**


## Code Monkey
**TODO: not listed in `ROLES`**
`create_scripts`, `coding`, `implement_changes`

`development/implement_changes` functions: `save_files`
`implement_changes` functions: `save_files`

- Implement tasks assigned by tech lead
- Modular code, TDD

0 comments on commit 2f82c13

Please sign in to comment.