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 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. Interview the user
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.1.49",
4
+ "version": "0.1.50",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
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. Interview the user
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
  }