@almadar/core 10.39.0 → 10.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -534,74 +534,180 @@
534
534
  "name": "cloneRepo",
535
535
  "description": "Clone a repository",
536
536
  "params": [
537
- { "name": "repo", "type": "string", "required": true, "description": "Repository URL or owner/repo" },
538
- { "name": "branch", "type": "string", "required": false, "description": "Branch to clone" }
537
+ {
538
+ "name": "repo",
539
+ "type": "string",
540
+ "required": true,
541
+ "description": "Repository URL or owner/repo"
542
+ },
543
+ {
544
+ "name": "branch",
545
+ "type": "string",
546
+ "required": false,
547
+ "description": "Branch to clone"
548
+ }
539
549
  ],
540
- "responseShape": { "path": "string", "branch": "string" }
550
+ "responseShape": {
551
+ "path": "string",
552
+ "branch": "string"
553
+ }
541
554
  },
542
555
  {
543
556
  "name": "createBranch",
544
557
  "description": "Create a new branch",
545
558
  "params": [
546
- { "name": "repo", "type": "string", "required": true, "description": "Local repo path" },
547
- { "name": "branch", "type": "string", "required": true, "description": "Branch name" }
559
+ {
560
+ "name": "repo",
561
+ "type": "string",
562
+ "required": true,
563
+ "description": "Local repo path"
564
+ },
565
+ {
566
+ "name": "branch",
567
+ "type": "string",
568
+ "required": true,
569
+ "description": "Branch name"
570
+ }
548
571
  ],
549
- "responseShape": { "branch": "string" }
572
+ "responseShape": {
573
+ "branch": "string"
574
+ }
550
575
  },
551
576
  {
552
577
  "name": "commit",
553
578
  "description": "Commit changes",
554
579
  "params": [
555
- { "name": "repo", "type": "string", "required": true, "description": "Local repo path" },
556
- { "name": "message", "type": "string", "required": true, "description": "Commit message" },
557
- { "name": "files", "type": "array", "required": false, "description": "Files to stage" }
580
+ {
581
+ "name": "repo",
582
+ "type": "string",
583
+ "required": true,
584
+ "description": "Local repo path"
585
+ },
586
+ {
587
+ "name": "message",
588
+ "type": "string",
589
+ "required": true,
590
+ "description": "Commit message"
591
+ },
592
+ {
593
+ "name": "files",
594
+ "type": "array",
595
+ "required": false,
596
+ "description": "Files to stage"
597
+ }
558
598
  ],
559
- "responseShape": { "hash": "string", "message": "string" }
599
+ "responseShape": {
600
+ "hash": "string",
601
+ "message": "string"
602
+ }
560
603
  },
561
604
  {
562
605
  "name": "push",
563
606
  "description": "Push commits to remote",
564
607
  "params": [
565
- { "name": "repo", "type": "string", "required": true, "description": "Local repo path" },
566
- { "name": "branch", "type": "string", "required": false, "description": "Branch to push" }
608
+ {
609
+ "name": "repo",
610
+ "type": "string",
611
+ "required": true,
612
+ "description": "Local repo path"
613
+ },
614
+ {
615
+ "name": "branch",
616
+ "type": "string",
617
+ "required": false,
618
+ "description": "Branch to push"
619
+ }
567
620
  ],
568
- "responseShape": { "success": "boolean" }
621
+ "responseShape": {
622
+ "success": "boolean"
623
+ }
569
624
  },
