Skip to content

Commit 9cf0288

Browse files
committed
Review feedback, reduce SKILL.md token count by dropping out table/grammar whitespace
1 parent 0e2de67 commit 9cf0288

5 files changed

Lines changed: 229 additions & 247 deletions

File tree

src/SeqCli/Cli/Commands/Mcp/RunCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public RunCommand()
3737
{
3838
_connection = Enable<ConnectionFeature>();
3939
_storagePath = Enable<StoragePathFeature>();
40-
Options.Add("debug", "Write diagnostic messages from the MCP server back through the connection.",
40+
Options.Add("debug", "Write diagnostic messages from the MCP server back through the connection",
4141
_ => _debug = true);
4242
}
4343

src/SeqCli/Cli/Commands/Skills/InstallCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ public InstallCommand()
2929
{
3030
Options.Add(
3131
"g|global",
32-
"Install skills globally, to `~/.{agent}/skills`; the default is to install locally, in `./{agent}/skills.`",
32+
"Install skills globally, to `~/.{agent}/skills`; the default is to install locally, in `./{agent}/skills`",
3333
_ => _global = true);
3434

3535
Options.Add(
3636
"a=|agent=",
37-
"The agent name to install skills for; the default is the generic name `agents`.",
37+
"The agent name to install skills for; the default is the generic name `agents`",
3838
t => _agent = ArgumentString.Normalize(t));
3939
}
4040

src/SeqCli/Mcp/Data/QueryResultHelper.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@
2020
namespace SeqCli.Mcp.Data;
2121

2222
public static class QueryResultHelper
23-
{
23+
{
24+
/// <summary>
25+
/// Convert <paramref name="result"/> into a flat table. Seq reduces browser-side processing and optimizes
26+
/// response sizes by constructing result trees for some grouped/time-sliced query results.
27+
/// </summary>
2428
public static void Flatten(QueryResultPart result, Action<IEnumerable<object?>> writeRow)
2529
{
2630
if (result.Error != null)

0 commit comments

Comments
 (0)