File tree Expand file tree Collapse file tree 5 files changed +18
-9
lines changed
Expand file tree Collapse file tree 5 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Use this skill when you need to:
2828
2929* ** Scaffold a new microfrontend project** using the DHTI cli:
3030 ``` bash
31- npx dhti-cli@latest conch init -w workspace -n esm-dhti-<< name>>
31+ npx dhti-cli conch init -w workspace -n esm-dhti-<< name>>
3232 ` ` `
3333
3434* ** Adapt the code:**
Original file line number Diff line number Diff line change @@ -187,13 +187,15 @@ You may include multiple conches with multiple -s flags to start them at the sam
187187
188188# ### If using CDS-Hooks container:
189189
190+ * First kill any running processes on port 8080 to free it up for CDS-Hooks container.
191+ Then start the CDS-Hooks container with the elixir.
190192` ` `
191- npx dhti-cli elixir start -n << elixir-name>>
193+ npx dhti-cli elixir start -n << elixir-name>> &
192194` ` `
193195
194196Example:
195197` ` `
196- npx dhti-cli elixir start -n glycemic_advisor
198+ npx dhti-cli elixir start -n glycemic_advisor &
197199` ` `
198200
199201NOTE the ` Application link` in the output rather than the final display link.
Original file line number Diff line number Diff line change 22
33## [ Unreleased] ( https://github.com/dermatologist/dhti/tree/HEAD )
44
5- [ Full Changelog] ( https://github.com/dermatologist/dhti/compare/1.3.1...HEAD )
6-
7- ** Closed issues:**
8-
9- - Add additional models [ \# 123] ( https://github.com/dermatologist/dhti/issues/123 )
5+ [ Full Changelog] ( https://github.com/dermatologist/dhti/compare/1.3.2...HEAD )
106
117** Merged pull requests:**
128
9+ - Feature/fix hanging 1 [ \# 126] ( https://github.com/dermatologist/dhti/pull/126 ) ([ dermatologist] ( https://github.com/dermatologist ) )
10+ - docs: update SKILL.md to include instructions for freeing port 8080 f… [ \# 125] ( https://github.com/dermatologist/dhti/pull/125 ) ([ dermatologist] ( https://github.com/dermatologist ) )
1311- Add supported models list to copilot command flag description [ \# 124] ( https://github.com/dermatologist/dhti/pull/124 ) ([ Copilot] ( https://github.com/apps/copilot-swe-agent ) )
1412- Feature/fix skills 3 [ \# 122] ( https://github.com/dermatologist/dhti/pull/122 ) ([ dermatologist] ( https://github.com/dermatologist ) )
1513- Feature/fix start skill 1 [ \# 121] ( https://github.com/dermatologist/dhti/pull/121 ) ([ dermatologist] ( https://github.com/dermatologist ) )
3937- Feature/bump fix 1 [ \# 87] ( https://github.com/dermatologist/dhti/pull/87 ) ([ dermatologist] ( https://github.com/dermatologist ) )
4038- Feature/copy bootstrap [ \# 86] ( https://github.com/dermatologist/dhti/pull/86 ) ([ dermatologist] ( https://github.com/dermatologist ) )
4139
40+ ## [ 1.3.2] ( https://github.com/dermatologist/dhti/tree/1.3.2 ) (2026-02-17)
41+
42+ [ Full Changelog] ( https://github.com/dermatologist/dhti/compare/1.3.1...1.3.2 )
43+
44+ ** Closed issues:**
45+
46+ - Add additional models [ \# 123] ( https://github.com/dermatologist/dhti/issues/123 )
47+
4248## [ 1.3.1] ( https://github.com/dermatologist/dhti/tree/1.3.1 ) (2026-02-14)
4349
4450[ Full Changelog] ( https://github.com/dermatologist/dhti/compare/1.3.0...1.3.1 )
Original file line number Diff line number Diff line change 11{
22 "name" : " dhti-cli" ,
33 "description" : " DHTI CLI" ,
4- "version" : " 1.3.2 " ,
4+ "version" : " 1.3.3 " ,
55 "author" : " Bell Eapen" ,
66 "bin" : {
77 "dhti-cli" : " bin/run.js"
Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ export default class Copilot extends Command {
221221 this . log (
222222 chalk . dim ( `💾 Conversation saved (${ conversationHistory . length } messages). Use --clear-history to reset.` ) ,
223223 )
224+ this . log ( chalk . yellow ( '🧹 Cleaning up session, please wait...' ) )
224225 } catch ( error ) {
225226 const errorMessage = error instanceof Error ? error . message : String ( error )
226227 this . error (
You can’t perform that action at this time.
0 commit comments