From 6f007d0d3c9b74fa4628e6262f842c0ec3ebbd6d Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:07:30 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #19 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/link-foundation/link-cli/issues/19 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..3b45628 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/link-foundation/link-cli/issues/19 +Your prepared branch: issue-19-9de6817b +Your prepared working directory: /tmp/gh-issue-solver-1757513247527 + +Proceed. \ No newline at end of file From 16d2fdc11b81c52efb1ba0ab2199cd5fb803de9a Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:07:46 +0300 Subject: [PATCH 2/3] Remove CLAUDE.md - PR created successfully --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 3b45628..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/link-foundation/link-cli/issues/19 -Your prepared branch: issue-19-9de6817b -Your prepared working directory: /tmp/gh-issue-solver-1757513247527 - -Proceed. \ No newline at end of file From 1ca6785c301a1b791d606c2acbc653e0d7a228d1 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 17:18:23 +0300 Subject: [PATCH 3/3] Fix structure formatting to hide link IDs in output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The --structure option was showing link IDs in the formatted output like '(4:(2:(1: ) 1) 2)' instead of the expected simplified format like '((( ) 1) 2)'. Fixed by changing the FormatStructure call parameters from (true, true) to (false, false) to disable showing link IDs in the structure representation. Fixes #19 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Foundation.Data.Doublets.Cli/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation.Data.Doublets.Cli/Program.cs b/Foundation.Data.Doublets.Cli/Program.cs index 1f9bfed..f74d58a 100644 --- a/Foundation.Data.Doublets.Cli/Program.cs +++ b/Foundation.Data.Doublets.Cli/Program.cs @@ -93,7 +93,7 @@ var linkId = structure.Value; try { - var structureFormatted = decoratedLinks.FormatStructure(linkId, link => decoratedLinks.IsFullPoint(linkId), true, true); + var structureFormatted = decoratedLinks.FormatStructure(linkId, link => decoratedLinks.IsFullPoint(linkId), false, false); Console.WriteLine(Namify(decoratedLinks, structureFormatted)); } catch (Exception ex)