lalph 0.1.49 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +2 -6
- package/package.json +1 -1
- package/src/PromptGen.ts +2 -1
- package/src/cli.ts +0 -1
package/dist/cli.mjs
CHANGED
|
@@ -141122,7 +141122,8 @@ permission.
|
|
|
141122
141122
|
|
|
141123
141123
|
${prdNotes}`;
|
|
141124
141124
|
const planPrompt = (options) => `1. Ask the user for the idea / request, then your job is to create a detailed
|
|
141125
|
-
specification to fulfill the request and save it as a file.
|
|
141125
|
+
specification to fulfill the request and save it as a file.
|
|
141126
|
+
First do some research to understand the request, then interview the user
|
|
141126
141127
|
to gather all the necessary requirements and details for the specification.
|
|
141127
141128
|
2. Once you have saved the specification, your next job is to create an implementation
|
|
141128
141129
|
plan by breaking down the specification into smaller, manageable tasks and add
|
|
@@ -141596,11 +141597,6 @@ const selectAgent = make$27("agent").pipe(withDescription("Select the CLI agent
|
|
|
141596
141597
|
const selectSource = make$27("source").pipe(withDescription("Select the issue source to use"), withHandler(() => selectIssueSource));
|
|
141597
141598
|
const planMode = make$27("plan").pipe(withDescription("Iterate on an issue plan and create PRD tasks"), withHandler(fnUntraced(function* () {
|
|
141598
141599
|
const { reset: reset$2, specsDirectory: specsDirectory$1, targetBranch: targetBranch$1 } = yield* root;
|
|
141599
|
-
console.log({
|
|
141600
|
-
reset: reset$2,
|
|
141601
|
-
specsDirectory: specsDirectory$1,
|
|
141602
|
-
targetBranch: targetBranch$1
|
|
141603
|
-
});
|
|
141604
141600
|
if (reset$2) yield* resetCurrentIssueSource;
|
|
141605
141601
|
yield* plan({
|
|
141606
141602
|
specsDirectory: specsDirectory$1,
|
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -163,7 +163,8 @@ ${prdNotes}`
|
|
|
163
163
|
const planPrompt = (options: {
|
|
164
164
|
readonly specsDirectory: string
|
|
165
165
|
}) => `1. Ask the user for the idea / request, then your job is to create a detailed
|
|
166
|
-
specification to fulfill the request and save it as a file.
|
|
166
|
+
specification to fulfill the request and save it as a file.
|
|
167
|
+
First do some research to understand the request, then interview the user
|
|
167
168
|
to gather all the necessary requirements and details for the specification.
|
|
168
169
|
2. Once you have saved the specification, your next job is to create an implementation
|
|
169
170
|
plan by breaking down the specification into smaller, manageable tasks and add
|
package/src/cli.ts
CHANGED
|
@@ -202,7 +202,6 @@ const planMode = Command.make("plan").pipe(
|
|
|
202
202
|
Command.withHandler(
|
|
203
203
|
Effect.fnUntraced(function* () {
|
|
204
204
|
const { reset, specsDirectory, targetBranch } = yield* root
|
|
205
|
-
console.log({ reset, specsDirectory, targetBranch })
|
|
206
205
|
if (reset) {
|
|
207
206
|
yield* resetCurrentIssueSource
|
|
208
207
|
}
|