repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
Dzoukr/Dapper.FSharp
87
issue_to_patch
Fix ambiguous column error
"Ambiguous column" error can happen when we try to limit select query with join(s) to just one table. This PR fixes that by fully qualifying column names also for `select1` when there is some join in query. `Dogs` test table was extended with `Id` column to create ambiguous columns scenario.
a3331042a7caec76d2191ed0832c5d197f9416d2
24db9f9e22928439d75373f6c3645605aba7ce06
diff --git a/src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs b/src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs index 05f6412..2debe35 100644 --- a/src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs +++ b/src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs @@ -11,7 +11,7 @@ let private extractFieldsAndSplit<'a> (j:Join) = let...
[ "src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs", "src/Dapper.FSharp/MySQL/GenericDeconstructor.fs", "src/Dapper.FSharp/PostgreSQL/GenericDeconstructor.fs", "src/Dapper.FSharp/SQLite/GenericDeconstructor.fs", "tests/Dapper.FSharp.Tests/Database.fs", "tests/Dapper.FSharp.Tests/MSSQL/Database.fs", "tests...
[]
diff --git a/tests/Dapper.FSharp.Tests/Database.fs b/tests/Dapper.FSharp.Tests/Database.fs index 59c14a6..6883254 100644 --- a/tests/Dapper.FSharp.Tests/Database.fs +++ b/tests/Dapper.FSharp.Tests/Database.fs @@ -53,6 +53,7 @@ module Persons = module Dogs = type View = { + Id : Guid OwnerId : Gu...
true
Dzoukr/Dapper.FSharp
84
issue_to_patch
CancellationToken support for all SelectAsync methods
Added test only for 1 join, but all others are so similar, I think it's not needed.
f503f3c3a66441ca688c4f2e2d5780554e239120
2a5615a06d9298bfe1e1b745fb4592cfcce8f7bf
diff --git a/src/Dapper.FSharp/IDbConnection.fs b/src/Dapper.FSharp/IDbConnection.fs index 4a14dc0..b55739a 100644 --- a/src/Dapper.FSharp/IDbConnection.fs +++ b/src/Dapper.FSharp/IDbConnection.fs @@ -10,52 +10,52 @@ let query1<'a> (this:IDbConnection) trans timeout cancellationToken (logFunction CommandDefinition...
[ "src/Dapper.FSharp/IDbConnection.fs", "src/Dapper.FSharp/MSSQL/IDbConnection.fs", "src/Dapper.FSharp/MySQL/IDbConnection.fs", "src/Dapper.FSharp/PostgreSQL/IDbConnection.fs", "src/Dapper.FSharp/SQLite/IDbConnection.fs", "tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs", "tests/Dapper.FSharp.Tests/MySQL/S...
[]
diff --git a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs index a350fcc..970b107 100644 --- a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs +++ b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs @@ -64,6 +64,38 @@ type SelectTests () = Assert....
true
Dzoukr/Dapper.FSharp
82
issue_to_patch
Increased join limit from 2 to 4
PR to address issue #66. I added up to four joins to hopefully support the use case requested. Let me know if I missed anything or if you'd like something done differently and I'd be happy to help! Changes include: - Updated join overrides - Updated tests - Updated readme - v3 - Updated mssql connection str...
e01486f44cd9c699457cf5641c1fb9b77a6c02e4
8c4591aa9233748cc93266e446a89f550c55a096
diff --git a/README_v3.md b/README_v3.md index 69080f3..a9c066c 100644 --- a/README_v3.md +++ b/README_v3.md @@ -372,7 +372,7 @@ select { } |> conn.SelectAsync<Person, Dog> ``` -`Dapper.FSharp` will map each joined table into a separate record and return it as list of `'a * 'b` tuples. Currently, up to 2 joins are ...
[ "README_v3.md", "src/Dapper.FSharp/IDbConnection.fs", "src/Dapper.FSharp/MSSQL/Deconstructor.fs", "src/Dapper.FSharp/MSSQL/GenericDeconstructor.fs", "src/Dapper.FSharp/MSSQL/IDbConnection.fs", "src/Dapper.FSharp/MySQL/Deconstructor.fs", "src/Dapper.FSharp/MySQL/GenericDeconstructor.fs", "src/Dapper.FS...
[]
diff --git a/tests/Dapper.FSharp.Tests/Database.fs b/tests/Dapper.FSharp.Tests/Database.fs index 0872491..59c14a6 100644 --- a/tests/Dapper.FSharp.Tests/Database.fs +++ b/tests/Dapper.FSharp.Tests/Database.fs @@ -15,7 +15,8 @@ type ICrudInitializer = abstract member InitSchemedGroups : unit -> Task<unit> abst...
true
Dzoukr/Dapper.FSharp
76
issue_to_patch
Support internal types as records mapped to DB
It may be useful to hide DB types so they cannot be used outside of their defining assembly and the client only uses exposed domain types. This PR should allow us to do just that.
79f723608956bf8fe590f5b5bec546c9d847520a
b7b60f592deb290b86b2c82f6fcb674851980744
diff --git a/README.md b/README.md index e176e1b..e29b297 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,18 @@ type Person = { } ``` +If you prefer not exposing your records, you can use internal types: + +```f# +type internal Person = { + Id : Guid + FirstName : string + LastName : string + Positi...
[ "README.md", "src/Dapper.FSharp/Reflection.fs", "tests/Dapper.FSharp.Tests/Database.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/Database.fs b/tests/Dapper.FSharp.Tests/Database.fs index b8fb0b9..0872491 100644 --- a/tests/Dapper.FSharp.Tests/Database.fs +++ b/tests/Dapper.FSharp.Tests/Database.fs @@ -21,7 +21,7 @@ let taskToList (t:Task<seq<'a>>) = t |> Async.AwaitTask |> Async.RunSynchronousl module Pe...
true
Dzoukr/Dapper.FSharp
74
issue_to_patch
Add support for SQLite (Microsoft.Data.SQLite)
This is the implementation for: #73
82c26d575ec824af363bc3cc153f2aa366d6ffef
5a3c9c3b4e241da1b2f7699710e3e1b6b37ba538
diff --git a/Dapper.FSharp.sln b/Dapper.FSharp.sln index 94addde..15ed53c 100644 --- a/Dapper.FSharp.sln +++ b/Dapper.FSharp.sln @@ -1,12 +1,31 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Dapper.FSharp", "src\Dapper.FSharp\Dapper.FSharp.fsproj...
[ "Dapper.FSharp.sln", "README.md", "paket.dependencies", "paket.lock", "src/Dapper.FSharp/Dapper.FSharp.fsproj", "src/Dapper.FSharp/SQLite/Builders.fs", "src/Dapper.FSharp/SQLite/Deconstructor.fs", "src/Dapper.FSharp/SQLite/Domain.fs", "src/Dapper.FSharp/SQLite/Evaluator.fs", "src/Dapper.FSharp/SQL...
[]
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index 16f8f53..d72716e 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -49,6 +49,14 @@ <Compile Include="MSSQL\Upd...
true
Dzoukr/Dapper.FSharp
72
issue_to_patch
Version 4
Implementing #71
916f86496356bf8ee48a6f7f4a8e0757f977e04d
7549fdfe90386e801af2bd07b8c53840f88e28c8
diff --git a/Build.fs b/Build.fs index 33396b0..8f1ff2c 100644 --- a/Build.fs +++ b/Build.fs @@ -31,7 +31,7 @@ let publishNuget proj = Target.create "Pack" (fun _ -> "src" </> "Dapper.FSharp" |> createNuget) Target.create "Publish" (fun _ -> "src" </> "Dapper.FSharp" |> publishNuget) -Target.create "Test" (fun _ ->...
[ "Build.fs", "README.md", "README_v3.md", "paket.dependencies", "paket.lock", "src/Dapper.FSharp/Dapper.FSharp.fsproj", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MSSQL/Builders.fs", "src/Dapper.FSharp/MSSQL/Deconstructor.fs", "src/Dapper.FSharp/MSSQL/Domain.fs", "src/Dapper.FSharp/MSSQL/Ev...
[]
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index c9cc133..16f8f53 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -11,21 +11,44 @@ </None> </ItemGroup> ...
true
Dzoukr/Dapper.FSharp
68
issue_to_patch
Arrays are not covered in the OptionType-registration Hi! We are evaluating Dapper.FSharp. First thing we tried is to replace our registration-bag for OptionsTypes. You may have seen something like this before :-) ``` let register() = SqlMapper.AddTypeHandler (OptionHandler<Guid>()) SqlMap...
Add OptionHandler for byte []
Fixes #58 There shouldn't be any impact on the API or the performance. I think it's a minor/non-breaking change.
1a7382e830a26e67c14d4f94fc05c947bc931304
57077581a8bb699e9dc34580fe9f672ba204b50b
diff --git a/src/Dapper.FSharp/OptionTypes.fs b/src/Dapper.FSharp/OptionTypes.fs index 93d3516..357f3e2 100644 --- a/src/Dapper.FSharp/OptionTypes.fs +++ b/src/Dapper.FSharp/OptionTypes.fs @@ -37,3 +37,4 @@ let register() = SqlMapper.AddTypeHandler (OptionHandler<DateTimeOffset>()) SqlMapper.AddTypeHandler (O...
[ "src/Dapper.FSharp/OptionTypes.fs" ]
[]
true
Dzoukr/Dapper.FSharp
64
issue_to_patch
update readme to include `setColumn`
82ebe052c33130b0770c00e50449be156323194d
83289fdb0ef58e5543bae3ccd33f1c2f5fdd3915
diff --git a/README.md b/README.md index 828af3f..69080f3 100644 --- a/README.md +++ b/README.md @@ -205,12 +205,13 @@ update { ``` -Partial updates are also possible by using an anonymous record: +Partial updates are also possible by using `setColumn` keyword: ```F# update { for p in personTable do - ...
[ "README.md" ]
[]
true
Dzoukr/Dapper.FSharp
63
issue_to_patch
Multi join / constant expression fix
Creating this as a draft so you can poke at it. So far I've added a DU to allow `visitJoin` to return a `JoinInfo list` to allow for either columns or constant values. (Will clean up and worry about names later.) I think the other side of this is the `Join` DU having an abstraction to handle either. Feel free to ...
a434fa4f27d345d4b41c05472d00991c4f7db067
81d3470d420c3c26f3ece2d021d258644a492389
diff --git a/src/Dapper.FSharp/Builders.fs b/src/Dapper.FSharp/Builders.fs index 54ceb0a..9c3aeeb 100644 --- a/src/Dapper.FSharp/Builders.fs +++ b/src/Dapper.FSharp/Builders.fs @@ -4,6 +4,7 @@ module Dapper.FSharp.Builders open System.Linq.Expressions open System open System.Collections.Generic +open LinqExpressionV...
[ "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/Dapper.FSharp.fsproj", "src/Dapper.FSharp/GenericDeconstructor.fs", "src/Dapper.FSharp/JoinAnalyzer.fs", "src/Dapper.FSharp/LinqExpressionVisitors.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", ...
[ { "comment": "The easiest thing to do would be to handle `| EqualsToConstant value -> (formatValue)` instead of parameterizing the join constant.\r\nWhere `formatValue` could be something like:\r\n\r\n```F#\r\nlet formatValue (value: obj) = \r\n match value with\r\n | :? string as str -> $\"'{str}'\"\r\n ...
diff --git a/tests/Dapper.FSharp.Tests/IssuesTests.fs b/tests/Dapper.FSharp.Tests/IssuesTests.fs index fc08266..8b48afe 100644 --- a/tests/Dapper.FSharp.Tests/IssuesTests.fs +++ b/tests/Dapper.FSharp.Tests/IssuesTests.fs @@ -1,148 +1,47 @@ module Dapper.FSharp.Tests.IssuesTests -open System.Threading.Tasks open Da...
true
Dzoukr/Dapper.FSharp
57
issue_to_patch
Adds CancellationTests
Figured I should add tests too for #56 :)
d0c8c7bfc8e5a63c96fe91e2ccd69e61bc5a7ace
e5a682e71cd3fb412916e165df4b2ca038f66661
[ "tests/Dapper.FSharp.Tests/Database.fs", "tests/Dapper.FSharp.Tests/DeleteTests.fs", "tests/Dapper.FSharp.Tests/Extensions.fs", "tests/Dapper.FSharp.Tests/InsertTests.fs", "tests/Dapper.FSharp.Tests/MSSQL/Database.fs", "tests/Dapper.FSharp.Tests/MySQL/Database.fs", "tests/Dapper.FSharp.Tests/PostgreSQL/...
[]
diff --git a/tests/Dapper.FSharp.Tests/Database.fs b/tests/Dapper.FSharp.Tests/Database.fs index 6948cbe..28ad7c2 100644 --- a/tests/Dapper.FSharp.Tests/Database.fs +++ b/tests/Dapper.FSharp.Tests/Database.fs @@ -3,19 +3,20 @@ open System open System.Threading.Tasks open Dapper.FSharp +open System.Threading let [...
true
Dzoukr/Dapper.FSharp
56
issue_to_patch
CancellationToken support Hey there! ## Problem statement I started playing with this library a bit more in depth and one of the things missing for me is `CancellationToken` support. The reason passing down a CancellationToken to is so database connections don't stay open longer than they need for. For exa...
Adds CancellationToken to Select/Insert/Update/Delete statements
Closes #55 I know I'm supposed to wait for Approve/Deny on the issue but I figured showing all the changes is worth it.
710296fe00879b5cb57a1f3275767a07b6cd918a
ac4390c848e1e5dd38dc5346ef8735531f82bf42
diff --git a/src/Dapper.FSharp/IDbConnection.fs b/src/Dapper.FSharp/IDbConnection.fs index d7c7453..da117b3 100644 --- a/src/Dapper.FSharp/IDbConnection.fs +++ b/src/Dapper.FSharp/IDbConnection.fs @@ -5,26 +5,28 @@ open Dapper type LogFn = string * Map<string, obj> -> unit -let query1<'a> (this:IDbConnection) tran...
[ "src/Dapper.FSharp/IDbConnection.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", "src/Dapper.FSharp/PostgreSQL.fs" ]
[ { "comment": "`CommandDefinition` is how you pass along a `CancellationToken` to `QueryAsync`.\r\n\r\nAdditionally made changes like `transaction = Option.toObj` -> `?transaction = trans` as this is the same but in F# syntax sugar way.", "path": "src/Dapper.FSharp/IDbConnection.fs", "hunk": "@@ -5,9 +5,...
true
Dzoukr/Dapper.FSharp
56
comment_to_fix
Adds CancellationToken to Select/Insert/Update/Delete statements
`CommandDefinition` is how you pass along a `CancellationToken` to `QueryAsync`. Additionally made changes like `transaction = Option.toObj` -> `?transaction = trans` as this is the same but in F# syntax sugar way.
710296fe00879b5cb57a1f3275767a07b6cd918a
ac4390c848e1e5dd38dc5346ef8735531f82bf42
diff --git a/src/Dapper.FSharp/IDbConnection.fs b/src/Dapper.FSharp/IDbConnection.fs index d7c7453..da117b3 100644 --- a/src/Dapper.FSharp/IDbConnection.fs +++ b/src/Dapper.FSharp/IDbConnection.fs @@ -5,26 +5,28 @@ open Dapper type LogFn = string * Map<string, obj> -> unit -let query1<'a> (this:IDbConnection) tran...
[ "src/Dapper.FSharp/IDbConnection.fs" ]
[ { "comment": "`CommandDefinition` is how you pass along a `CancellationToken` to `QueryAsync`.\r\n\r\nAdditionally made changes like `transaction = Option.toObj` -> `?transaction = trans` as this is the same but in F# syntax sugar way.", "path": "src/Dapper.FSharp/IDbConnection.fs", "hunk": "@@ -5,9 +5,...
true
Dzoukr/Dapper.FSharp
53
issue_to_patch
update readme.md, add details on isIn, isNotIn operators
53c0f7e3e5bcb38628aac8a2b308491c25fe1c77
bb50bc0c68bbb3d7280081ab29cd6d7b8aaef524
diff --git a/README.md b/README.md index d4bb3b5..828af3f 100644 --- a/README.md +++ b/README.md @@ -264,7 +264,7 @@ select { } |> conn.SelectAsync<Person> ``` -NOTE: The forward pipe `|>` operator in your query expressions because it's not implemented, so don't do it (unless you like exceptions)! +NOTE: Do not use...
[ "README.md", "src/Dapper.FSharp/OptionTypes.fs" ]
[]
true
Dzoukr/Dapper.FSharp
49
issue_to_patch
Version3 - regression bug fix
This fixes a regression bug created when adding the new multi-column join feature and adds a test.
b165e8a3e92d79794574868255e9e0831a04020b
a1984a7d5bbd6071e4bea78edc8646033313c8e0
diff --git a/src/Dapper.FSharp/LinqExpressionVisitors.fs b/src/Dapper.FSharp/LinqExpressionVisitors.fs index 06bb9c1..a18dd49 100644 --- a/src/Dapper.FSharp/LinqExpressionVisitors.fs +++ b/src/Dapper.FSharp/LinqExpressionVisitors.fs @@ -292,13 +292,15 @@ let visitJoin<'T, 'Prop> (propertySelector: Expression<Func<'T, '...
[ "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/SelectQueryBuilderTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/SelectQueryBuilderTests.fs b/tests/Dapper.FSharp.Tests/SelectQueryBuilderTests.fs index e2d4730..d4bc5b4 100644 --- a/tests/Dapper.FSharp.Tests/SelectQueryBuilderTests.fs +++ b/tests/Dapper.FSharp.Tests/SelectQueryBuilderTests.fs @@ -508,6 +508,23 @@ let tests = testList "SELECT Q...
true
Dzoukr/Dapper.FSharp
48
issue_to_patch
Version3
This merge contains new features for version 3 referenced in #40: - Support for multi-joins + supporting tests ```F# select { for l in table<MultiJoinLeft> do innerJoin r in table<MultiJoinRight> on ((l.Key1, l.Key2) = (r.Key1, r.Key2)) selectAll } ``` - New strongly-typed `update` `setColumn` o...
92fe47f4b25d107d2d5a6f906b01341a755a722e
2478f0a111172a7d4e45469ade171338770324a4
diff --git a/src/Dapper.FSharp/Builders.fs b/src/Dapper.FSharp/Builders.fs index 6169bbc..54ceb0a 100644 --- a/src/Dapper.FSharp/Builders.fs +++ b/src/Dapper.FSharp/Builders.fs @@ -159,19 +159,33 @@ type SelectExpressionBuilder<'T>() = resultSelector: Expression<Func<'TOuter,'TInner,'Result>> ) =...
[ "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/GenericDeconstructor.fs", "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj", "tests/Dapper.FSharp.Tests/Legacy.fs", "tests/Dapper.FSharp.Tests/Program.fs", "tes...
[]
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index a0d18fe..d60346d 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -6,6 +6,10 @@ <TargetFramework>net5.0</Targ...
true
Dzoukr/Dapper.FSharp
47
issue_to_patch
Supported optional column.Value syntax for left side properties.
This provides a fix for issue #46 in the form of this example test case: ```F# testTask "SqlMethods.isIn with Optional List Values" { let query = select { for p in table<Person> do where (p.MI.Value |=| [ "N"; "M" ]) } Expect.e...
57d385b16f093db09671089d450c43d6927810e3
fd4aae6df22f2f974cd59851c0e52c2cf50ebc05
diff --git a/src/Dapper.FSharp/LinqExpressionVisitors.fs b/src/Dapper.FSharp/LinqExpressionVisitors.fs index eaee0c1..c5af60d 100644 --- a/src/Dapper.FSharp/LinqExpressionVisitors.fs +++ b/src/Dapper.FSharp/LinqExpressionVisitors.fs @@ -114,19 +114,27 @@ module SqlPatterns = let isOptionType (t: Type) = ...
[ "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/LinqSelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs index e7efa1f..31eee22 100644 --- a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs @@ -240,6 +240,16 @@ let unitTests() = testList "LINQ SELECT UNIT TESTS" [ ...
true
Dzoukr/Dapper.FSharp
45
issue_to_patch
v3
I didn't do much today but I thought I'd at least open this PR as a placeholder to get started. 😎 Next step will be to implement multi-column joins.
2de410d4aa3e29b15bd2c552343e64da8bd1300c
9d7ce5839102b05d7521327eba11a6c60bb44861
diff --git a/src/Dapper.FSharp/LinqBuilders.fs b/src/Dapper.FSharp/LinqBuilders.fs index 88669f4..ad9c037 100644 --- a/src/Dapper.FSharp/LinqBuilders.fs +++ b/src/Dapper.FSharp/LinqBuilders.fs @@ -151,8 +151,8 @@ type SelectExpressionBuilder<'T>() = QuerySource<'T, SelectQuery>({ query with Pagination = { quer...
[ "src/Dapper.FSharp/LinqBuilders.fs", "tests/Dapper.FSharp.Tests/LinqSelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs index 0c4b83b..e7efa1f 100644 --- a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs @@ -170,7 +170,7 @@ let unitTests() = testList "LINQ SELECT UNIT TESTS" [ ...
true
Dzoukr/Dapper.FSharp
44
issue_to_patch
Adds left join on many overload
Addresses #43 Tests added, @Dzoukr if you can just test the PostGres and MySql - I still haven't had opportunity to get my docker up and running.
79b891d797be73b77f462ffcb546e175be8dc549
47e62bbbf04e5bf17799fd6692f074287276c98b
diff --git a/README.md b/README.md index 5849acb..a6ce1f7 100644 --- a/README.md +++ b/README.md @@ -321,6 +321,15 @@ select { } |> conn.SelectAsyncOption<Person, Dog, DogsWeight> ``` +The `innerLoin` and `leftjoin` keywords also support overloading (note that currently that requires flag in fsproj file [Issue#41](...
[ "README.md", "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", "src/Dapper.FSharp/PostgreSQL.fs", "tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj", "tests/Dapper.FSharp.Tests/SelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index 67db03d..dae92ad 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -3,7 +3,7 @@ <PropertyGroup> <OutputType...
true
Dzoukr/Dapper.FSharp
39
issue_to_patch
New Filter Operators
New features delivery (#39)! 🚚🎁🎁 😁 * Added new Builders.Operators module + tests * Added new LinqBuilders.Operators moduletests + tests
83d021123186ca3c717fe589113dd90b1d3a42a8
070e15f483b67b7bfa5582497e8124e92e9e6f13
diff --git a/src/Dapper.FSharp/Builders.fs b/src/Dapper.FSharp/Builders.fs index cd215c1..1f081dd 100644 --- a/src/Dapper.FSharp/Builders.fs +++ b/src/Dapper.FSharp/Builders.fs @@ -232,4 +232,14 @@ let isNotIn name (os:obj list) = column name (NotIn os) /// WHERE column IS NULL let isNullValue name = column name IsNu...
[ "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/LinqBuilders.fs", "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/LinqSelectTests.fs", "tests/Dapper.FSharp.Tests/SelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs index 7378fcb..0c4b83b 100644 --- a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs @@ -4,6 +4,7 @@ open System.Threading.Tasks open Dapper.FSharp open Dapper.FSharp...
true
Dzoukr/Dapper.FSharp
20
issue_to_patch
To allow multiple join conditions when performing inner join
Added a clause to the Join discriminated union, although I think this could possibly be a drop-in replacement for the current inner join, i.e you can use the `InnerJoinOnMany` even when only joining on 1 column. However, I do not want to break any of the existing code, it is probably better as an augmentation of the...
a18207771e734a6c196d46a110232c2bd1c7f474
63e45eb67c2041fae6769110ae0e235dcbb6aa63
diff --git a/global.json b/global.json index 490bb4b..1ec99ef 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,6 @@ { "sdk": { - "version": "3.1.409" + "version": "5.0.201", + "rollForward": "latestMinor" } } \ No newline at end of file diff --git a/src/Dapper.FSharp/Builders.fs b/src/Dapper.FShar...
[ "global.json", "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/Dapper.FSharp.fsproj", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", "src/Dapper.FSharp/PostgreSQL.fs", "tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj", "tests/Dapper.FSharp....
[ { "comment": "Please, don't align the code like Excel. :) \r\nSee: https://docs.microsoft.com/en-us/dotnet/fsharp/style-guide/formatting\r\nand: https://caml.inria.fr/resources/doc/guides/guidelines.en.html", "path": "src/Dapper.FSharp/MSSQL.fs", "hunk": "@@ -168,10 +175,10 @@ module private Evaluators ...
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index 67db03d..dae92ad 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -3,7 +3,7 @@ <PropertyGroup> <OutputType...
true
Dzoukr/Dapper.FSharp
29
issue_to_patch
Exclude columns for insert / update
Here's an interesting one! New Features: - Added `column` operation to Linq `insert` and `update` CEs to manually specify one or more columns - Added `exclude` operation to Linq `insert` and `update` CEs to manually exclude one or more columns - Supporting tests added - Added examples to docs Bug Fixes: - Pr...
0fac7cf4c802b41f010fbc30fff4be8f45f04c2b
a03c82b6a15cffc65016ae26eea2ff7073b0a906
diff --git a/README.md b/README.md index 54166eb..1f59ee8 100644 --- a/README.md +++ b/README.md @@ -412,6 +412,8 @@ let personTable = table'<Person> "People" |> inSchema "dbo" ### INSERT +Inserting a single record: + ```f# open Dapper.FSharp open Dapper.FSharp.LinqBuilders @@ -429,6 +431,48 @@ insert { } |> c...
[ "README.md", "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/GenericDeconstructor.fs", "src/Dapper.FSharp/LinqBuilders.fs", "src/Dapper.FSharp/LinqExpressionVisitors.fs", "src/Dapper.FSharp/Reflection.fs", "tests/Dapper.FSharp.Tests/LinqInsertTests.fs", "tes...
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqInsertTests.fs b/tests/Dapper.FSharp.Tests/LinqInsertTests.fs index da1ab4d..684b362 100644 --- a/tests/Dapper.FSharp.Tests/LinqInsertTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqInsertTests.fs @@ -46,6 +46,28 @@ let testsBasic (crud:ICrud) (init:ICrudInitializer) = testList "...
true
Dzoukr/Dapper.FSharp
31
issue_to_patch
Fixes annoying Zero errors when typing joins.
This is a small improvement I found last night that prevents the compiler from fighting with you while entering joins when the rest of the query is not completed.
0fac7cf4c802b41f010fbc30fff4be8f45f04c2b
64015ee2bb2df28134e68561f581f3a57091bc10
diff --git a/src/Dapper.FSharp/LinqBuilders.fs b/src/Dapper.FSharp/LinqBuilders.fs index cf831c5..e23c949 100644 --- a/src/Dapper.FSharp/LinqBuilders.fs +++ b/src/Dapper.FSharp/LinqBuilders.fs @@ -89,6 +89,10 @@ type SelectExpressionBuilder<'T>() = member _.Yield _ = QuerySource<'T>(Map.empty) + // P...
[ "src/Dapper.FSharp/LinqBuilders.fs" ]
[]
true
Dzoukr/Dapper.FSharp
30
issue_to_patch
Preemptively fixed Linq support for Guid values
This contains just the fix and an added test.
86ce75052efa0af1cb0170f8e990992fed3c7dec
4d93cc607b09f74d6e457da8b919443fe240c42d
diff --git a/src/Dapper.FSharp/LinqExpressionVisitors.fs b/src/Dapper.FSharp/LinqExpressionVisitors.fs index c051164..a6b1964 100644 --- a/src/Dapper.FSharp/LinqExpressionVisitors.fs +++ b/src/Dapper.FSharp/LinqExpressionVisitors.fs @@ -131,6 +131,9 @@ module SqlPatterns = /// A constant value or an optional const...
[ "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/LinqSelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs index 3bc80b7..ee06d98 100644 --- a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs @@ -26,6 +26,12 @@ type Contact = { Phone: string } +type Vehicle = { + ...
true
Dzoukr/Dapper.FSharp
28
issue_to_patch
Fix for issue #27
Fixes so that join "on" conditions support unwrapping option type properties. 1 fix + 1 supporting unit test Sorry for the extra 'merge upstream' commit. I had accidentally pushed a small change to readme on my origin so I had to merge and overwrite. I know there's a better way to do it, but I'm bad at git!
aa89bd0f311d177472e61f9ad1c1db21475f1fc4
45223d4a7f1f9783395de05436d9c12ed94f699b
diff --git a/src/Dapper.FSharp/LinqExpressionVisitors.fs b/src/Dapper.FSharp/LinqExpressionVisitors.fs index 736330e..c051164 100644 --- a/src/Dapper.FSharp/LinqExpressionVisitors.fs +++ b/src/Dapper.FSharp/LinqExpressionVisitors.fs @@ -278,8 +278,7 @@ let visitPropertySelector<'T, 'Prop> (propertySelector: Expression<...
[ "src/Dapper.FSharp/LinqExpressionVisitors.fs", "tests/Dapper.FSharp.Tests/LinqSelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs index 7d06faf..3bc80b7 100644 --- a/tests/Dapper.FSharp.Tests/LinqSelectTests.fs +++ b/tests/Dapper.FSharp.Tests/LinqSelectTests.fs @@ -372,6 +372,24 @@ let unitTests() = testList "LINQ SELECT UNIT TESTS" [ ...
true
Dzoukr/Dapper.FSharp
26
issue_to_patch
Linq builders
**INCOMING BIG PR!!** Includes: - new `LinqBuilders` module - select - update - insert - delete - all query fns (`like`, `isIn`, etc...) - Unit tests for new builder - SQL Server tests duplicated with new builders - Update readme section for the LINQ provider Whew... that was a lot of work, b...
0c458d0488ffb105247137123d734323b0da46c7
32f477b4b04a58ca6332eba831e1d22ccb1fd147
diff --git a/README.md b/README.md index 0f08145..54166eb 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Lightweight F# extension for StackOverflow Dapper with support for MSSQL, MySQL - No *auto-attribute-based-only-author-maybe-knows-magic* behavior - Support for F# records / anonymous records - Support ...
[ "README.md", "global.json", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/Dapper.FSharp.fsproj", "src/Dapper.FSharp/LinqBuilders.fs", "src/Dapper.FSharp/LinqExpressionVisitors.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", "src/Dapper.FSharp/PostgreSQL.fs", "src/Dapper...
[]
diff --git a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj index 8c8b83b..49a2b33 100644 --- a/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj +++ b/tests/Dapper.FSharp.Tests/Dapper.FSharp.Tests.fsproj @@ -24,6 +24,10 @@ <Compile Include="IssuesTes...
true
Dzoukr/Dapper.FSharp
19
issue_to_patch
Please include sources in Nuget package Hi Roman, thank you for the great library. On my machine, using Rider and Nuget vir Paket, I can't see the F# source code (I get decompiled C#). With some other packages, like FsToolkit.Errorhandling, I can see the F# source. Apparently this is something to do with the wa...
Enable Source Link
Hi Roman, I've made the changes, built it on my local machine, and tested that the sources are available to a project referencing the newer version. It took me a while to figure out that I had to commit changes and push to the remote repo on Github before building and staging the nuget file, in order for Source ...
d3b83200e566b286f9faebf1edd3c54fd65b2d25
f3248c5c4ceb35f48ba21b932fef3ed8b7add65f
diff --git a/build.fsx b/build.fsx index 2e510fc..bbcb944 100644 --- a/build.fsx +++ b/build.fsx @@ -18,7 +18,7 @@ module Tools = tool + " was not found in path. " + "Please install it and make sure it's available from your path. " failwith errorMsg - + le...
[ "build.fsx", "paket.dependencies", "src/Dapper.FSharp/Dapper.FSharp.fsproj" ]
[ { "comment": "Can we use normal paket.dependencies + paket.references files for this or is it necessary to have it in fsproj? 🤔", "path": "src/Dapper.FSharp/Dapper.FSharp.fsproj", "hunk": "@@ -25,5 +30,10 @@\n <Compile Include=\"Builders.fs\" />\n <Compile Include=\"OptionTypes.fs\" />\n </It...
true
Dzoukr/Dapper.FSharp
15
issue_to_patch
Add notLike operator
Hi there, I really like Dapper.FSharp. I'm using it for my reporting project and notice the notLike operator is missing. I'm missing the local.setting.json. Therefor I could not run the test. Can you please check if this is looks ok? Thanks, Tim
76e04db06358ce50df8ae0c76dad4aa356501054
d6707efb2e51b7b84ad7f75bc9e9a09c6152281c
diff --git a/src/Dapper.FSharp/Builders.fs b/src/Dapper.FSharp/Builders.fs index e1ec01a..b3d3e23 100644 --- a/src/Dapper.FSharp/Builders.fs +++ b/src/Dapper.FSharp/Builders.fs @@ -155,12 +155,14 @@ let lt name (o:obj) = column name (Lt o) let ge name (o:obj) = column name (Ge o) /// WHERE column value lower/equals t...
[ "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/MySQL.fs", "src/Dapper.FSharp/PostgreSQL.fs", "src/Dapper.FSharp/WhereAnalyzer.fs", "tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs", "tests/Dapper.FSharp.Tests/MySQL/SelectTests.fs"...
[]
diff --git a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs index f36e2b7..2d09074 100644 --- a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs +++ b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs @@ -114,6 +114,23 @@ let tests (conn:IDbConnection) = Tests.testList "SELEC...
true
Dzoukr/Dapper.FSharp
13
issue_to_patch
Fix case sensitivity in creation of where parameter names
Evaluating where has an issue with case sensitivity. When you have two conditions for the same column but the column names are with different casing, parameter names share the same index and trust only case sensitivity. This apparently causes problems at least in MSSQL when actually executing queries. **How to repro...
85327da33f504a16043a9c5e602cde899bd4c039
fb9c5f8b6e405fcf7212986a73c54d326f03326f
diff --git a/src/Dapper.FSharp/WhereAnalyzer.fs b/src/Dapper.FSharp/WhereAnalyzer.fs index f6ba236..38607e8 100644 --- a/src/Dapper.FSharp/WhereAnalyzer.fs +++ b/src/Dapper.FSharp/WhereAnalyzer.fs @@ -27,7 +27,7 @@ let rec getWhereMetadata (meta:FieldWhereMetadata list) (w:Where) = let parName = ...
[ "src/Dapper.FSharp/WhereAnalyzer.fs" ]
[]
true
Dzoukr/Dapper.FSharp
9
issue_to_patch
handle float32/single option type
adding `float` and `double` is the same operation. `float32`/`single` was not included. This is what the decompiled code looks like prior to the change. Note two calls to add `double`. ``` C# public static class OptionTypes { public static void register() { SqlMapper.AddTypeHandler<FSharpOp...
7c8d88cbe862f8653e6556b5e460bdc690ff390b
fded016deb50a11d3e3977db325fd90fe396283b
diff --git a/src/Dapper.FSharp/OptionTypes.fs b/src/Dapper.FSharp/OptionTypes.fs index d090f35..4a82307 100644 --- a/src/Dapper.FSharp/OptionTypes.fs +++ b/src/Dapper.FSharp/OptionTypes.fs @@ -27,10 +27,10 @@ let register() = SqlMapper.AddTypeHandler (OptionHandler<int64>()) SqlMapper.AddTypeHandler (OptionHa...
[ "src/Dapper.FSharp/OptionTypes.fs" ]
[]
true
Dzoukr/Dapper.FSharp
4
issue_to_patch
Add support for LIKE operator
Adds support for string pattern search with LIKE operator. Documented briefly in README.md and created a couple tests for the implementation.
192f56344ef62376bb46789cd1eff39c9b1e0ac1
3a1129b31d248118cc9405eedae28433df7070f6
diff --git a/README.md b/README.md index e2f6847..6fd05d5 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,15 @@ select { } |> conn.SelectAsync<Person> ``` +To use LIKE operator in `where` condition, use `like`: + +```f# +select { + table "Persons" + where (like "FirstName" "%partofname%") +} |> conn.Sel...
[ "README.md", "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/MSSQL.fs", "tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs index a327ad3..228d52f 100644 --- a/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs +++ b/tests/Dapper.FSharp.Tests/MSSQL/SelectTests.fs @@ -113,6 +113,39 @@ let tests (conn:IDbConnection) = Tests.testList "SELEC...
true
Dzoukr/Dapper.FSharp
3
issue_to_patch
Fix updateOutputAsync bug with updating option value to Some
Issue: When using updateOutputAsync method with record with Option of value Some dapper throws an exception: Implicit conversion from data type sql_variant to <type> is not allowed. Reproduce: I created a test case for this: "Updates option field to Some and outputs record". In the first commit this test still fails...
03693ebac5ddc061b53b48658c69056ca5106335
4344858856a737449fdddb346b17875984bfcf99
diff --git a/src/Dapper.FSharp/MSSQL.fs b/src/Dapper.FSharp/MSSQL.fs index f94867b..b4dde7a 100644 --- a/src/Dapper.FSharp/MSSQL.fs +++ b/src/Dapper.FSharp/MSSQL.fs @@ -262,7 +262,7 @@ module private Preparators = let prepareOutputUpdate<'Input, 'Output> (q:UpdateQuery<'Input>) = let fields = typeof<'Inpu...
[ "src/Dapper.FSharp/MSSQL.fs", "tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs", "tests/Dapper.FSharp.Tests/MSSQL/InsertTests.fs", "tests/Dapper.FSharp.Tests/MSSQL/UpdateTests.fs" ]
[]
diff --git a/tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs b/tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs index 0fed808..921d312 100644 --- a/tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs +++ b/tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs @@ -30,6 +30,30 @@ let tests (conn:IDbConnection) = Tests.testList "DELETE"...
true
Dzoukr/Dapper.FSharp
2
issue_to_patch
Add support to output inserted, updated and deleted values. Fix issue with using option values in Map parameters for dapper
Created three new methods to get inserted, updated and deleted values without a separate query: InsertOutputAsync, UpdateOutputAsync, and DeleteOutputAsync. Update and delete were easy to alter to output stuff, but with insert it was necessary to change object parameters to Map parameters. Otherwise dapper throws an...
58b7eef11bd90b327a156574608e0f4c6b753569
49e09bf42e44703761c243a5ecd75d3583be0f9d
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cf0644b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*.{fs}] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false + +[*.md] +trim_trailing_whitespace = ...
[ ".editorconfig", ".paket/Paket.Restore.targets", "src/Dapper.FSharp/Builders.fs", "src/Dapper.FSharp/Dapper.FSharp.fs", "src/Dapper.FSharp/MSSQL.fs", "src/Dapper.FSharp/OptionTypes.fs", "tests/Dapper.FSharp.Tests/MSSQL/Database.fs", "tests/Dapper.FSharp.Tests/MSSQL/DeleteTests.fs", "tests/Dapper.FSh...
[]
diff --git a/tests/Dapper.FSharp.Tests/MSSQL/Database.fs b/tests/Dapper.FSharp.Tests/MSSQL/Database.fs index d735575..092a655 100644 --- a/tests/Dapper.FSharp.Tests/MSSQL/Database.fs +++ b/tests/Dapper.FSharp.Tests/MSSQL/Database.fs @@ -6,7 +6,7 @@ open System.Data open FSharp.Control.Tasks module Persons = - +...
true
EduardoPires/EquinoxProject
210
issue_to_patch
Update AGENTS setup guide to English
## Summary - update AGENTS.md to provide environment setup instructions in English ## Testing - `git status --short`
c67de07ef3196b3f8e65174a5c5e6cbb3ac11394
10d90787bbc95e7f502246e28ea58f6f3c79ad7e
diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..4841fa71 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,38 @@ +# AGENTS Setup Guide + +This repository requires environment configuration to build and run the .NET 9.0 projects. Run the installation script below with **sudo** or **root** privileges. + +#...
[ "AGENTS.md" ]
[]
true
EduardoPires/EquinoxProject
209
issue_to_patch
Fix IAspNetUser method spelling
## Summary - fix naming in `IAspNetUser` for `IsAuthenticated` - update implementation in `AspNetUser` ## Testing - `dotnet build Equinox.sln -c Release` *(fails: `dotnet` not found)*
1c23249ed5b25ba02e94719b114f71d8bbfa8be5
4470feee675d2b1501417c61868a1215623d5854
diff --git a/src/Equinox.Infra.CrossCutting.Identity/User/AspNetUser.cs b/src/Equinox.Infra.CrossCutting.Identity/User/AspNetUser.cs index b70d5c7f..f04447fe 100644 --- a/src/Equinox.Infra.CrossCutting.Identity/User/AspNetUser.cs +++ b/src/Equinox.Infra.CrossCutting.Identity/User/AspNetUser.cs @@ -19,15 +19,15 @@ publi...
[ "src/Equinox.Infra.CrossCutting.Identity/User/AspNetUser.cs", "src/Equinox.Infra.CrossCutting.Identity/User/IAspNetUser.cs" ]
[]
true
EduardoPires/EquinoxProject
207
issue_to_patch
.net 9 ajusts
22890b269cd87b2bb72efb2f544520580c373415
b3cde70fb1b5b17ab8aba7d9135c724baa7d805d
diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index a341f7fc..b1963adf 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-versio...
[ ".github/workflows/dotnet-core.yml", "src/Equinox.UI.Web/Views/Shared/_Layout.cshtml", "src/Equinox.UI.Web/wwwroot/images/banner1.svg" ]
[]
true
EduardoPires/EquinoxProject
206
issue_to_patch
Removing mediatr and automapper
048dbe16d01bf5d97c942e2c6aca33f66ce25f0d
149fe1513f824bd99a968bd80ae26f6405c0cf80
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..72bdaa25 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# Remove unused using directives +dotnet_diagnostic.CS8019.severity = error + +# Unused variables +dotnet_diagnostic.IDE0059.severity = error + +# Unused expressions (e.g., method...
[ ".editorconfig", "README.md", "global.json", "src/Equinox.Application/AutoMapper/DomainToViewModelMappingProfile.cs", "src/Equinox.Application/AutoMapper/ViewModelToDomainMappingProfile.cs", "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Application/Extensions/CustomerExtensions.cs",...
[]
diff --git a/tests/Equinox.Tests.Architecture/Support/TestOutputHelperTextWriter.cs b/tests/Equinox.Tests.Architecture/Support/TestOutputHelperTextWriter.cs index f29c4a16..4504e7ce 100644 --- a/tests/Equinox.Tests.Architecture/Support/TestOutputHelperTextWriter.cs +++ b/tests/Equinox.Tests.Architecture/Support/TestOut...
true
EduardoPires/EquinoxProject
205
issue_to_patch
fix: automatic migrations
79cf3a62ae586580314cf8408126007fbd94bfe6
0a825771958cdb5972d7e87b40e5fd31dd924dbf
diff --git a/src/Equinox.Application/Equinox.Application.csproj b/src/Equinox.Application/Equinox.Application.csproj index b3df6541..0f48314a 100644 --- a/src/Equinox.Application/Equinox.Application.csproj +++ b/src/Equinox.Application/Equinox.Application.csproj @@ -1,6 +1,6 @@ <Project Sdk="Microsoft.NET.Sdk"> <Pro...
[ "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domain/Equinox.Domain.csproj", "src/Equinox.Infra.CrossCutting.Bus/Equinox.Infra.CrossCutting.Bus.csproj", "src/Equinox.Infra.CrossCutting.Identity/Configuration/AspNetIdentityConfig.cs",...
[]
diff --git a/tests/Equinox.Tests.Architecture/Equinox.Tests.Architecture.csproj b/tests/Equinox.Tests.Architecture/Equinox.Tests.Architecture.csproj index ec3390e2..c23cbbbc 100644 --- a/tests/Equinox.Tests.Architecture/Equinox.Tests.Architecture.csproj +++ b/tests/Equinox.Tests.Architecture/Equinox.Tests.Architecture....
true
EduardoPires/EquinoxProject
204
issue_to_patch
Architecture tests
89febfa173e2bdd35938108acf41974d95934c66
e83638c96c621a8dac1de18ca1f8b35e9b880e1c
diff --git a/Equinox.sln b/Equinox.sln index 91228308..bc6aaf89 100644 --- a/Equinox.sln +++ b/Equinox.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31025.218 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34622.214 ...
[ "Equinox.sln", "docs/Architecture.dgml", "src/Equinox.Domain.Core/Models/ValueObject.cs", "src/Equinox.UI.Web/Controllers/BaseController.cs", "tests/Equinox.Tests.Architecture/DataBaseTests.cs", "tests/Equinox.Tests.Architecture/DomainTests.cs", "tests/Equinox.Tests.Architecture/Equinox.Tests.Architectu...
[]
diff --git a/tests/Equinox.Tests.Architecture/DataBaseTests.cs b/tests/Equinox.Tests.Architecture/DataBaseTests.cs new file mode 100644 index 00000000..8bfc24d1 --- /dev/null +++ b/tests/Equinox.Tests.Architecture/DataBaseTests.cs @@ -0,0 +1,37 @@ +using Equinox.Tests.Architecture.Support; +using NetArchTest.Rules; +u...
true
EduardoPires/EquinoxProject
201
issue_to_patch
.net 8 migration and refactorings
4c348d650960a30eb759f3d58ead5685ce622eb8
54d662e8608064e5ce4e3525fb5189464517f280
diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index e8608446..a341f7fc 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-versio...
[ ".github/workflows/dotnet-core.yml", "README.md", "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domain/Equinox.Domain.csproj", "src/Equinox.Infra.CrossCutting.Bus/Equinox.Infra.CrossCutting.Bus.csproj", "src/Equinox.Infra.CrossCu...
[]
true
EduardoPires/EquinoxProject
188
issue_to_patch
Updating to .NET 6
Updating to .NET 6
4e02de1909bad6b1eb662b8191848c60d0288469
7e1c6f147cf9e47188af203e5bb1e19076e960c1
diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 1a45a91c..e8608446 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-versio...
[ ".github/workflows/dotnet-core.yml", "README.md", "global.json", "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domain/Equinox.Domain.csproj", "src/Equinox.Infra.CrossCutting.Bus/Equinox.Infra.CrossCutting.Bus.csproj", "src/Equi...
[]
true
EduardoPires/EquinoxProject
183
issue_to_patch
Corrigindo data
6945cc51b8f8e696100343306951f5f8f48f94ac
8f843b1dedbc7a2068021447aa6758de32ff72db
diff --git a/README.md b/README.md index 099cfe4b..8d5688f2 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ To know more about how to setup your enviroment visit the [Microsoft .NET Downlo ## News -**v1.7 - 06/04/2021** +**v1.7 - 04/06/2021** - Migrated for .NET 5.0 - All dependencies is up to date
[ "README.md" ]
[]
true
EduardoPires/EquinoxProject
180
issue_to_patch
Migrating to .NET 5
3842298a27f1192d0b319c0c90ba9a3265b32d61
5f2e705ab84a79c8eb910b18894f543b3f35fefe
diff --git a/Equinox.sln b/Equinox.sln index 656ce10a..91228308 100644 --- a/Equinox.sln +++ b/Equinox.sln @@ -1,39 +1,39 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 -VisualStudioVersion = 16.0.29709.97 +VisualStudioVersion = 16.0.31025.218 MinimumVisualStudioVersion ...
[ "Equinox.sln", "README.md", "global.json", "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domain/Equinox.Domain.csproj", "src/Equinox.Infra.CrossCutting.Bus/Equinox.Infra.CrossCutting.Bus.csproj", "src/Equinox.Infra.CrossCutting...
[]
true
EduardoPires/EquinoxProject
165
issue_to_patch
Sonarqube improvements
53d59086fc6f6bd6807dcfed87f65314f95166c8
313009447aaa91ff9663698cd4b9b7df46a8a94e
diff --git a/src/Equinox.Application/EventSourcedNormalizers/CustomerHistory.cs b/src/Equinox.Application/EventSourcedNormalizers/CustomerHistory.cs index 388eef39..16f25865 100644 --- a/src/Equinox.Application/EventSourcedNormalizers/CustomerHistory.cs +++ b/src/Equinox.Application/EventSourcedNormalizers/CustomerHist...
[ "src/Equinox.Application/EventSourcedNormalizers/CustomerHistory.cs", "src/Equinox.Domain.Core/Models/ValueObject.cs", "src/Equinox.Infra.CrossCutting.IoC/NativeInjectorBootStrapper.cs", "src/Equinox.Infra.Data/Context/EquinoxContext.cs", "src/Equinox.Services.Api/Configurations/SwaggerConfig.cs", "src/Eq...
[]
true
EduardoPires/EquinoxProject
164
issue_to_patch
Notification messages is no longer needed
3cf0a291b2cceddda1ae1e600d2c9c05e0f271bd
8db43c265973a8fcfef2752eb13917af93d223fa
diff --git a/src/Equinox.Domain.Core/Notifications/DomainNotification.cs b/src/Equinox.Domain.Core/Notifications/DomainNotification.cs deleted file mode 100644 index 536789d6..00000000 --- a/src/Equinox.Domain.Core/Notifications/DomainNotification.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using NetDevPack.Mess...
[ "src/Equinox.Domain.Core/Notifications/DomainNotification.cs", "src/Equinox.Domain.Core/Notifications/DomainNotificationHandler.cs", "src/Equinox.Infra.CrossCutting.IoC/NativeInjectorBootStrapper.cs", "src/Equinox.UI.Web/ViewComponents/SummaryViewComponent.cs" ]
[]
true
EduardoPires/EquinoxProject
162
issue_to_patch
adjusted version number
Adjust SDK number.
bdb577ad8f0bc22aef32c32438328588cae18b43
3f367bb49ad551af4d1d5ae898507b0932f2da43
diff --git a/global.json b/global.json index 561985e3..aeeb8d6b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { - "projects": [ "src", "test" ], + "projects": ["src", "test"], "sdk": { - "version": "3.1.201" + "version": "^3.1.201" } }
[ "global.json" ]
[]
true
EduardoPires/EquinoxProject
161
issue_to_patch
NetDevPack and total refactoring
NetDevPack installed, saving hundreds of repetitive line codes.
2cbb15cff0274227642ff67928b637a60f4f17a2
cfcf63413e12248485dedcfd86012885b9a5f24b
diff --git a/global.json b/global.json index dfe9f08a..561985e3 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "projects": [ "src", "test" ], "sdk": { - "version": "3.1.101" + "version": "3.1.201" } } diff --git a/src/Equinox.Application/Interfaces/ICustomerAppService.cs b/src/Equinox.App...
[ "global.json", "src/Equinox.Application/Interfaces/ICustomerAppService.cs", "src/Equinox.Application/Services/CustomerAppService.cs", "src/Equinox.Domain.Core/Bus/IMediatorHandler.cs", "src/Equinox.Domain.Core/Commands/Command.cs", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domai...
[]
true
EduardoPires/EquinoxProject
156
issue_to_patch
Create CODE_OF_CONDUCT.md
1de2ca9e2736b202dbcd14fd16755addbaf63dec
624133b3b2847b2d603de5ec145b6671fd7c8521
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..b1535c81 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledg...
[ "CODE_OF_CONDUCT.md" ]
[]
true
EduardoPires/EquinoxProject
111
issue_to_patch
Corrigindo CustomerMap.cs
Correção do "maxLength" de acordo com o "varchar(100)"
3ff7f9f158e36090edf22bdb1d5ea69496224825
e98491a1dff99196910b5495fbb69a6f3caa0370
diff --git a/src/Equinox.Infra.Data/Mappings/CustomerMap.cs b/src/Equinox.Infra.Data/Mappings/CustomerMap.cs index a558436b..a31d0b58 100644 --- a/src/Equinox.Infra.Data/Mappings/CustomerMap.cs +++ b/src/Equinox.Infra.Data/Mappings/CustomerMap.cs @@ -18,8 +18,8 @@ public void Configure(EntityTypeBuilder<Customer> build...
[ "src/Equinox.Infra.Data/Mappings/CustomerMap.cs" ]
[]
true
EduardoPires/EquinoxProject
97
issue_to_patch
Update version from 1.2 to 1.3
Update EquinoxProject version (footer) from 1.2 to 1.3
905124b2b93ea62eae7d31459075b4a4b7866ec9
a20f7b0da7ab1230a051efda9b9007327763d7a1
diff --git a/src/Equinox.UI.Site/Views/Shared/_Layout.cshtml b/src/Equinox.UI.Site/Views/Shared/_Layout.cshtml index 97168087..c4733eee 100644 --- a/src/Equinox.UI.Site/Views/Shared/_Layout.cshtml +++ b/src/Equinox.UI.Site/Views/Shared/_Layout.cshtml @@ -40,7 +40,7 @@ @RenderBody() <hr /> <fo...
[ "src/Equinox.UI.Site/Views/Shared/_Layout.cshtml" ]
[]
true
EduardoPires/EquinoxProject
53
issue_to_patch
Changed to use native EF Core 2.0 mapping configuration
Hi Eduardo, The Entity Framework Core 2.0 implements a native configuration of entity mappings. I made the change and eliminated the unnecessary use of a custom implementation.
4c8e88129c8cc7f4e6bcef73507f5f64e15f3ce2
3447370dc7321c7ac3d905720bfbf0489efd694e
diff --git a/src/Equinox.Infra.Data/Context/EquinoxContext.cs b/src/Equinox.Infra.Data/Context/EquinoxContext.cs index e6e067a8..c491c2c1 100644 --- a/src/Equinox.Infra.Data/Context/EquinoxContext.cs +++ b/src/Equinox.Infra.Data/Context/EquinoxContext.cs @@ -1,7 +1,6 @@ using System.IO; using Equinox.Domain.Models; ...
[ "src/Equinox.Infra.Data/Context/EquinoxContext.cs", "src/Equinox.Infra.Data/Context/EventStoreSQLContext.cs", "src/Equinox.Infra.Data/Extensions/EntityTypeConfiguration.cs", "src/Equinox.Infra.Data/Extensions/ModelBuilderExtensions.cs", "src/Equinox.Infra.Data/Mappings/CustomerMap.cs", "src/Equinox.Infra....
[]
true
EduardoPires/EquinoxProject
24
issue_to_patch
Using ProjectTo from AutoMapper
1f52269f7bbaa1cea420059b4319c7076366a10f
9674ce3bd6989cd0d46d0fbc299d4e013c8d135b
diff --git a/src/Equinox.Application/Services/CustomerAppService.cs b/src/Equinox.Application/Services/CustomerAppService.cs index 50fa341e..00cb2f96 100644 --- a/src/Equinox.Application/Services/CustomerAppService.cs +++ b/src/Equinox.Application/Services/CustomerAppService.cs @@ -1,6 +1,7 @@ using System; using Sy...
[ "src/Equinox.Application/Services/CustomerAppService.cs", "src/Equinox.Domain/Interfaces/IRepository.cs", "src/Equinox.Infra.Data/Repository/CustomerRepository.cs", "src/Equinox.Infra.Data/Repository/Repository.cs" ]
[]
true
EduardoPires/EquinoxProject
22
issue_to_patch
Added a lightweight WebApi Core to the solution.
Added a lightweight WebApi Core to the solution, without any reference to full MVC. It just reference to: - Microsoft.AspNetCore - Microsoft.AspNetCore.Authentication - Microsoft.AspNetCore.Mvc.Core - Microsoft.AspNetCore.Mvc.Cors Fix #19
1f52269f7bbaa1cea420059b4319c7076366a10f
ff58fb61dd91c7c409522f02eee102afdbefa700
diff --git a/Equinox.sln b/Equinox.sln index 335ce580..f31ef25a 100644 --- a/Equinox.sln +++ b/Equinox.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.26228.4 +VisualStudioVersion = 15.0.26430.16 MinimumVisualStudioVersion = 10.0.40219...
[ "Equinox.sln", "README.md", "src/Equinox.Application/Equinox.Application.csproj", "src/Equinox.Domain.Core/Equinox.Domain.Core.csproj", "src/Equinox.Domain/Equinox.Domain.csproj", "src/Equinox.Infra.CrossCutting.Identity/Equinox.Infra.CrossCutting.Identity.csproj", "src/Equinox.Infra.CrossCutting.IoC/Eq...
[]
true
EduardoPires/EquinoxProject
6
issue_to_patch
Adding extensions and separating entity configuration for better code d…
Hi Eduardo, How the Entity Framework Core don't implement the class EntityTypeConfiguration and the possibility of add configuration by modelBuilder. I implemented a solution for this problem using extension methods. I hope you enjoy!
4ca588a563b4d10544120ccfa6863d348828e64b
da014d9d3cecaaa70bf885a3fc5703024d5b15e3
diff --git a/src/Equinox.Infra.Data/Context/EquinoxContext.cs b/src/Equinox.Infra.Data/Context/EquinoxContext.cs index 06419b47..e6e067a8 100644 --- a/src/Equinox.Infra.Data/Context/EquinoxContext.cs +++ b/src/Equinox.Infra.Data/Context/EquinoxContext.cs @@ -1,5 +1,7 @@ using System.IO; using Equinox.Domain.Models; ...
[ "src/Equinox.Infra.Data/Context/EquinoxContext.cs", "src/Equinox.Infra.Data/Context/EventStoreSQLContext.cs", "src/Equinox.Infra.Data/Extensions/EntityTypeConfiguration.cs", "src/Equinox.Infra.Data/Extensions/ModelBuilderExtensions.cs", "src/Equinox.Infra.Data/Mappings/CustomerMap.cs", "src/Equinox.Infra....
[]
true
EduardoPires/EquinoxProject
5
issue_to_patch
fix migrations on development environment
There is a issue when you try to run the initial migrations. It presents a error message saying that the project.json file couldnt be found at the \bin\Debug folder. This change fixes that.
c108bb3aac7f622b694130fbfca9c11bbcef0d56
40bc1271f5c97bcb14b163919ce662d2fae92c20
diff --git a/src/Equinox.UI.Site/project.json b/src/Equinox.UI.Site/project.json index 09ff9628..370a7085 100644 --- a/src/Equinox.UI.Site/project.json +++ b/src/Equinox.UI.Site/project.json @@ -63,7 +63,10 @@ "buildOptions": { "emitEntryPoint": true, - "preserveCompilationContext": true + "preserveComp...
[ "src/Equinox.UI.Site/project.json" ]
[]
true
Egonex-AI/Understand-Anything
419
issue_to_patch
feat(install): add Nanobot platform support
## Summary This adds Nanobot as another supported Agent Skills platform, in the same spirit as OpenClaw and Hermes. Nanobot discovers skills from `~/.nanobot/workspace/skills/<skill>/SKILL.md`, so the installer uses the existing per-skill linking flow instead of linking one bundled folder. The new platform is appende...
ef7adac58e98c7c3f1a55602a6acb960ca424a85
8de0b3b11d395e8692fea4846d27275ad6d3ba5d
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 839168bc..adb068e4 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project",...
[ ".claude-plugin/plugin.json", ".copilot-plugin/plugin.json", ".cursor-plugin/plugin.json", "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.ru-RU.md", "READMEs/README.tr-TR.md", "READMEs/README.zh-CN.md", "READMEs/README.zh-TW.md", "...
[]
true
Egonex-AI/Understand-Anything
422
issue_to_patch
[codex] sync egonex organization metadata
## Summary - Sync public project metadata from the original personal repo identity to the Egonex organization identity. - Update homepage and README messaging to connect the open-source Understand Anything project with Egonex's broader narrative: "Understand Anything. Understand Anyone. AI should help people, not repl...
ef7adac58e98c7c3f1a55602a6acb960ca424a85
fb1356ae321d7fab987108616ec4e105fb973af3
diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 39a8451d..92c37f90 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -4,7 +4,7 @@ "description": "LLM-powered codebase analysis producing interactive knowledge graphs, guided tours, and deep-div...
[ ".claude-plugin/marketplace.json", ".claude-plugin/plugin.json", ".copilot-plugin/plugin.json", ".cursor-plugin/plugin.json", ".github/FUNDING.yml", ".github/ISSUE_TEMPLATE/config.yml", "LICENSE", "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "RE...
[]
diff --git a/docs/superpowers/specs/2026-03-15-homepage-design.md b/docs/superpowers/specs/2026-03-15-homepage-design.md index ef1f8be0..3cb20cf4 100644 --- a/docs/superpowers/specs/2026-03-15-homepage-design.md +++ b/docs/superpowers/specs/2026-03-15-homepage-design.md @@ -45,7 +45,7 @@ Staggered fade-in animation: -...
true
Egonex-AI/Understand-Anything
347
issue_to_patch
feat(core): add Kotlin structural analysis via tree-sitter
## Summary Wires Kotlin into the existing tree-sitter pipeline so `.kt` and `.kts` files now produce functions, classes, data classes, sealed classes, interfaces, objects, imports, exports, and call-graph edges — matching the behavior of the other language extractors. `kotlinConfig` already existed as a stub (no `tre...
26edf61856fa476e466bda1814819a266a293c47
235f2fafc84474243a79294f12b97318698cd639
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3eb7e7ab..0b9b06ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -57,6 +57,9 @@ importers: understand-anything-plugin/packages/core: dependencies: + '@tree-sitter-grammars/tree-sitter-kotlin': + specifier: 1.1.0 + version: 1.1.0 ...
[ "pnpm-lock.yaml", "understand-anything-plugin/packages/core/package.json", "understand-anything-plugin/packages/core/src/languages/configs/kotlin.ts", "understand-anything-plugin/packages/core/src/plugins/extractors/__tests__/kotlin-extractor.test.ts", "understand-anything-plugin/packages/core/src/plugins/e...
[]
diff --git a/understand-anything-plugin/packages/core/src/plugins/extractors/__tests__/kotlin-extractor.test.ts b/understand-anything-plugin/packages/core/src/plugins/extractors/__tests__/kotlin-extractor.test.ts new file mode 100644 index 00000000..db12d0fb --- /dev/null +++ b/understand-anything-plugin/packages/core/...
true
Egonex-AI/Understand-Anything
359
issue_to_patch
Import resolver misses NodeNext .js→.ts rewrite — near-edgeless graph for ESM TypeScript projects ## Summary The bundled import resolver (`skills/understand/extract-import-map.mjs`) does not apply the NodeNext/ESM `.js → .ts` (and `.jsx/.mjs/.cjs → .tsx/.mts/.cts`) extension rewrite. As a result, in any TypeScript pr...
fix(extract-import-map): apply NodeNext .js→.ts rewrite (#294)
## Summary Closes #294 — the bundled import resolver was producing near-edgeless knowledge graphs for any modern ESM TypeScript project because it didn't apply the NodeNext / Node16 \`.js → .ts\` rewrite. ## Why this matters Under \`moduleResolution: NodeNext\` (or \`Node16\` / \`Bundler\` with explicit extensions —...
26edf61856fa476e466bda1814819a266a293c47
143b4e492f7b524f6ec6953eeeee77d2c91d3e79
diff --git a/understand-anything-plugin/skills/understand/extract-import-map.mjs b/understand-anything-plugin/skills/understand/extract-import-map.mjs index 00f9181d..f4724645 100644 --- a/understand-anything-plugin/skills/understand/extract-import-map.mjs +++ b/understand-anything-plugin/skills/understand/extract-impo...
[ "tests/skill/understand/test_extract_import_map.test.mjs", "understand-anything-plugin/skills/understand/extract-import-map.mjs" ]
[]
diff --git a/tests/skill/understand/test_extract_import_map.test.mjs b/tests/skill/understand/test_extract_import_map.test.mjs index 0f172774..8a7e0198 100644 --- a/tests/skill/understand/test_extract_import_map.test.mjs +++ b/tests/skill/understand/test_extract_import_map.test.mjs @@ -342,6 +342,150 @@ describe('extra...
true
Egonex-AI/Understand-Anything
387
issue_to_patch
Phase 7 cleanup uses `rm -rf` which conflicts with destructive-action policies on hardened hosts ## What `/understand`'s Phase 7 step 4 (`skills/understand/SKILL.md`) cleans up its scratch directories with: ```bash rm -rf $PROJECT_ROOT/.understand-anything/intermediate rm -rf $PROJECT_ROOT/.understand-anything/tmp `...
fix(skill): use mv-to-trash + delayed purge for Phase 7 cleanup (#301)
## Summary - Phase 7 step 4 in `understand-anything-plugin/skills/understand/SKILL.md` previously `rm -rf`ed `intermediate/` and `tmp/` — both directories created only seconds earlier by Phase 0. On hardened hosts with destructive-action gates (e.g. freshness-window checks that flag deleting just-created paths), this ...
7a3b7511b26a1816be3b6cc5683b34779e0abce9
b3da919223e750b8d1322425a0a7219313cb8c4f
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index 35c0b112..10bf9ccb 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -129,6 +129,10 @@ Determine whether to run...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[]
true
Egonex-AI/Understand-Anything
346
issue_to_patch
perf(understand): parallelise file I/O in compute-batches + extract-import-map (#76)
## Summary The /understand pipeline reads every code file twice during analysis: 1. **`compute-batches.mjs`** — `extractExports()` reads + parses every code file once to build the cross-batch neighbour map (each batch's connected-symbol set), so the LLM gets accurate cross-batch edge candidates. 2. **`extract-import-...
26edf61856fa476e466bda1814819a266a293c47
1f8d165f86491f5931ab27aa059066fdb0c18111
diff --git a/understand-anything-plugin/skills/understand/compute-batches.mjs b/understand-anything-plugin/skills/understand/compute-batches.mjs index b7cce342..f78d46a3 100644 --- a/understand-anything-plugin/skills/understand/compute-batches.mjs +++ b/understand-anything-plugin/skills/understand/compute-batches.mjs @...
[ "tests/skill/understand/test_extract_import_map.test.mjs", "understand-anything-plugin/skills/understand/compute-batches.mjs", "understand-anything-plugin/skills/understand/extract-import-map.mjs" ]
[]
diff --git a/tests/skill/understand/test_extract_import_map.test.mjs b/tests/skill/understand/test_extract_import_map.test.mjs index ee64136d..a4be65ab 100644 --- a/tests/skill/understand/test_extract_import_map.test.mjs +++ b/tests/skill/understand/test_extract_import_map.test.mjs @@ -1492,3 +1492,55 @@ describe('extr...
true
Egonex-AI/Understand-Anything
378
issue_to_patch
feat(understand): auto-detect conversation language on first run
## Summary On the first `/understand` run in a project (no `--language` flag, no stored `outputLanguage`), the skill now detects the conversation language and — only when it is non-English — confirms once before generating, persisting the choice to `config.json`. This fixes the silent English-default surprise for non-...
025b884935a12b11e422d9b7338ca54e368dcbe5
55d0ab23362eafa789a6b4c56c34587444d64a98
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 5c75bd70..839168bc 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project",...
[ ".claude-plugin/plugin.json", ".copilot-plugin/plugin.json", ".cursor-plugin/plugin.json", "README.md", "docs/superpowers/plans/2026-06-03-language-auto-detection.md", "docs/superpowers/specs/2026-06-03-language-auto-detection-design.md", "understand-anything-plugin/.claude-plugin/plugin.json", "under...
[]
diff --git a/docs/superpowers/specs/2026-06-03-language-auto-detection-design.md b/docs/superpowers/specs/2026-06-03-language-auto-detection-design.md new file mode 100644 index 00000000..c3b5278c --- /dev/null +++ b/docs/superpowers/specs/2026-06-03-language-auto-detection-design.md @@ -0,0 +1,147 @@ +# Conversation-L...
true
Egonex-AI/Understand-Anything
350
issue_to_patch
docs: add GitHub issue templates (bug report and feature request) ## Problem The `.github/` directory currently has no issue templates. Contributors have to guess what information to include when filing bugs or feature requests, leading to incomplete reports and extra triage back-and-forth. ## Suggested Solution Ad...
chore(repo): community templates, CoC, SECURITY, package metadata, CI on main (#248, #249, #251, #252)
## Summary Closes a cluster of community-profile gaps in one cohesive PR rather than four micro-PRs all touching the same surface: - **#251 / #252** Issue + PR templates - **#249** CI now runs on pushes to `main` (not only PRs) with a concurrency group - **#248** \`package.json\` gets the description / license / repo...
26edf61856fa476e466bda1814819a266a293c47
aef940fcdec3499160932831376a2a7f09f6b397
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..0a53fd4e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,85 @@ +name: Bug report +description: Report something that isn't working +title: "bug: " +labels: ["bug"] +body: ...
[ ".github/ISSUE_TEMPLATE/bug_report.yml", ".github/ISSUE_TEMPLATE/config.yml", ".github/ISSUE_TEMPLATE/feature_request.yml", ".github/ISSUE_TEMPLATE/question.yml", ".github/PULL_REQUEST_TEMPLATE.md", ".github/workflows/ci.yml", "CODE_OF_CONDUCT.md", "SECURITY.md", "package.json" ]
[]
true
Egonex-AI/Understand-Anything
343
issue_to_patch
chore: .gitignore has duplicate `__pycache__/` entry ## Problem `.gitignore` lists `__pycache__/` twice. While harmless, it suggests the file needs a cleanup pass. Would also be good to add `.venv/`, `venv/`, `*.pyo`, and `Thumbs.db` while there. ## Fix Remove duplicate entry and add missing common patterns. Perfec...
chore: clean up duplicate gitignore patterns
Fixes #250 ## Summary - Remove duplicate `__pycache__/` entry from `.gitignore` - Add common virtual environment, Python bytecode, and Windows cache ignore patterns ## Validation - Ran `git diff --check` - Confirmed only `.gitignore` changed - Not applicable: gitignore-only change
26edf61856fa476e466bda1814819a266a293c47
d2d4d231567084ee3838f88e0a22f8d5bd13465b
diff --git a/.gitignore b/.gitignore index 8087a9e9..004f0a92 100644 --- a/.gitignore +++ b/.gitignore @@ -12,5 +12,8 @@ __pycache__/ .worktrees/ homepage/public/demo/ .private/ -__pycache__/ +.venv/ +venv/ *.pyc +*.pyo +Thumbs.db
[ ".gitignore" ]
[]
true
Egonex-AI/Understand-Anything
332
issue_to_patch
Incremental: Phase 7 cleanup deletes scan-result.json, forcing Phase 1 re-run on every subsequent incremental ## Summary The `/understand` skill's Phase 7 cleanup step deletes `intermediate/`, including `scan-result.json`. But Phase 2's incremental path (`compute-batches.mjs --changed-files=...`) requires `scan-resul...
fix(skill): preserve scan-result.json across Phase 7 cleanup for incremental runs (#293)
## Summary Fix #293: `/understand`'s Phase 7 cleanup deletes `intermediate/scan-result.json`, but Phase 2's incremental path (`compute-batches.mjs --changed-files=…`) requires it. Every "incremental" run is forced to re-dispatch Phase 1 SCAN — ~157k tokens / ~158s wasted per spoke, even when the inventory hasn't str...
26edf61856fa476e466bda1814819a266a293c47
928b997c57069c78e191be0bc0aacb3b182529b0
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index b66dcc25..610a9dd6 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -770,9 +770,16 @@ Report to the user: `[Ph...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[]
true
Egonex-AI/Understand-Anything
199
issue_to_patch
Why my Cursor can't discover this plugin automatically ? I have tried losts of ways to install this plugin for Cursor. But all of them can not work. 1. Clone And Open it in Cursor,but it did not work. 2. add a softlink which is from ~/.cursor/plugins/local/understand-anything to this repo which have been cloned loc...
docs(readme): note Cursor manual install fallback when auto-discovery fails
## Summary The Cursor section currently says auto-discovery just works when the repo is cloned. In practice some users hit cases where it doesn't (see #172), and the workaround only lives in an issue comment. This PR adds one sentence to the Cursor section documenting the community-reported fallback: open **Cursor Se...
42d70c3f9c2a494efc7c24567655b54c83fcaeb7
0db7b3c79516222b8ed57f8fe4ca8c95bcd980d4
diff --git a/README.md b/README.md index 07e27692..d68f341d 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,8 @@ The installer clones the repo to `~/.understand-anything/repo` and creates the r Cursor auto-discovers the plugin via `.cursor-plugin/plugin.json` when this repo is cloned. No manual installation ne...
[ "README.md" ]
[]
true
Egonex-AI/Understand-Anything
235
issue_to_patch
feat: Add Trae platform support ## Feature Request Please add Trae (ByteDance AI IDE) to the supported platform list. Trae supports the Agent Skills standard and its skill directory is `~/.trae/skills/`.
feat(install): add Trae (ByteDance AI IDE) platform support (#229)
## Summary Adds Trae (ByteDance AI IDE) to the supported platform list, as requested in #229. Trae supports the Agent Skills standard (SKILL.md), so this PR follows the established `per-skill` install pattern (same shape as `codex` / `vibe` / `kimi` etc.) — no new manifest directory, no logic changes, purely a data...
1a16e4de615596d703cbf67f50ee2bb3f5ffde00
b4b599e21486411bd32a57bf6db61e20847aa133
diff --git a/README.md b/README.md index d68f341d..3bdb4db2 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ <a href="#gemini-cli"><img src="https://img.shields.io/badge/Gemini_CLI-4285F4" alt="Gemini CLI" /></a> <a href="#opencode"><img src="https://img.shields.io/badge/OpenCode-38bdf8" alt="OpenCode" />...
[ "README.md", "install.ps1", "install.sh" ]
[]
true
Egonex-AI/Understand-Anything
227
issue_to_patch
extract-import-map: tsconfig paths targets with leading ./ (e.g. "@/*": ["./*"]) fail to resolve → cross-module import edges dropped ### Version Plugin 2.7.5 (Claude Code). ### Summary When a project's `tsconfig.json` declares path aliases whose **target starts with `./`** — e.g. the very common `"@/*": ["./...
fix(extract-import-map): normalize tsconfig path-alias candidates with leading "./" (#214)
## Summary Fix #214: tsconfig `paths` targets with leading `./` (e.g. `"@/*": ["./*"]`, which is the `create-next-app` default) failed to resolve in `extract-import-map.mjs`, silently dropping all cross-module import edges for affected projects. ## Root cause In `resolveTsJsImport` (skills/understand/extract-import-...
470cc01dc5f9236a93eb704afdd479cd5db79710
d9ae3c290c73b6494dae0a8317581d45124c2dd7
diff --git a/understand-anything-plugin/skills/understand/extract-import-map.mjs b/understand-anything-plugin/skills/understand/extract-import-map.mjs index 6c547d36..00f9181d 100644 --- a/understand-anything-plugin/skills/understand/extract-import-map.mjs +++ b/understand-anything-plugin/skills/understand/extract-impo...
[ "tests/skill/understand/test_extract_import_map.test.mjs", "understand-anything-plugin/skills/understand/extract-import-map.mjs" ]
[]
diff --git a/tests/skill/understand/test_extract_import_map.test.mjs b/tests/skill/understand/test_extract_import_map.test.mjs index ee64136d..0f172774 100644 --- a/tests/skill/understand/test_extract_import_map.test.mjs +++ b/tests/skill/understand/test_extract_import_map.test.mjs @@ -237,6 +237,111 @@ describe('extra...
true
Egonex-AI/Understand-Anything
208
issue_to_patch
docs(readme): add Cursor manual install fallback to 7 translated READMEs
## Summary PR #199 added the community-reported Cursor manual-install workaround to `README.md` after users hit auto-discovery failures (#172). The seven translated READMEs under `READMEs/` still only describe auto-discovery and omit the fallback. This PR mirrors #199 into each locale file so non-English readers get t...
470cc01dc5f9236a93eb704afdd479cd5db79710
47e9001634394caa6f2d00f7983973f9f5410de1
diff --git a/READMEs/README.es-ES.md b/READMEs/README.es-ES.md index 27884f99..542d83b1 100644 --- a/READMEs/README.es-ES.md +++ b/READMEs/README.es-ES.md @@ -205,6 +205,8 @@ El instalador clona el repositorio en `~/.understand-anything/repo` y crea los e Cursor detecta automáticamente el plugin a través de `.cursor...
[ "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.ru-RU.md", "READMEs/README.tr-TR.md", "READMEs/README.zh-CN.md", "READMEs/README.zh-TW.md" ]
[]
true
Egonex-AI/Understand-Anything
231
issue_to_patch
fix(scan-project): preserve non-ASCII path bytes via `git ls-files -z`
## Summary `enumerateViaGit` in `scan-project.mjs` runs `git ls-files -co --exclude-standard` (newline-separated output) and parses with `split('\n').map(trim)`. Without `-z`, git C-escapes non-ASCII path bytes and wraps the result in double quotes — for example, a directory named `30. 🏗️ docs/` is emitted as `"30. \...
470cc01dc5f9236a93eb704afdd479cd5db79710
b4d856d3b895974b072bc236c451fa0848e7c312
diff --git a/understand-anything-plugin/skills/understand/scan-project.mjs b/understand-anything-plugin/skills/understand/scan-project.mjs index 553a82ec..83ccc7d1 100644 --- a/understand-anything-plugin/skills/understand/scan-project.mjs +++ b/understand-anything-plugin/skills/understand/scan-project.mjs @@ -464,17 +4...
[ "understand-anything-plugin/skills/understand/scan-project.mjs" ]
[]
true
Egonex-AI/Understand-Anything
171
issue_to_patch
docs(skills): update graph structure references
## Summary - Update graph structure references in user-facing understand skills to include current code, non-code, domain, and knowledge node types. - Expand key edge examples so skill guidance reflects the current knowledge graph schema. - Clarify diff and onboarding instructions so non-code file-level nodes are in...
17eed788767d97dc29cfe812640af0133a97f767
a30c226bf4c54be0f8764e21fae6c9dc1efbf507
diff --git a/understand-anything-plugin/skills/understand-chat/SKILL.md b/understand-anything-plugin/skills/understand-chat/SKILL.md index b49749e3..b4910221 100644 --- a/understand-anything-plugin/skills/understand-chat/SKILL.md +++ b/understand-anything-plugin/skills/understand-chat/SKILL.md @@ -12,11 +12,13 @@ Answe...
[ "understand-anything-plugin/skills/understand-chat/SKILL.md", "understand-anything-plugin/skills/understand-diff/SKILL.md", "understand-anything-plugin/skills/understand-explain/SKILL.md", "understand-anything-plugin/skills/understand-onboard/SKILL.md" ]
[]
true
Egonex-AI/Understand-Anything
200
issue_to_patch
ProviderModelNotFoundError ERROR Hi, I get the issue below while running `/understand` using project-scanner agent: │ Project-Scanner Task — Phase 1 SCAN project ProviderModelNotFoundError │ Project-Scanner Task Task — Phase 1 SCAN project (retry 2) ProviderModelNotFoundError ctrl+x down view subagents Thought: The...
fix(agents): omit `model: inherit` so non-Claude tools don't see a bad model id
## Summary Fixes #167 (`ProviderModelNotFoundError` when running `/understand` on opencode + deepseek and similar setups). `model: inherit` is a **Claude Code-specific** keyword meaning "use the parent session's model." Other tools that read the same agent frontmatter (opencode, codex, etc.) don't understand it — the...
42d70c3f9c2a494efc7c24567655b54c83fcaeb7
0566ea8b6b0f5e301ea125736e89568047105dd1
diff --git a/CLAUDE.md b/CLAUDE.md index 9ab3dc7a..13b831e9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -26,7 +26,7 @@ An open-source tool combining LLM intelligence + static analysis to produce inte ## Agent Pipeline - Agents write intermediate results to `.understand-anything/intermediate/` on disk (not returned to...
[ "CLAUDE.md", "understand-anything-plugin/agents/architecture-analyzer.md", "understand-anything-plugin/agents/article-analyzer.md", "understand-anything-plugin/agents/assemble-reviewer.md", "understand-anything-plugin/agents/domain-analyzer.md", "understand-anything-plugin/agents/file-analyzer.md", "und...
[]
true
Egonex-AI/Understand-Anything
204
issue_to_patch
Frequently seeing output limit exceeded Frequently seeing, with OPUS bedrock. Repo with just 100 files. Batch X failed again (output limit). Retrying with minimal output mode. Can we ask it to split into more number of smaller batches.
fix(#159): semantic batching + bundled importMap + Phase 1 speedup
## Summary Closes #159. The file-analyzer agent was hitting Bedrock OPUS's output cap on repos with ~100+ files and silently dropping nodes/edges. Rather than a band-aid, this PR restructures Phases 1, 1.5, and 2 of `/understand` for scale and reliability. ## What changed ### Phase 1 — `project-scanner` - **New `sca...
42d70c3f9c2a494efc7c24567655b54c83fcaeb7
969e8344f7987f3145a07e6690fb7f6a43d47803
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 3f1b6b22..5c75bd70 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project",...
[ ".claude-plugin/plugin.json", ".copilot-plugin/plugin.json", ".cursor-plugin/plugin.json", ".github/workflows/ci.yml", "CLAUDE.md", "docs/superpowers/plans/2026-05-24-semantic-batching-and-output-chunking-impl.md", "docs/superpowers/specs/2026-05-24-semantic-batching-and-output-chunking-design.md", "p...
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Classify .env dotfiles correctly**\n\n`detectCategory()` derives `ext` via `path.extname`, but for dotfiles like `.env` Node returns an empty string, so the `.env` mapping in `CATEGORY_BY_EXT` is never used. Th...
diff --git a/docs/superpowers/specs/2026-05-24-semantic-batching-and-output-chunking-design.md b/docs/superpowers/specs/2026-05-24-semantic-batching-and-output-chunking-design.md new file mode 100644 index 00000000..d100632c --- /dev/null +++ b/docs/superpowers/specs/2026-05-24-semantic-batching-and-output-chunking-des...
true
Egonex-AI/Understand-Anything
186
issue_to_patch
Dashboard CSS broken when plugin is installed in a gitignored directory (Tailwind v4 source detection fails) ## Bug When the plugin is installed inside a directory that is gitignored by an ancestor git repo (e.g. `~/.claude/plugins/cache/` is ignored by `~/.claude/.gitignore`), the dashboard renders with no Tailwind ...
fix(dashboard): explicit @source for Tailwind v4 (fixes #179)
## Summary Fixes #179 — dashboard renders unstyled when the plugin is installed in a gitignored directory (which is the default marketplace install path: `~/.claude/plugins/cache/...`, ignored by `~/.claude/.gitignore`). ## Root cause Tailwind v4 source detection walks the nearest `.git` via `git ls-files`. When the d...
dbba0703a9a8cb62854f96121586051f4ed7b591
96c412bcc1cdd43263771c94e49a188a7f4b5558
diff --git a/understand-anything-plugin/packages/dashboard/src/index.css b/understand-anything-plugin/packages/dashboard/src/index.css index 785f327b..7772fc5d 100644 --- a/understand-anything-plugin/packages/dashboard/src/index.css +++ b/understand-anything-plugin/packages/dashboard/src/index.css @@ -1,4 +1,6 @@ @imp...
[ "understand-anything-plugin/packages/dashboard/src/index.css" ]
[]
true
Egonex-AI/Understand-Anything
187
issue_to_patch
Lack of practical progress reporting Batch 1 Batch 2 Batch 3 ... Batch 49 Batch 50 Batch 51 ... Ate 93% of 5h session allowance, and there is no indication as to whether I'm 1%, 10%, 50% or 90% through the whole thing.
fix(ux): add progress reporting to /understand pipeline
## Summary Fixes #182. Running `/understand` on large codebases (50+ batches) gives no indication of overall progress. Users see "Batch 1", "Batch 2", etc. with no total count and no sense of which pipeline phase they're in. This adds progress reporting instructions to the `/understand` skill definition: - Phase st...
dbba0703a9a8cb62854f96121586051f4ed7b591
31ae12b65c6ca621c9ca6d33174bb9cece130d7f
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index 9b600aa4..28d131bc 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -20,6 +20,25 @@ Analyze the current codeba...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[]
true
Egonex-AI/Understand-Anything
177
issue_to_patch
chore(deps): bump astro to 6.3.7 and dashboard vite to 6.4.2 for security fixes
## Summary Bumps two direct dependencies to resolve CVEs surfaced by a Snyk SCA scan of the monorepo, plus a lockfile refresh that sweeps up several transitive fixes that the bumps make reachable. ### Direct dependency upgrades - `homepage/package.json`: `astro` `^6.0.4` → `^6.1.6` (lockfile resolves to `6.3.7...
4bd6f78dff044728d529ba6bc69a85d09b2bdf31
4ef12f39a6c543aad378b76da4a921fba8bbaa15
diff --git a/homepage/package.json b/homepage/package.json index 3223393f..eade656f 100644 --- a/homepage/package.json +++ b/homepage/package.json @@ -12,6 +12,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^6.0.4" + "astro": "^6.1.6" } } \ No newline at end of file diff --git a/pnpm-lock.y...
[ "homepage/package.json", "pnpm-lock.yaml", "understand-anything-plugin/packages/dashboard/package.json" ]
[]
true
Egonex-AI/Understand-Anything
161
issue_to_patch
chore: add ESLint tooling with TypeScript support
## Summary The repository has a pnpm lint script that runs eslint . but ESLint and typescript-eslint were not listed in devDependencies, causing the script to fail. Added: - eslint (^9.0.0) - @eslint/js (^9.0.0) - typescript-eslint (^8.0.0) Also added eslint.config.mjs with flat config format (ESLint 9+) using types...
58411ac1f719b41ccb556beedd4def75c8ab48f1
a1261b48830110319dba17dc4d7a0a0228faecf5
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82135cbf..c0063d1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: - name: Install dependencies run: pnpm install + - name: Lint + run: pnpm lint + - name: Build core ...
[ ".github/workflows/ci.yml", "eslint.config.mjs", "package.json", "pnpm-lock.yaml", "scripts/generate-large-graph.mjs", "understand-anything-plugin/packages/core/src/__tests__/plugin-discovery.test.ts", "understand-anything-plugin/packages/core/src/__tests__/schema.test.ts", "understand-anything-plugin...
[ { "comment": "New devDependencies were added but pnpm-lock.yaml wasn’t updated (it currently has no entries for eslint/@eslint/js/typescript-eslint). In CI, pnpm commonly runs with a frozen lockfile, so this will likely fail installation. Please run `pnpm install` and commit the resulting pnpm-lock.yaml changes...
diff --git a/understand-anything-plugin/packages/core/src/__tests__/plugin-discovery.test.ts b/understand-anything-plugin/packages/core/src/__tests__/plugin-discovery.test.ts index aa47112b..31271e74 100644 --- a/understand-anything-plugin/packages/core/src/__tests__/plugin-discovery.test.ts +++ b/understand-anything-p...
true
Egonex-AI/Understand-Anything
161
comment_to_fix
chore: add ESLint tooling with TypeScript support
The `ignores` block is added as the last flat-config entry. In ESLint flat config, ignores only apply to the config object they’re defined on unless they’re defined as a dedicated global-ignores config (typically the first entry). As written, earlier configs (e.g., `@eslint/js` recommended) can still apply to files und...
58411ac1f719b41ccb556beedd4def75c8ab48f1
a1261b48830110319dba17dc4d7a0a0228faecf5
diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000..34554d0b --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,56 @@ +import eslint from '@eslint/js'; +import tseslint from 'typescript-eslint'; +import globals from 'globals'; + +export default tseslint.config( + { + ignores: [ + ...
[ "eslint.config.mjs" ]
[ { "comment": "The `ignores` block is added as the last flat-config entry. In ESLint flat config, ignores only apply to the config object they’re defined on unless they’re defined as a dedicated global-ignores config (typically the first entry). As written, earlier configs (e.g., `@eslint/js` recommended) can st...
true
Egonex-AI/Understand-Anything
164
issue_to_patch
feat(readme,homepage): add Community section with Better Stack walkthrough video
## Summary - Add a `## 🎥 Community` section near the end of `README.md` (English) and all 7 localized variants in `READMEs/` — features the Better Stack YouTube walkthrough as a 480px thumbnail-link, with an invitation for future community video/blog/tutorial contributions. - New `homepage/src/components/CommunityVid...
300056e789891e03ad1763339ec8ca8e13ec6f2f
db94d066a8e2ee81f64ae449df0f3f6a3ad6e249
diff --git a/README.md b/README.md index 469b5eb4..0ead7873 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,20 @@ File analyzers run in parallel (up to 5 concurrent, 20-30 files per batch). Supp --- +## 🎥 Community + +A community-made walkthrough by **Better Stack**. + +<p align="center"> + <a href="https:...
[ "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.ru-RU.md", "READMEs/README.tr-TR.md", "READMEs/README.zh-CN.md", "READMEs/README.zh-TW.md", "homepage/src/components/CommunityVideo.astro", "homepage/src/pages/index.astro" ]
[]
true
Egonex-AI/Understand-Anything
170
issue_to_patch
feat(readme,homepage): add Trendshift trending badge
## Summary - README (English + 7 localized variants): insert a centered Trendshift badge `<p align="center">` block directly below the tagline, before the language-switcher row. - Homepage `Hero.astro`: insert the same badge between `.hero-actions` and `.hero-enterprise` as a small social-proof element, with a subtle ...
ea4d17b484449d290c5a0f83b68bb9fe1a5ed418
33728f04a6dc27796eb82749141909ec34f1640b
diff --git a/README.md b/README.md index 0ead7873..1c75a788 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ <em>Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.</em> </p> +<p align="center"> + <a href="https://trendshift.io/repositories/23482" target="_blank"><img src="https://trends...
[ "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.ru-RU.md", "READMEs/README.tr-TR.md", "READMEs/README.zh-CN.md", "READMEs/README.zh-TW.md", "homepage/src/components/Hero.astro" ]
[]
true
Egonex-AI/Understand-Anything
175
issue_to_patch
fix: correct GitHub URL in onboarding guide footer
## Problem The generated onboarding markdown footer links to a nonexistent repository `anthropics/understand-anything` instead of the actual project URL. ## Fix Updated the URL to point to the correct repository: `Lum1104/Understand-Anything`. **File changed:** `understand-anything-plugin/src/onboard-builder.ts` (l...
17eed788767d97dc29cfe812640af0133a97f767
11c5123d61bd439f9a7def66587a18e4b3d09763
diff --git a/understand-anything-plugin/src/onboard-builder.ts b/understand-anything-plugin/src/onboard-builder.ts index ed794455..8d30402f 100644 --- a/understand-anything-plugin/src/onboard-builder.ts +++ b/understand-anything-plugin/src/onboard-builder.ts @@ -117,7 +117,7 @@ export function buildOnboardingGuide(grap...
[ "understand-anything-plugin/src/onboard-builder.ts" ]
[]
true
Egonex-AI/Understand-Anything
163
issue_to_patch
bug: extract-structure.mjs isCli guard silently no-ops when invoked via symlinked SKILL_DIR ## Summary `skills/understand/extract-structure.mjs` silently exits 0 without writing output when invoked via a symlinked `SKILL_DIR` path. The bundled `build-fingerprints.mjs` is likely affected by the same pattern. This is ...
fix(skills/understand): extract-structure isCli silently no-ops via symlinked SKILL_DIR
## Summary - Fix `extract-structure.mjs` `isCli` guard: canonicalize both `import.meta.url` and `process.argv[1]` through `realpathSync` so symlinked install paths (the Claude Code / Copilot CLI default) no longer cause silent exit-0 with no output. Closes #162. - Add `existsSync` assertion after `writeFileSync` as a ...
58411ac1f719b41ccb556beedd4def75c8ab48f1
d14d6f8f96063ae7984f54b616e949c620c7a6a9
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 67018c5a..3f1b6b22 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "understand-anything", "description": "AI-powered codebase understanding — analyze, visualize, and explain any project",...
[ ".claude-plugin/plugin.json", ".copilot-plugin/plugin.json", ".cursor-plugin/plugin.json", "understand-anything-plugin/.claude-plugin/plugin.json", "understand-anything-plugin/agents/file-analyzer.md", "understand-anything-plugin/package.json", "understand-anything-plugin/skills/understand/extract-struc...
[]
true
Egonex-AI/Understand-Anything
111
issue_to_patch
feat(dashboard): replace dagre with ELK + folder/community containers + lazy two-stage layout
## Summary Replaces dagre with ELK across the three structural-style dashboard views and reshapes the layer-detail view around **folder/community containers** that lazy-expand on demand. Fixes the horizontal-sprawl problem where layers with 50+ nodes rendered as a single ~14000px row. - **Spec:** `docs/superpowers/sp...
ab96806c087bb4eabda2510782da008c6ca4add5
2327cd74e47beeba119c48411c0465282cfc6291
diff --git a/docs/superpowers/plans/2026-05-03-graph-layout-scaling.md b/docs/superpowers/plans/2026-05-03-graph-layout-scaling.md new file mode 100644 index 00000000..05bdb5eb --- /dev/null +++ b/docs/superpowers/plans/2026-05-03-graph-layout-scaling.md @@ -0,0 +1,2304 @@ +# Graph Layout Scaling Implementation Plan + ...
[ "docs/superpowers/plans/2026-05-03-graph-layout-scaling.md", "docs/superpowers/specs/2026-05-03-graph-layout-scaling-design.md", "pnpm-lock.yaml", "understand-anything-plugin/packages/dashboard/package.json", "understand-anything-plugin/packages/dashboard/scripts/benchmark-layout.mjs", "understand-anythin...
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Keep collapsed-endpoint edges anchored to container nodes**\n\nWhen only one side of an aggregated edge is expanded, this replacement always emits raw file→file endpoints. In that case, the collapsed side's fil...
diff --git a/docs/superpowers/specs/2026-05-03-graph-layout-scaling-design.md b/docs/superpowers/specs/2026-05-03-graph-layout-scaling-design.md new file mode 100644 index 00000000..a949b50b --- /dev/null +++ b/docs/superpowers/specs/2026-05-03-graph-layout-scaling-design.md @@ -0,0 +1,488 @@ +# Dashboard Graph Layout ...
true
Egonex-AI/Understand-Anything
155
issue_to_patch
feat(dashboard): first-visit onboarding overlay
## TL;DR Add a 5-step modal that walks new users through the dashboard's core operations on first visit. Strictly additive: +282 / -0 lines across one new file and a 6-line lazy mount in `App.tsx`. Auto-hides via localStorage after dismiss; `?onboard=force` re-shows it for screenshots and demos. ## Motivation Landin...
57a25ed4aaca8a116a6f6e011a578985c18e78c6
9dfcce73a595e6088a29a02c27d14cac84c922fe
diff --git a/understand-anything-plugin/packages/dashboard/src/App.tsx b/understand-anything-plugin/packages/dashboard/src/App.tsx index 6835e0a7..4d0b3969 100644 --- a/understand-anything-plugin/packages/dashboard/src/App.tsx +++ b/understand-anything-plugin/packages/dashboard/src/App.tsx @@ -32,11 +32,20 @@ const Pat...
[ "understand-anything-plugin/packages/dashboard/src/App.tsx", "understand-anything-plugin/packages/dashboard/src/components/OnboardingOverlay.tsx", "understand-anything-plugin/packages/dashboard/src/locales/en.ts", "understand-anything-plugin/packages/dashboard/src/locales/ja.ts", "understand-anything-plugin...
[]
true
Egonex-AI/Understand-Anything
139
issue_to_patch
fix(understand-knowledge): Windows path + zod schema null compatibility
## TL;DR Four one-line fixes in `understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py` that make `/understand-knowledge` work end-to-end on Windows. Without these, on Windows 11 + Python 3.14, running the skill on a valid Karpathy wiki produces: - 100% of wikilinks become unresolved (0 edges...
3eb7700a8fe14fbdb922c0ab4f6c577e6515ad8d
f3ea1a3088efecbb8fe8cbea539709358932c38d
diff --git a/understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py b/understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py index 45d95e46..d6070512 100644 --- a/understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py +++ b/understand-anything-plug...
[ "understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py" ]
[]
true
Egonex-AI/Understand-Anything
147
issue_to_patch
Bug: understand-domain skill references domain-analyzer.md at wrong relative path ### Problem The `understand-domain` skill (`skills/understand-domain/SKILL.md`) references `agents/domain-analyzer.md` relative to the skill directory. But the file lives at the plugin root: ``` understand-anything-plugin/ ├── agents/ │...
fix(skills/understand-domain): resolve plugin root for agent prompt loading (#146)
Fixes #146 `understand-domain` was loading the domain-analyzer agent prompt via a relative path (`agents/domain-analyzer.md`), which broke when the skill was symlinked into place. Ported the `$PLUGIN_ROOT` resolution pattern from `understand/SKILL.md` so the agent prompt is loaded from the actual plugin root regardl...
04c84ab4a43f43d5d90d98556e005bc64416f743
fafb88842264443978b3c4b157cc998a5d536978
diff --git a/understand-anything-plugin/skills/understand-domain/SKILL.md b/understand-anything-plugin/skills/understand-domain/SKILL.md index 1bb1108d..f5fab143 100644 --- a/understand-anything-plugin/skills/understand-domain/SKILL.md +++ b/understand-anything-plugin/skills/understand-domain/SKILL.md @@ -42,6 +42,50 @...
[ "understand-anything-plugin/skills/understand-domain/SKILL.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Resolve bundled scanner through the plugin root**\n\nWhen `/understand-domain` runs on a project without an existing `.understand-anything/knowledge-graph.json`, Phase 2 still tells the agent to execute `python...
true
Egonex-AI/Understand-Anything
145
issue_to_patch
docs: Add --language parameter documentation to all READMEs
4c6f7c3e0bd1c58989e8af5e19639dd669697de1
208921be3bbe7f5b734f1c4c6594830ce137236c
diff --git a/README.md b/README.md index 6b785128..d9b29e23 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,20 @@ Point `/understand-knowledge` at a [Karpathy-pattern LLM wiki](https://gist.gith A multi-agent pipeline scans your project, extracts every file, function, class, and dependency, then builds a knowl...
[ "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.tr-TR.md", "READMEs/README.zh-CN.md", "READMEs/README.zh-TW.md" ]
[]
true
Egonex-AI/Understand-Anything
142
issue_to_patch
Feature: Add --language parameter to /understand command for localized content generation ## Summary The `/understand` command currently generates all knowledge graph content (summaries, descriptions, tags, tour titles, etc.) in English only. Adding a `--language` parameter would allow users to specify their preferre...
feat: Add --language parameter for localized content generation
## Summary This PR implements the `--language` parameter for the `/understand` command, allowing users to generate knowledge graph content in their preferred language. Closes #141 --- ## Changes ### Skill Definition (`SKILL.md`) - Updated `argument-hint` to include `--language <lang>` - Added `--language` document...
788aa908028ce5122ede8ce30335292262ec9ed0
2083342199364af7ecf38de44aa8592fea48eaeb
diff --git a/package.json b/package.json index 504c00a1..3b797752 100644 --- a/package.json +++ b/package.json @@ -14,5 +14,22 @@ "devDependencies": { "typescript": "^5.7.0", "vitest": "^3.1.0" + }, + "pnpm": { + "onlyBuiltDependencies": [ + "esbuild", + "sharp", + "tree-sitter-c", + ...
[ "package.json", "understand-anything-plugin/agents/architecture-analyzer.md", "understand-anything-plugin/agents/file-analyzer.md", "understand-anything-plugin/agents/project-scanner.md", "understand-anything-plugin/agents/tour-builder.md", "understand-anything-plugin/package.json", "understand-anything...
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Wrap both layouts with I18n provider**\n\nMove the `I18nProvider` above the mobile/desktop branch so both render paths are covered. Right now only the desktop return is wrapped, while the mobile branch returns ...
diff --git a/understand-anything-plugin/packages/core/src/persistence/persistence.test.ts b/understand-anything-plugin/packages/core/src/persistence/persistence.test.ts index 02e0a1c5..3a694fb2 100644 --- a/understand-anything-plugin/packages/core/src/persistence/persistence.test.ts +++ b/understand-anything-plugin/pac...
true
Egonex-AI/Understand-Anything
142
comment_to_fix
feat: Add --language parameter for localized content generation
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Wrap both layouts with I18n provider** Move the `I18nProvider` above the mobile/desktop branch so both render paths are covered. Right now only the desktop return is wrapped, while the mobile branch returns `MobileLayout` under `Th...
788aa908028ce5122ede8ce30335292262ec9ed0
2083342199364af7ecf38de44aa8592fea48eaeb
diff --git a/understand-anything-plugin/packages/dashboard/src/App.tsx b/understand-anything-plugin/packages/dashboard/src/App.tsx index 4aed9bff..6835e0a7 100644 --- a/understand-anything-plugin/packages/dashboard/src/App.tsx +++ b/understand-anything-plugin/packages/dashboard/src/App.tsx @@ -23,6 +23,7 @@ import type...
[ "understand-anything-plugin/packages/dashboard/src/App.tsx" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Wrap both layouts with I18n provider**\n\nMove the `I18nProvider` above the mobile/desktop branch so both render paths are covered. Right now only the desktop return is wrapped, while the mobile branch returns ...
true
Egonex-AI/Understand-Anything
142
comment_to_fix
feat: Add --language parameter for localized content generation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Persist language under the configured outputLanguage key** Use `outputLanguage` consistently in the skill config instructions instead of `language`. This section tells the workflow to read/write `config.json.language`, but the rest...
788aa908028ce5122ede8ce30335292262ec9ed0
2083342199364af7ecf38de44aa8592fea48eaeb
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index aa47a6c5..5faf83e9 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -1,7 +1,7 @@ --- name: understand descr...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Persist language under the configured outputLanguage key**\n\nUse `outputLanguage` consistently in the skill config instructions instead of `language`. This section tells the workflow to read/write `config.json...
true
Egonex-AI/Understand-Anything
142
comment_to_fix
feat: Add --language parameter for localized content generation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Target search input without hardcoded English placeholder** The `/` keyboard shortcut now locates the search box via `input[placeholder*="Search"]`, but placeholders are localized in this commit. In non-English locales (e.g., zh/ja...
788aa908028ce5122ede8ce30335292262ec9ed0
2083342199364af7ecf38de44aa8592fea48eaeb
diff --git a/understand-anything-plugin/packages/dashboard/src/App.tsx b/understand-anything-plugin/packages/dashboard/src/App.tsx index 4aed9bff..6835e0a7 100644 --- a/understand-anything-plugin/packages/dashboard/src/App.tsx +++ b/understand-anything-plugin/packages/dashboard/src/App.tsx @@ -23,6 +23,7 @@ import type...
[ "understand-anything-plugin/packages/dashboard/src/App.tsx" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Target search input without hardcoded English placeholder**\n\nThe `/` keyboard shortcut now locates the search box via `input[placeholder*=\"Search\"]`, but placeholders are localized in this commit. In non-En...
true
Egonex-AI/Understand-Anything
132
issue_to_patch
feat(dashboard): add file/class dual-view toggle to reduce graph clutter
## Summary - Add `detailLevel` state (`"file"` | `"class"`) to the dashboard - **File view** (default): only file nodes + file→file edges. Clean architecture overview, 164 nodes instead of 854. - **Class view**: files + class nodes with optional `[fn]` function toggle - Toggle UI in header: `[Files] [+Classes] [fn]` ...
a381c41ef67bccbd57d5169a8938645f6401516b
e29f46157494f06b67d15cf43d83effa47d21650
diff --git a/understand-anything-plugin/packages/dashboard/src/App.tsx b/understand-anything-plugin/packages/dashboard/src/App.tsx index 8abc0e82..4aed9bff 100644 --- a/understand-anything-plugin/packages/dashboard/src/App.tsx +++ b/understand-anything-plugin/packages/dashboard/src/App.tsx @@ -109,6 +109,10 @@ function...
[ "understand-anything-plugin/packages/dashboard/src/App.tsx", "understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx", "understand-anything-plugin/packages/dashboard/src/store.ts" ]
[]
true
Egonex-AI/Understand-Anything
95
issue_to_patch
fix(skills): harden plugin root resolution across install modes
## Summary This PR improves plugin root resolution robustness for `/understand` and `/understand-dashboard` across different installation modes and hosts. ### What changed - Prioritize `CLAUDE_PLUGIN_ROOT` as the first plugin-root candidate (runtime-provided root should win) - Keep existing universal symlink fallbac...
822b20d9bf1d499234ff8584b427028cadff523b
d9250d76a98ed524b2f46ba83d0a6587800614e0
diff --git a/understand-anything-plugin/skills/understand-dashboard/SKILL.md b/understand-anything-plugin/skills/understand-dashboard/SKILL.md index 1ff667be..44ff8dd2 100644 --- a/understand-anything-plugin/skills/understand-dashboard/SKILL.md +++ b/understand-anything-plugin/skills/understand-dashboard/SKILL.md @@ -2...
[ "understand-anything-plugin/skills/understand-dashboard/SKILL.md", "understand-anything-plugin/skills/understand/SKILL.md" ]
[ { "comment": "The failure message only mentions `~/.understand-anything-plugin`, but the resolution logic also falls back to the self-relative path derived from `~/.agents/skills/understand`. This can mislead debugging when the universal symlink is missing but the self-relative fallback is the real intended pat...
true
Egonex-AI/Understand-Anything
95
comment_to_fix
fix(skills): harden plugin root resolution across install modes
The failure message only mentions `~/.understand-anything-plugin`, but the resolution logic also falls back to the self-relative path derived from `~/.agents/skills/understand`. This can mislead debugging when the universal symlink is missing but the self-relative fallback is the real intended path. Update the message ...
822b20d9bf1d499234ff8584b427028cadff523b
d9250d76a98ed524b2f46ba83d0a6587800614e0
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index a6370096..5f6ab214 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -29,10 +29,49 @@ Determine whether to run ...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[ { "comment": "The failure message only mentions `~/.understand-anything-plugin`, but the resolution logic also falls back to the self-relative path derived from `~/.agents/skills/understand`. This can mislead debugging when the universal symlink is missing but the self-relative fallback is the real intended pat...
true
Egonex-AI/Understand-Anything
95
comment_to_fix
fix(skills): harden plugin root resolution across install modes
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Add Claude plugin-root fallback to resolver candidates** The new resolver now only checks `$HOME/.understand-anything-plugin` and a path derived from `~/.agents/skills/understand`, so `/understand` can abort with "Cannot find the u...
822b20d9bf1d499234ff8584b427028cadff523b
d9250d76a98ed524b2f46ba83d0a6587800614e0
diff --git a/understand-anything-plugin/skills/understand/SKILL.md b/understand-anything-plugin/skills/understand/SKILL.md index a6370096..5f6ab214 100644 --- a/understand-anything-plugin/skills/understand/SKILL.md +++ b/understand-anything-plugin/skills/understand/SKILL.md @@ -29,10 +29,49 @@ Determine whether to run ...
[ "understand-anything-plugin/skills/understand/SKILL.md" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Add Claude plugin-root fallback to resolver candidates**\n\nThe new resolver now only checks `$HOME/.understand-anything-plugin` and a path derived from `~/.agents/skills/understand`, so `/understand` can abort...
true
Egonex-AI/Understand-Anything
124
issue_to_patch
fix(skill): make /understand work on Windows + pnpm 10
## Summary Fixes two bugs that block `/understand` from running properly on common modern dev setups (Windows + pnpm 10): 1. **`extract-structure.mjs:34,37` — Windows ESM URL bug.** `await import()` was called with raw absolute paths returned by `require.resolve()` and `path.resolve()`. On Windows those start with `C...
c49c46d974f01d7fec28e93fa362cc72ecb3fac5
366368face60fe8c1a8749c7ea11230617abebe0
diff --git a/understand-anything-plugin/package.json b/understand-anything-plugin/package.json index bb424829..b1ef3a2e 100644 --- a/understand-anything-plugin/package.json +++ b/understand-anything-plugin/package.json @@ -15,5 +15,22 @@ "@types/node": "^22.0.0", "typescript": "^5.7.0", "vitest": "^3.1.0...
[ "understand-anything-plugin/package.json", "understand-anything-plugin/pnpm-lock.yaml", "understand-anything-plugin/skills/understand/extract-structure.mjs" ]
[]
true
Egonex-AI/Understand-Anything
122
issue_to_patch
Visualize test coverage on file nodes (tested_by edges + dashboard hint) ## Problem The graph schema already includes a `tested_by` edge type, and `/understand` does emit some of these edges. But two things make it hard to actually use coverage information: 1. **Edge direction is inconsistent.** Across analyzer batc...
feat: deterministic tested_by edges + dashboard badge (#113)
Closes #113. ## What's wrong @Bulkmaker reported in #113 that test-coverage info on the graph is currently unusable for two reasons: 1. **`tested_by` edge direction is inconsistent.** The file-analyzer prompt says edges should be `production → test`, but production files don't import their tests, so the LLM only see...
b9ca06061374640b89b14fa2e8ea772d12faf7c3
a4bdc1c99d750181ebedcca6f8e888bd46f29a91
diff --git a/.gitignore b/.gitignore index 71c7af4b..9b4e81f5 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ coverage/ .worktrees/ homepage/public/demo/ .private/ +__pycache__/ +*.pyc diff --git a/understand-anything-plugin/agents/file-analyzer.md b/understand-anything-plugin/agents/file-analyzer.md inde...
[ ".gitignore", "understand-anything-plugin/agents/file-analyzer.md", "understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx", "understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx", "understand-anything-plugin/skills/understand/SKILL.md", "understand-anything-plu...
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Normalize tags type before adding \"tested\" tag**\n\nWhen a matched production file has malformed `tags` (for example `null`, a string, or any non-list value from an LLM batch), this block assumes list semanti...
diff --git a/understand-anything-plugin/skills/understand/test_merge_batch_graphs.py b/understand-anything-plugin/skills/understand/test_merge_batch_graphs.py new file mode 100644 index 00000000..7c9c63f0 --- /dev/null +++ b/understand-anything-plugin/skills/understand/test_merge_batch_graphs.py @@ -0,0 +1,874 @@ +#!/u...
true
Egonex-AI/Understand-Anything
127
issue_to_patch
Add mistral vibe cli to install script
Following #119
53248fea8b0ab1eca8dc5ff2708ebad4970471a0
4d2359062151fec1038d02d8b00c3f0925d04bb3
diff --git a/README.md b/README.md index 5aaacf20..712f311d 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ <a href="#copilot-cli"><img src="https://img.shields.io/badge/Copilot_CLI-24292e" alt="Copilot CLI" /></a> <a href="#gemini-cli"><img src="https://img.shields.io/badge/Gemini_CLI-4285F4" alt="Gemin...
[ "README.md", "install.sh" ]
[]
true
Egonex-AI/Understand-Anything
121
issue_to_patch
Feature request: customizable dashboard fonts via theme settings ## Context The dashboard uses a serif/display font for key UI elements like the project title and sidebar headings ("Project Tour", etc.). This can reduce readability, especially at smaller sizes or on lower-resolution displays. ## Request Add a font ...
feat: customizable heading font via theme settings
## Summary - Adds a `headingFont` option (`serif` | `sans` | `mono`) to `ThemeConfig` - New `--font-heading` CSS custom property applied by the theme engine - "Heading Font" toggle added to the Theme Picker UI (3-button row below accent swatches) - All 15 component files updated from hardcoded `font-serif` to `font-he...
b9ca06061374640b89b14fa2e8ea772d12faf7c3
92a13eadb5bcb42a6d33074ce5c0351bcf7874cf
diff --git a/understand-anything-plugin/packages/dashboard/src/App.tsx b/understand-anything-plugin/packages/dashboard/src/App.tsx index f169f62a..8abc0e82 100644 --- a/understand-anything-plugin/packages/dashboard/src/App.tsx +++ b/understand-anything-plugin/packages/dashboard/src/App.tsx @@ -401,7 +401,7 @@ function ...
[ "understand-anything-plugin/packages/dashboard/src/App.tsx", "understand-anything-plugin/packages/dashboard/src/components/CodeViewer.tsx", "understand-anything-plugin/packages/dashboard/src/components/ContainerNode.tsx", "understand-anything-plugin/packages/dashboard/src/components/CustomNode.tsx", "unders...
[]
true
Egonex-AI/Understand-Anything
117
issue_to_patch
Fix dashboard URL format in vite.config.ts
Make url click-able from terminal shell Now it's now, because of missing slash after port number <img width="368" height="30" alt="image" src="https://github.com/user-attachments/assets/c0dd79c5-9faf-4232-80bd-5568ce847c2b" />
b9ca06061374640b89b14fa2e8ea772d12faf7c3
8ffee15321686e89c172fe7b1b6df66933827d6a
diff --git a/understand-anything-plugin/packages/dashboard/vite.config.ts b/understand-anything-plugin/packages/dashboard/vite.config.ts index 34718f40..c28056bc 100644 --- a/understand-anything-plugin/packages/dashboard/vite.config.ts +++ b/understand-anything-plugin/packages/dashboard/vite.config.ts @@ -240,7 +240,7 ...
[ "understand-anything-plugin/packages/dashboard/vite.config.ts" ]
[]
true
Egonex-AI/Understand-Anything
123
issue_to_patch
feat(install): unify per-platform installers into install.sh / install.ps1
## Summary - Replace 7 nearly-identical `.<platform>/INSTALL.md` files (gemini/codex/opencode/pi/openclaw/antigravity/vscode) with a single `install.sh` + `install.ps1` at the repo root. Skills are enumerated dynamically from `understand-anything-plugin/skills/` — the old hardcoded list of 6 was already stale (missing...
b9ca06061374640b89b14fa2e8ea772d12faf7c3
a25c8e2527de015224889019ddb01390d2efb0e5
diff --git a/.antigravity/INSTALL.md b/.antigravity/INSTALL.md deleted file mode 100644 index 2c7681a6..00000000 --- a/.antigravity/INSTALL.md +++ /dev/null @@ -1,61 +0,0 @@ -# Installing Understand-Anything for Antigravity - -## Prerequisites - -- Git - -## Installation - -1. **Clone the repository:** - ```bash - ...
[ ".antigravity/INSTALL.md", ".codex/INSTALL.md", ".gemini/INSTALL.md", ".gitignore", ".openclaw/INSTALL.md", ".opencode/INSTALL.md", ".pi/INSTALL.md", ".vscode/INSTALL.md", "README.md", "READMEs/README.es-ES.md", "READMEs/README.ja-JP.md", "READMEs/README.ko-KR.md", "READMEs/README.tr-TR.md",...
[]
true