570
625
  {
571
626
  "name": "createPR",
572
627
  "description": "Create a pull request",
573
628
  "params": [
574
- { "name": "title", "type": "string", "required": true, "description": "PR title" },
575
- { "name": "body", "type": "string", "required": false, "description": "PR description" },
576
- { "name": "head", "type": "string", "required": true, "description": "Head branch" },
577
- { "name": "base", "type": "string", "required": false, "description": "Base branch (default: main)" }
629
+ {
630
+ "name": "title",
631
+ "type": "string",
632
+ "required": true,
633
+ "description": "PR title"
634
+ },
635
+ {
636
+ "name": "body",
637
+ "type": "string",
638
+ "required": false,
639
+ "description": "PR description"
640
+ },
641
+ {
642
+ "name": "head",
643
+ "type": "string",
644
+ "required": true,
645
+ "description": "Head branch"
646
+ },
647
+ {
648
+ "name": "base",
649
+ "type": "string",
650
+ "required": false,
651
+ "description": "Base branch (default: main)"
652
+ }
578
653
  ],
579
- "responseShape": { "number": "number", "url": "string" }
654
+ "responseShape": {
655
+ "number": "number",
656
+ "url": "string"
657
+ }
580
658
  },
581
659
  {
582
660
  "name": "getPRComments",
583
661
  "description": "Fetch pull request comments",
584
662
  "params": [
585
- { "name": "prNumber", "type": "number", "required": true, "description": "PR number" }
663
+ {
664
+ "name": "prNumber",
665
+ "type": "number",
666
+ "required": true,
667
+ "description": "PR number"
668
+ }
586
669
  ],
587
- "responseShape": { "comments": "array" }
670
+ "responseShape": {
671
+ "comments": "array"
672
+ }
588
673
  },
589
674
  {
590
675
  "name": "listIssues",
591
676
  "description": "List issues with optional filters",
592
677
  "params": [
593
- { "name": "state", "type": "string", "required": false, "description": "Issue state: open, closed, all" },
594
- { "name": "labels", "type": "string", "required": false, "description": "Comma-separated label names" }
678
+ {
679
+ "name": "state",
680
+ "type": "string",
681
+ "required": false,
682
+ "description": "Issue state: open, closed, all"
683
+ },
684
+ {
685
+ "name": "labels",
686
+ "type": "string",
687
+ "required": false,
688
+ "description": "Comma-separated label names"
689
+ }
595
690
  ],
596
- "responseShape": { "issues": "array" }
691
+ "responseShape": {
692
+ "issues": "array"
693
+ }
597
694
  },
598
695
  {
599
696
  "name": "getIssue",
600
697
  "description": "Get a single issue",
601
698
  "params": [
602
- { "name": "issueNumber", "type": "number", "required": true, "description": "Issue number" }
699
+ {
700
+ "name": "issueNumber",
701
+ "type": "number",
702
+ "required": true,
703
+ "description": "Issue number"
704
+ }
603
705
  ],
604
- "responseShape": { "title": "string", "body": "string", "state": "string" }
706
+ "responseShape": {
707
+ "title": "string",
708
+ "body": "string",
709
+ "state": "string"
710
+ }
605
711
  }
606
712
  ]
607
713
  },
@@ -614,7 +720,12 @@
614
720
  "name": "validate",
615
721
  "description": "Validate an orbital schema",
616
722
  "params": [
617
- { "name": "schema", "type": "string", "required": true, "description": "Schema content to validate" }
723
+ {
724
+ "name": "schema",
725
+ "type": "string",
726
+ "required": true,
727
+ "description": "Schema content to validate"
728
+ }
618
729
  ],
619
730
  "responseShape": {
620
731
  "valid": "boolean",
@@ -634,9 +745,24 @@
634
745
  "name": "query",
635
746
  "description": "Run a single read-only SELECT against a connection referenced by env var name",
636
747
  "params": [
637
- { "name": "connectionRef", "type": "string", "required": true, "description": "Name of the environment variable holding the connection string (never the secret itself)" },
638
- { "name": "sql", "type": "string", "required": true, "description": "Single SELECT statement (read-only enforced)" },
639
- { "name": "params", "type": "array", "required": false, "description": "Bind parameters for the query" }
748
+ {
749
+ "name": "connectionRef",
750
+ "type": "string",
751
+ "required": true,
752
+ "description": "Name of the environment variable holding the connection string (never the secret itself)"
753
+ },
754
+ {
755
+ "name": "sql",
756
+ "type": "string",
757
+ "required": true,
758
+ "description": "Single SELECT statement (read-only enforced)"
759
+ },
760
+ {
761
+ "name": "params",
762
+ "type": "array",
763
+ "required": false,
764
+ "description": "Bind parameters for the query"
765
+ }
640
766
  ],
641
767
  "responseShape": {
642
768
  "rows": "array",
@@ -644,7 +770,125 @@
644
770
  }
645
771
  }
