cli — Scaffolding commands
create-feature
Creates the structure of a new feature in the current project directory.
codex-bot create-feature my_feature
codex-bot create-feature payment_notify --type redis
main
main()
CLI entry point for codex-bot.
Subcommands
create-feature: Create a new feature.
Example
codex-bot create-feature booking
codex-bot create-feature payment_notify --type redis
Source code in src/codex_bot/cli/commands.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
create_feature
create_feature(name, feature_type, base_dir=None, templates_dir=None)
Creates the structure of a new feature based on templates.
Generates a features/{feature_type}/{name}/ directory with files:
feature_setting.py, handlers/handlers.py, logic/orchestrator.py,
ui/ui.py, contracts/contract.py, resources/, and tests/.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Feature name in |
required |
feature_type
|
str
|
Feature type — |
required |
base_dir
|
Path | None
|
Project root directory. |
None
|
templates_dir
|
Path | None
|
Templates directory. |
None
|
Raises:
| Type | Description |
|---|---|
SystemExit
|
If the feature already exists or a template is not found. |
Example
codex-bot create-feature booking
codex-bot create-feature payment_notify --type redis
Source code in src/codex_bot/cli/commands.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |