lalph 0.3.10 → 0.3.11
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 +3 -1
- package/package.json +1 -1
- package/src/commands/issue.ts +2 -0
- package/src/domain/CliAgent.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -67143,6 +67143,7 @@ const opencode = new CliAgent({
|
|
|
67143
67143
|
command: ({ prompt, prdFilePath, extraArgs }) => make$23("opencode", [
|
|
67144
67144
|
"run",
|
|
67145
67145
|
prompt,
|
|
67146
|
+
"--thinking",
|
|
67146
67147
|
...extraArgs,
|
|
67147
67148
|
"-f",
|
|
67148
67149
|
prdFilePath
|
|
@@ -152264,6 +152265,7 @@ const handler$1 = flow(withHandler(fnUntraced(function* () {
|
|
|
152264
152265
|
const yamlContent = yamlLines.join("\n");
|
|
152265
152266
|
const frontMatter = yield* decodeEffect(FrontMatterSchema)(import_dist.parse(yamlContent));
|
|
152266
152267
|
const description = lines.slice(descriptionStartIndex).join("\n").trim();
|
|
152268
|
+
if (frontMatter.title.trim() === "Issue Title") return;
|
|
152267
152269
|
yield* gen(function* () {
|
|
152268
152270
|
const source = yield* IssueSource;
|
|
152269
152271
|
const projectId = yield* CurrentProjectId;
|
|
@@ -152295,7 +152297,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
152295
152297
|
|
|
152296
152298
|
//#endregion
|
|
152297
152299
|
//#region package.json
|
|
152298
|
-
var version = "0.3.
|
|
152300
|
+
var version = "0.3.11";
|
|
152299
152301
|
|
|
152300
152302
|
//#endregion
|
|
152301
152303
|
//#region src/commands/projects/ls.ts
|
package/package.json
CHANGED
package/src/commands/issue.ts
CHANGED
|
@@ -64,6 +64,8 @@ const handler = flow(
|
|
|
64
64
|
)
|
|
65
65
|
const description = lines.slice(descriptionStartIndex).join("\n").trim()
|
|
66
66
|
|
|
67
|
+
if (frontMatter.title.trim() === "Issue Title") return
|
|
68
|
+
|
|
67
69
|
yield* Effect.gen(function* () {
|
|
68
70
|
const source = yield* IssueSource
|
|
69
71
|
const projectId = yield* CurrentProjectId
|
package/src/domain/CliAgent.ts
CHANGED
|
@@ -34,7 +34,7 @@ const opencode = new CliAgent({
|
|
|
34
34
|
command: ({ prompt, prdFilePath, extraArgs }) =>
|
|
35
35
|
ChildProcess.make(
|
|
36
36
|
"opencode",
|
|
37
|
-
["run", prompt, ...extraArgs, "-f", prdFilePath],
|
|
37
|
+
["run", prompt, "--thinking", ...extraArgs, "-f", prdFilePath],
|
|
38
38
|
{
|
|
39
39
|
extendEnv: true,
|
|
40
40
|
env: {
|