646
772
  ]
773
+ },
774
+ "wikimedia": {
775
+ "name": "wikimedia",
776
+ "description": "Wikipedia API — redirect-resolved page lookup (description, portrait, lead extract)",
777
+ "category": "reference",
778
+ "actions": [
779
+ {
780
+ "name": "getPage",
781
+ "description": "Look up a title on Wikipedia",
782
+ "params": [
783
+ {
784
+ "name": "title",
785
+ "type": "string",
786
+ "required": true,
787
+ "description": "Page title (human-readable name)"
788
+ }
789
+ ],
790
+ "responseShape": {
791
+ "title": "string",
792
+ "description": "string",
793
+ "portraitUrl": "string",
794
+ "extract": "string"
795
+ }
796
+ }
797
+ ]
798
+ },
799
+ "iconify": {
800
+ "name": "iconify",
801
+ "description": "Iconify API — brand-logo / icon resolution, search, and body fetch",
802
+ "category": "reference",
803
+ "actions": [
804
+ {
805
+ "name": "svgExists",
806
+ "description": "Check whether an SVG path exists",
807
+ "params": [
808
+ {
809
+ "name": "path",
810
+ "type": "string",
811
+ "required": true,
812
+ "description": "Path under api.iconify.design (e.g. devicon/typescript.svg)"
813
+ }
814
+ ],
815
+ "responseShape": {
816
+ "exists": "boolean"
817
+ }
818
+ },
819
+ {
820
+ "name": "search",
821
+ "description": "Relevance search for icons",
822
+ "params": [
823
+ {
824
+ "name": "query",
825
+ "type": "string",
826
+ "required": true,
827
+ "description": "Search term"
828
+ },
829
+ {
830
+ "name": "limit",
831
+ "type": "number",
832
+ "required": false,
833
+ "description": "Max results"
834
+ }
835
+ ],
836
+ "responseShape": {
837
+ "icons": "string[]"
838
+ }
839
+ },
840
+ {
841
+ "name": "getIconBody",
842
+ "description": "Fetch an icon SVG body for color-tone classification",
843
+ "params": [
844
+ {
845
+ "name": "iconId",
846
+ "type": "string",
847
+ "required": true,
848
+ "description": "Icon id (prefix:name)"
849
+ }
850
+ ],
851
+ "responseShape": {
852
+ "body": "string"
853
+ }
854
+ }
855
+ ]
856
+ },
857
+ "arxiv": {
858
+ "name": "arxiv",
859
+ "description": "arXiv API — frontier academic preprint search (emerging-axis research backend)",
860
+ "category": "reference",
861
+ "actions": [
862
+ {
863
+ "name": "search",
864
+ "description": "Search arXiv preprints by relevance",
865
+ "params": [
866
+ {
867
+ "name": "query",
868
+ "type": "string",
869
+ "required": true,
870
+ "description": "Search query"
871
+ },
872
+ {
873
+ "name": "maxResults",
874
+ "type": "number",
875
+ "required": false,
876
+ "description": "Max results (default 8)"
877
+ }
878
+ ],
879
+ "responseShape": {
880
+ "results": "ArxivResult[]"
881
+ }
882
+ }
883
+ ]
647
884
  }
648
885
  },
649
- "categories": ["media", "payment", "messaging", "ai", "devtools", "infrastructure"]
650
- }
886
+ "categories": [
887
+ "media",
888
+ "payment",
889
+ "messaging",
890
+ "ai",
891
+ "devtools",
892
+ "infrastructure"
893
+ ]
894
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-07-27T04:55:27.017Z",
3
+ "exportedAt": "2026-07-28T10:40:00.004Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -9821,6 +9821,21 @@
9821
9821
  ],
9822
9822
  "description": "Inline style"
9823
9823
  },
9824
+ "format": {
9825
+ "types": [
9826
+ "string"
9827
+ ],
9828
+ "description": "Value formatting applied to string/number/Date content — `none` (the default) renders content as-is. Covers the raw-ISO-date class: a bound datetime renders human-readable via `format=\"date\"|\"time\"|\"datetime\"`.",
9829
+ "enumValues": [
9830
+ "none",
9831
+ "date",
9832
+ "time",
9833
+ "datetime",
9834
+ "number",
9835
+ "currency",
9836
+ "percent"
9837
+ ]
9838
+ },
9824
9839
  "content": {
9825
9840
  "types": [
9826
9841
  "node"
@@ -14618,6 +14633,27 @@
14618
14633
  "number"
14619
14634
  ]
14620
14635
  },
14636
+ "mark": {
14637
+ "types": [
14638
+ "object"
14639
+ ],
14640
+ "properties": {
14641
+ "kind": {
14642
+ "types": [
14643
+ "unknown"
14644
+ ]
14645
+ },
14646
+ "suggestionId": {
14647
+ "types": [
14648
+ "string"
14649
+ ]
14650
+ }
14651
+ },
14652
+ "required": [
14653
+ "kind",
14654
+ "suggestionId"
14655
+ ]
14656
+ },
14621
14657
  "x": {
14622
14658
  "types": [
14623
14659
  "number"
@@ -14676,6 +14712,48 @@
14676
14712
  ]
14677
14713
  }
14678
14714
  },
14715
+ "proposedEdges": {
14716
+ "types": [
14717
+ "array"
14718
+ ],
14719
+ "description": "Uncommitted proposal links — rendered dashed/faint in a separate pass, never folded into the layout springs.",
14720
+ "items": {
14721
+ "types": [
14722
+ "object"
14723
+ ],
14724
+ "properties": {
14725
+ "source": {
14726
+ "types": [
14727
+ "string"
14728
+ ]
14729
+ },
14730
+ "target": {
14731
+ "types": [
14732
+ "string"
14733
+ ]
14734
+ },
14735
+ "label": {
14736
+ "types": [
14737
+ "string"
14738
+ ]
14739
+ },
14740
+ "weight": {
14741
+ "types": [
14742
+ "number"
14743
+ ]
14744
+ },
14745
+ "color": {
14746
+ "types": [
14747
+ "string"
14748
+ ]
14749
+ }
14750
+ },
14751
+ "required": [
14752
+ "source",
14753
+ "target"
14754
+ ]
14755
+ }
14756
+ },
14679
14757
  "similarity": {
14680
14758
  "types": [
14681
14759
  "array"
@@ -14823,6 +14901,111 @@
14823
14901
  "number"
14824
14902
  ]
14825
14903
  },
14904
+ "mark": {
14905
+ "types": [
14906
+ "object"
14907
+ ],
14908
+ "properties": {
14909
+ "kind": {
14910
+ "types": [
14911
+ "unknown"
14912
+ ]
14913
+ },
14914
+ "suggestionId": {
14915
+ "types": [
14916
+ "string"
14917
+ ]
14918
+ }
14919
+ },
14920
+ "required": [
14921
+ "kind",
14922
+ "suggestionId"
14923
+ ]
14924
+ },
14925
+ "x": {
14926
+ "types": [
14927
+ "number"
14928
+ ]
14929
+ },
14930
+ "y": {
14931
+ "types": [
14932
+ "number"
14933
+ ]
14934
+ }
14935
+ },
14936
+ "required": [
14937
+ "id"
14938
+ ]
14939
+ }
14940
+ }
14941
+ ]
14942
+ },
14943
+ "onMarkClick": {
14944
+ "types": [
14945
+ "function"
14946
+ ],
14947
+ "description": "On marked-node click (suggestion/proposal target). Takes priority over onNodeClick.",
14948
+ "kind": "callback",
14949
+ "callbackArgs": [
14950
+ {
14951
+ "name": "node",
14952
+ "type": "object",
14953
+ "schema": {
14954
+ "types": [
14955
+ "object"
14956
+ ],
14957
+ "properties": {
14958
+ "id": {
14959
+ "types": [
14960
+ "string"
14961
+ ]
14962
+ },
14963
+ "label": {
14964
+ "types": [
14965
+ "string"
14966
+ ]
14967
+ },
14968
+ "group": {
14969
+ "types": [
14970
+ "string"
14971
+ ]
14972
+ },
14973
+ "color": {
14974
+ "types": [
14975
+ "string"
14976
+ ]
14977
+ },
14978
+ "size": {
14979
+ "types": [
14980
+ "number"
14981
+ ]
14982
+ },
14983
+ "badge": {
14984
+ "types": [
14985
+ "number"
14986
+ ]
14987
+ },
14988
+ "mark": {
14989
+ "types": [
14990
+ "object"
14991
+ ],
14992
+ "properties": {
14993
+ "kind": {
14994
+ "types": [
14995
+ "unknown"
14996
+ ]
14997
+ },
14998
+ "suggestionId": {
14999
+ "types": [
15000
+ "string"
15001
+ ]
15002
+ }
15003
+ },
15004
+ "required": [
15005
+ "kind",
15006
+ "suggestionId"
15007
+ ]
15008
+ },
14826
15009
  "x": {
14827
15010
  "types": [
14828
15011
  "number"
@@ -14886,6 +15069,27 @@
14886
15069
  "number"
14887
15070
  ]
14888
15071
  },
15072
+ "mark": {
15073
+ "types": [
15074
+ "object"
15075
+ ],
15076
+ "properties": {
15077
+ "kind": {
15078
+ "types": [
15079
+ "unknown"
15080
+ ]
15081
+ },
15082
+ "suggestionId": {
15083
+ "types": [
15084
+ "string"
15085
+ ]
15086
+ }
15087
+ },
15088
+ "required": [
15089
+ "kind",
15090
+ "suggestionId"
15091
+ ]
15092
+ },
14889
15093
  "x": {
14890
15094
  "types": [
14891
15095
  "number"
@@ -14949,6 +15153,27 @@
14949
15153
  "number"
14950
15154
  ]
14951
15155
  },
15156
+ "mark": {
15157
+ "types": [
15158
+ "object"
15159
+ ],
15160
+ "properties": {
15161
+ "kind": {
15162
+ "types": [
15163
+ "unknown"
15164
+ ]
15165
+ },
15166
+ "suggestionId": {
15167
+ "types": [
15168
+ "string"
15169
+ ]
15170
+ }
15171
+ },
15172
+ "required": [
15173
+ "kind",
15174
+ "suggestionId"
15175
+ ]
15176
+ },
14952
15177
  "x": {
14953
15178
  "types": [
14954
15179
  "number"
@@ -17704,12 +17929,24 @@
17704
17929
  ],
17705
17930
  "description": "Field name identifying the sender (used with variant: \"message\")"
17706
17931
  },
17932
+ "senderLabelField": {
17933
+ "types": [
17934
+ "string"
17935
+ ],
17936
+ "description": "Field holding the sender's human-readable name (used with variant: \"message\"). Defaults to `senderField`. Set this when `senderField` holds an id — an id-keyed thread otherwise labels bubbles `staff-1` instead of `Sam Staff`."
17937
+ },
17707
17938
  "currentUser": {
17708
17939
  "types": [
17709
17940
  "string"
17710
17941
  ],
17711
17942
  "description": "Current user identifier; messages matching this value align right (used with variant: \"message\")"
17712
17943
  },
17944
+ "emptyMessage": {
17945
+ "types": [
17946
+ "string"
17947
+ ],
17948
+ "description": "Message shown when there are no rows. Falls back to the generic \"no items\" translation. `TableView` already exposes this; an agenda or an inbox wants to say what \"empty\" means in its own words."
17949
+ },
17713
17950
  "className": {
17714
17951
  "types": [
17715
17952
  "string"