@hyperscale0/hsx 2.4.0 → 3.0.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.
- package/CHANGELOG.md +2 -400
- package/README.md +3 -92
- package/dist/src/ast.d.ts +99 -310
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/ast.js +16 -69
- package/dist/src/ast.js.map +1 -1
- package/dist/src/cli.d.ts +6 -19
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +76 -315
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +23 -73
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +1113 -148
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +8 -77
- package/dist/src/cost.d.ts.map +1 -1
- package/dist/src/cost.js +13 -422
- package/dist/src/cost.js.map +1 -1
- package/dist/src/format.d.ts +8 -7
- package/dist/src/format.d.ts.map +1 -1
- package/dist/src/format.js +9 -175
- package/dist/src/format.js.map +1 -1
- package/dist/src/headers.d.ts +35 -0
- package/dist/src/headers.d.ts.map +1 -0
- package/dist/src/headers.js +108 -0
- package/dist/src/headers.js.map +1 -0
- package/dist/src/index.d.ts +6 -12
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -9
- package/dist/src/index.js.map +1 -1
- package/dist/src/lex.d.ts +8 -28
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +88 -146
- package/dist/src/lex.js.map +1 -1
- package/dist/src/parse.d.ts +4 -17
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +402 -1040
- package/dist/src/parse.js.map +1 -1
- package/dist/src/std-bundle.d.ts.map +1 -1
- package/dist/src/std-bundle.js +12 -20
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/std-library.d.ts +1 -1
- package/dist/src/std-library.d.ts.map +1 -1
- package/dist/src/std-library.js +1 -5
- package/dist/src/std-library.js.map +1 -1
- package/dist/src/tunables.d.ts +7 -0
- package/dist/src/tunables.d.ts.map +1 -0
- package/dist/src/tunables.js +26 -0
- package/dist/src/tunables.js.map +1 -0
- package/dist/src/version.d.ts +2 -4
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +2 -4
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +179 -41
- package/docs/headers.md +44 -0
- package/examples/cost-table.json +99 -751
- package/examples/library.hsx +59 -0
- package/package.json +9 -17
- package/src/ast.ts +82 -441
- package/src/cli.ts +77 -362
- package/src/compile.ts +1535 -247
- package/src/cost.ts +28 -671
- package/src/format.ts +12 -256
- package/src/headers.ts +126 -0
- package/src/index.ts +7 -39
- package/src/lex.ts +99 -195
- package/src/parse.ts +403 -1209
- package/src/std-bundle.ts +12 -20
- package/src/std-library.ts +2 -7
- package/src/tunables.ts +31 -0
- package/src/version.ts +2 -5
- package/std/approvals.hsx +17 -0
- package/std/cards.hsx +63 -0
- package/std/collections.hsx +31 -0
- package/std/escrow.hsx +43 -0
- package/std/financing.hsx +372 -0
- package/std/insurance.hsx +59 -0
- package/std/lending.hsx +115 -0
- package/std/marketplace.hsx +24 -0
- package/std/money.hsx +195 -0
- package/std/savings.hsx +44 -0
- package/std/travel.hsx +98 -0
- package/std/wallet.hsx +41 -0
- package/dist/src/diagnostics.d.ts +0 -13
- package/dist/src/diagnostics.d.ts.map +0 -1
- package/dist/src/diagnostics.js +0 -587
- package/dist/src/diagnostics.js.map +0 -1
- package/dist/src/emit.d.ts +0 -51
- package/dist/src/emit.d.ts.map +0 -1
- package/dist/src/emit.js +0 -192
- package/dist/src/emit.js.map +0 -1
- package/dist/src/entry-overrides.d.ts +0 -58
- package/dist/src/entry-overrides.d.ts.map +0 -1
- package/dist/src/entry-overrides.js +0 -284
- package/dist/src/entry-overrides.js.map +0 -1
- package/dist/src/ir.d.ts +0 -73
- package/dist/src/ir.d.ts.map +0 -1
- package/dist/src/ir.js +0 -15
- package/dist/src/ir.js.map +0 -1
- package/dist/src/limits.d.ts +0 -23
- package/dist/src/limits.d.ts.map +0 -1
- package/dist/src/limits.js +0 -23
- package/dist/src/limits.js.map +0 -1
- package/dist/src/lsp/server.d.ts +0 -32
- package/dist/src/lsp/server.d.ts.map +0 -1
- package/dist/src/lsp/server.js +0 -391
- package/dist/src/lsp/server.js.map +0 -1
- package/dist/src/modules.d.ts +0 -38
- package/dist/src/modules.d.ts.map +0 -1
- package/dist/src/modules.js +0 -372
- package/dist/src/modules.js.map +0 -1
- package/dist/src/typecheck.d.ts +0 -8
- package/dist/src/typecheck.d.ts.map +0 -1
- package/dist/src/typecheck.js +0 -4131
- package/dist/src/typecheck.js.map +0 -1
- package/docs/guide/01-first-program.md +0 -24
- package/docs/guide/02-money.md +0 -25
- package/docs/guide/03-instruments.md +0 -93
- package/docs/guide/04-lifecycles.md +0 -40
- package/docs/guide/05-fees-and-splits.md +0 -45
- package/docs/guide/06-schedules.md +0 -26
- package/docs/guide/07-composition.md +0 -52
- package/docs/guide/08-writing-a-module.md +0 -85
- package/docs/guide/09-cost.md +0 -24
- package/docs/guide/10-diagnostics.md +0 -27
- package/docs/llms-full.txt +0 -3684
- package/docs/llms.txt +0 -44
- package/docs/piece-plans.md +0 -120
- package/docs/playground.md +0 -55
- package/docs/reference/cli.md +0 -36
- package/docs/reference/diagnostics.md +0 -901
- package/docs/reference/grammar.md +0 -38
- package/docs/reference/std/advance.md +0 -112
- package/docs/reference/std/cancellable_booking.md +0 -159
- package/docs/reference/std/captured_payment.md +0 -115
- package/docs/reference/std/conditional_disbursement.md +0 -101
- package/docs/reference/std/credit_facility.md +0 -108
- package/docs/reference/std/held_payment.md +0 -173
- package/docs/reference/std/instant_transfer.md +0 -97
- package/docs/reference/std/metered.md +0 -89
- package/docs/reference/std/pooled_split.md +0 -95
- package/docs/reference/std/premium_forward.md +0 -119
- package/docs/reference/std/reconciled_payout.md +0 -103
- package/docs/reference/std/rotating_pool.md +0 -130
- package/docs/reference/std/scheduled.md +0 -136
- package/docs/reference/std/security_deposit.md +0 -138
- package/docs/reference/std/settlement_batch.md +0 -123
- package/docs/reference/std/swap.md +0 -133
- package/docs/reference/std/threshold_pool.md +0 -138
- package/docs/reference/std/weighted_distribution.md +0 -135
- package/docs/reference/types.md +0 -61
- package/docs/reference/udl-output.md +0 -13
- package/examples/01-first-program/README.md +0 -45
- package/examples/01-first-program/tip-jar.hsx +0 -17
- package/examples/02-imports-and-modules/README.md +0 -96
- package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
- package/examples/03-diagnostics/README.md +0 -68
- package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
- package/examples/03-diagnostics/corner-shop.hsx +0 -19
- package/examples/04-complete-product/README.md +0 -84
- package/examples/04-complete-product/study-hall.hsx +0 -67
- package/examples/05-authored-instrument/README.md +0 -5
- package/examples/05-authored-instrument/payment.hsx +0 -37
- package/examples/05-watch-club/README.md +0 -6
- package/examples/05-watch-club/watch-club.hsx +0 -123
- package/examples/README.md +0 -48
- package/examples/advance/README.md +0 -3
- package/examples/advance/advance.hsx +0 -13
- package/examples/advance/advance.udl +0 -367
- package/examples/cancellable_booking/README.md +0 -3
- package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
- package/examples/cancellable_booking/cancellable_booking.udl +0 -413
- package/examples/captured_payment/README.md +0 -3
- package/examples/captured_payment/captured_payment.hsx +0 -17
- package/examples/captured_payment/captured_payment.udl +0 -686
- package/examples/conditional_disbursement/README.md +0 -3
- package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
- package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
- package/examples/credit_facility/README.md +0 -3
- package/examples/credit_facility/credit_facility.hsx +0 -24
- package/examples/credit_facility/credit_facility.udl +0 -1396
- package/examples/held_payment/README.md +0 -3
- package/examples/held_payment/held_payment.hsx +0 -13
- package/examples/held_payment/held_payment.udl +0 -569
- package/examples/instant_transfer/README.md +0 -3
- package/examples/instant_transfer/instant_transfer.hsx +0 -16
- package/examples/instant_transfer/instant_transfer.udl +0 -376
- package/examples/metered/README.md +0 -3
- package/examples/metered/metered.hsx +0 -13
- package/examples/metered/metered.udl +0 -253
- package/examples/pooled_split/README.md +0 -3
- package/examples/pooled_split/pooled_split.hsx +0 -15
- package/examples/pooled_split/pooled_split.udl +0 -432
- package/examples/premium_forward/README.md +0 -3
- package/examples/premium_forward/premium_forward.hsx +0 -19
- package/examples/premium_forward/premium_forward.udl +0 -604
- package/examples/reconciled_payout/README.md +0 -3
- package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
- package/examples/reconciled_payout/reconciled_payout.udl +0 -312
- package/examples/rotating_pool/README.md +0 -3
- package/examples/rotating_pool/rotating_pool.hsx +0 -18
- package/examples/rotating_pool/rotating_pool.udl +0 -4370
- package/examples/scheduled/README.md +0 -3
- package/examples/scheduled/scheduled.hsx +0 -12
- package/examples/scheduled/scheduled.udl +0 -355
- package/examples/security_deposit/README.md +0 -3
- package/examples/security_deposit/security_deposit.hsx +0 -21
- package/examples/security_deposit/security_deposit.udl +0 -320
- package/examples/settlement_batch/README.md +0 -3
- package/examples/settlement_batch/settlement_batch.hsx +0 -19
- package/examples/settlement_batch/settlement_batch.udl +0 -757
- package/examples/swap/README.md +0 -3
- package/examples/swap/swap.hsx +0 -19
- package/examples/swap/swap.udl +0 -892
- package/examples/threshold_pool/README.md +0 -3
- package/examples/threshold_pool/threshold_pool.hsx +0 -16
- package/examples/threshold_pool/threshold_pool.udl +0 -680
- package/examples/weighted_distribution/README.md +0 -3
- package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
- package/examples/weighted_distribution/weighted_distribution.udl +0 -348
- package/skills/hsx/SKILL.md +0 -449
- package/src/diagnostics.ts +0 -620
- package/src/emit.ts +0 -282
- package/src/entry-overrides.ts +0 -428
- package/src/ir.ts +0 -113
- package/src/limits.ts +0 -22
- package/src/lsp/server.ts +0 -460
- package/src/modules.ts +0 -452
- package/src/typecheck.ts +0 -5381
- package/std/SEMANTICS.md +0 -44
- package/std/money_flows/advance.hsx +0 -235
- package/std/money_flows/cancellable_booking.hsx +0 -402
- package/std/money_flows/captured_payment.hsx +0 -220
- package/std/money_flows/conditional_disbursement.hsx +0 -226
- package/std/money_flows/credit_facility.hsx +0 -214
- package/std/money_flows/held_payment.hsx +0 -812
- package/std/money_flows/index.hsx +0 -4
- package/std/money_flows/instant_transfer.hsx +0 -231
- package/std/money_flows/metered.hsx +0 -104
- package/std/money_flows/pooled_split.hsx +0 -109
- package/std/money_flows/premium_forward.hsx +0 -307
- package/std/money_flows/reconciled_payout.hsx +0 -119
- package/std/money_flows/rotating_pool.hsx +0 -305
- package/std/money_flows/scheduled.hsx +0 -599
- package/std/money_flows/security_deposit.hsx +0 -248
- package/std/money_flows/settlement_batch.hsx +0 -173
- package/std/money_flows/swap.hsx +0 -1192
- package/std/money_flows/threshold_pool.hsx +0 -307
- package/std/money_flows/weighted_distribution.hsx +0 -237
package/docs/llms.txt
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<!-- Generated by scripts/docs/build.ts for HSX 2.4.0. Do not edit. -->
|
|
2
|
-
|
|
3
|
-
# HSX documentation
|
|
4
|
-
|
|
5
|
-
> Repository guide and generated compiler reference for HSX 2.4.0.
|
|
6
|
-
|
|
7
|
-
## Guide
|
|
8
|
-
|
|
9
|
-
[Your first program](guide/01-first-program.md): Hand-written chapter with compiler-checked programs.
|
|
10
|
-
[Money](guide/02-money.md): Hand-written chapter with compiler-checked programs.
|
|
11
|
-
[Instruments](guide/03-instruments.md): Hand-written chapter with compiler-checked programs.
|
|
12
|
-
[Lifecycles](guide/04-lifecycles.md): Hand-written chapter with compiler-checked programs.
|
|
13
|
-
[Fees and splits](guide/05-fees-and-splits.md): Hand-written chapter with compiler-checked programs.
|
|
14
|
-
[Schedules](guide/06-schedules.md): Hand-written chapter with compiler-checked programs.
|
|
15
|
-
[Composition](guide/07-composition.md): Hand-written chapter with compiler-checked programs.
|
|
16
|
-
[Writing a module](guide/08-writing-a-module.md): Hand-written chapter with compiler-checked programs.
|
|
17
|
-
[Cost](guide/09-cost.md): Hand-written chapter with compiler-checked programs.
|
|
18
|
-
[Diagnostics](guide/10-diagnostics.md): Hand-written chapter with compiler-checked programs.
|
|
19
|
-
|
|
20
|
-
## Reference
|
|
21
|
-
|
|
22
|
-
[Grammar](reference/grammar.md): Lexer, clause, and module vocabulary.
|
|
23
|
-
[Types](reference/types.md): HSX type kinds and account role pins.
|
|
24
|
-
[Diagnostics](reference/diagnostics.md): Stable HSX diagnostic codes and fixes.
|
|
25
|
-
[CLI](reference/cli.md): Generated command usage.
|
|
26
|
-
[UDL output](reference/udl-output.md): Compile artifacts and canonical output.
|
|
27
|
-
[advance](reference/std/advance.md): Standard-library module.
|
|
28
|
-
[cancellable_booking](reference/std/cancellable_booking.md): Standard-library module.
|
|
29
|
-
[captured_payment](reference/std/captured_payment.md): Standard-library module.
|
|
30
|
-
[conditional_disbursement](reference/std/conditional_disbursement.md): Standard-library module.
|
|
31
|
-
[credit_facility](reference/std/credit_facility.md): Standard-library module.
|
|
32
|
-
[held_payment](reference/std/held_payment.md): Standard-library module.
|
|
33
|
-
[instant_transfer](reference/std/instant_transfer.md): Standard-library module.
|
|
34
|
-
[metered](reference/std/metered.md): Standard-library module.
|
|
35
|
-
[pooled_split](reference/std/pooled_split.md): Standard-library module.
|
|
36
|
-
[premium_forward](reference/std/premium_forward.md): Standard-library module.
|
|
37
|
-
[reconciled_payout](reference/std/reconciled_payout.md): Standard-library module.
|
|
38
|
-
[rotating_pool](reference/std/rotating_pool.md): Standard-library module.
|
|
39
|
-
[scheduled](reference/std/scheduled.md): Standard-library module.
|
|
40
|
-
[security_deposit](reference/std/security_deposit.md): Standard-library module.
|
|
41
|
-
[settlement_batch](reference/std/settlement_batch.md): Standard-library module.
|
|
42
|
-
[swap](reference/std/swap.md): Standard-library module.
|
|
43
|
-
[threshold_pool](reference/std/threshold_pool.md): Standard-library module.
|
|
44
|
-
[weighted_distribution](reference/std/weighted_distribution.md): Standard-library module.
|
package/docs/piece-plans.md
DELETED
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
# Compose actions over a piece plan
|
|
2
|
-
|
|
3
|
-
Use `piece_plan` to declare a finite partition and `piece_stage` to select a
|
|
4
|
-
stage of that plan. Use `calls` and `action_library` to share the transfer
|
|
5
|
-
body. These are ordinary clauses; they do not add another HSX grammar or a
|
|
6
|
-
public operation for each private leaf.
|
|
7
|
-
|
|
8
|
-
The clause shapes are defined by the selected UDL vocabulary. HSX checks them
|
|
9
|
-
in [`typecheck.ts`](../src/typecheck.ts) and preserves them in
|
|
10
|
-
[`emit.ts`](../src/emit.ts). The round-trip and private-module examples in
|
|
11
|
-
[`general-language.spec.ts`](../test/general-language.spec.ts) exercise this
|
|
12
|
-
path. The [UDL output reference](reference/udl-output.md) describes the emitted ABI.
|
|
13
|
-
|
|
14
|
-
## Worked sale example
|
|
15
|
-
|
|
16
|
-
This excerpt uses the sale settlement's `price` plan and funding call. It
|
|
17
|
-
belongs inside an instrument that declares the referenced immutable fields,
|
|
18
|
-
its lifecycle, its partition and its escrow-account capture. It is not a
|
|
19
|
-
standalone program. The three money fields partition `price` exactly. For
|
|
20
|
-
example, SAR minor-unit amounts `245000`, `3750` and `1250` sum to `250000`.
|
|
21
|
-
The separate service fee is outside that partition.
|
|
22
|
-
|
|
23
|
-
```hsx
|
|
24
|
-
piece_plan: {
|
|
25
|
-
id: "price";
|
|
26
|
-
total: "price";
|
|
27
|
-
pieces: [
|
|
28
|
-
{ id: "seller"; amount: "piece1Amount";
|
|
29
|
-
release_to: "sellerAccountId"; refund_to: "buyerAccountId"; },
|
|
30
|
-
{ id: "platform_fee"; amount: "piece2Amount";
|
|
31
|
-
release_to: "platformAccountId"; refund_to: "buyerAccountId"; },
|
|
32
|
-
{ id: "seller_cancel_fee"; amount: "piece3Amount";
|
|
33
|
-
release_to: "platformAccountId"; refund_to: "sellerAccountId"; }
|
|
34
|
-
];
|
|
35
|
-
fund_order: ["seller", "platform_fee", "seller_cancel_fee"];
|
|
36
|
-
release_order: ["platform_fee", "seller_cancel_fee"];
|
|
37
|
-
refund_order: ["platform_fee", "seller_cancel_fee"];
|
|
38
|
-
unfund_order: ["seller_cancel_fee", "platform_fee", "seller"];
|
|
39
|
-
};
|
|
40
|
-
action_library: {
|
|
41
|
-
settlement_piece: {
|
|
42
|
-
actionOrder: ["move"];
|
|
43
|
-
actions: {
|
|
44
|
-
move: {
|
|
45
|
-
parameters: {
|
|
46
|
-
piece: { kind: "piece"; };
|
|
47
|
-
source: { kind: "account"; };
|
|
48
|
-
destination: { kind: "account"; };
|
|
49
|
-
};
|
|
50
|
-
principal: "api_key";
|
|
51
|
-
approval: "inherit";
|
|
52
|
-
recovery: "local";
|
|
53
|
-
order: ["transfer"];
|
|
54
|
-
calls: [];
|
|
55
|
-
leaves: [{
|
|
56
|
-
id: "transfer";
|
|
57
|
-
operation: "internal_transfer.create";
|
|
58
|
-
bind: {
|
|
59
|
-
amount: "$piece.amount";
|
|
60
|
-
currency: "$piece.currency";
|
|
61
|
-
sourceAccountId: "$source";
|
|
62
|
-
destinationAccountId: "$destination";
|
|
63
|
-
};
|
|
64
|
-
effects: [{ kind: "moves"; signature: "moves.transfer.internal"; }];
|
|
65
|
-
evidence: "transferId";
|
|
66
|
-
}];
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
action fund_piece {
|
|
72
|
-
public: none;
|
|
73
|
-
piece_stage: { plan: "price"; stage: "fund"; };
|
|
74
|
-
calls: [{
|
|
75
|
-
id: "move_piece";
|
|
76
|
-
action: "settlement_piece.move";
|
|
77
|
-
bind: {
|
|
78
|
-
piece: "$piece";
|
|
79
|
-
source: "$fields.buyerAccountId";
|
|
80
|
-
destination: "$instance.refs.escrowAccountId";
|
|
81
|
-
};
|
|
82
|
-
}];
|
|
83
|
-
steps: [];
|
|
84
|
-
summary: "Fund a piece of a sale settlement";
|
|
85
|
-
}
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
The compiler derives `pieceId` from `fund_order`; callers cannot override the
|
|
89
|
-
piece amount or destination. The call binds the buyer and captured escrow
|
|
90
|
-
account into the one transfer leaf. The stage itself adds no movement.
|
|
91
|
-
`public: none` leaves program exposure explicit. Canonical UDL keeps the plan,
|
|
92
|
-
library, calls and action order, while resolved plans carry the expanded leaves
|
|
93
|
-
and their origin paths. An ordinary exported module value can supply the same
|
|
94
|
-
library without publishing another instrument.
|
|
95
|
-
|
|
96
|
-
For the cancellation path, the same private action binds its destination to
|
|
97
|
-
`$piece.refund_to`. `platform_fee` returns to the buyer; `seller_cancel_fee`
|
|
98
|
-
pays the seller. Unfund instead binds the buyer for every funded piece, in
|
|
99
|
-
reverse order. Handover, cancellation and service-fee collection remain
|
|
100
|
-
separate declared actions; a piece plan does not combine their decisions.
|
|
101
|
-
|
|
102
|
-
## Refusals to understand
|
|
103
|
-
|
|
104
|
-
UDL diagnostics retain their codes through HSX diagnostic provenance.
|
|
105
|
-
[`diagnostics.ts`](../src/diagnostics.ts) owns the HSX mapping, and
|
|
106
|
-
[`general-language.spec.ts`](../test/general-language.spec.ts) checks that fatal
|
|
107
|
-
UDL codes survive it.
|
|
108
|
-
|
|
109
|
-
| UDL code | Meaning for this example | Repair |
|
|
110
|
-
| --------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
|
|
111
|
-
| `UDL4001` | The money graph loses or creates value on a lifecycle path, including partial funding | Balance the funded amount on every exit and drain held value |
|
|
112
|
-
| `UDL5013` | A stage names an invalid plan/order or lacks the required call form | Name `price`, use declared unique piece IDs and declare the stage's calls |
|
|
113
|
-
| `UDL2010` | Private calls cycle, name an unresolved action, violate order or exceed bounds | Keep the graph finite and its order lists exact |
|
|
114
|
-
|
|
115
|
-
The partition itself has `UDL4002` diagnostics for incompatible immutable
|
|
116
|
-
fields, amount partition or currency. A stage does not exempt its transfer
|
|
117
|
-
from the independent money proof. Calls across different principals,
|
|
118
|
-
independent approval or external recovery boundaries are refused; model those
|
|
119
|
-
as separate actions. The [diagnostic reference](reference/diagnostics.md) lists the HSX refusal
|
|
120
|
-
codes and their repairs.
|
package/docs/playground.md
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
# Browser playground
|
|
2
|
-
|
|
3
|
-
The HSX playground is a static browser application for authoring, editing,
|
|
4
|
-
and inspecting HSX programs without a server. It runs the compiler directly
|
|
5
|
-
in the browser client. The hosted playground is served at
|
|
6
|
-
https://hyperscale0.ai/playground.
|
|
7
|
-
|
|
8
|
-
## What it provides
|
|
9
|
-
|
|
10
|
-
- Source editor with line numbers and debounced compilation (200 ms).
|
|
11
|
-
- Verdict badge showing `valid`, `warning`, or `invalid`.
|
|
12
|
-
- Diagnostics panel with stage, code, line and column coordinates, message,
|
|
13
|
-
and suggested fix. Clicking any diagnostic focuses the editor and highlights
|
|
14
|
-
the exact source span.
|
|
15
|
-
- Tabbed output pane showing the lowered canonical UDL document as formatted
|
|
16
|
-
JSON and the UDL cost manifest.
|
|
17
|
-
- Built-in example selector containing the full corpus of test programs and
|
|
18
|
-
standard-library settlements.
|
|
19
|
-
- Pure client execution with no Node runtime dependencies.
|
|
20
|
-
|
|
21
|
-
## Build the playground
|
|
22
|
-
|
|
23
|
-
Generate the examples manifest, bundle the browser assets, and copy static
|
|
24
|
-
files to `open/hsx/playground/dist/`:
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
bun run --cwd open/hsx playground:build
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
Verify that the generated static bundle contains no Node specifiers or URL
|
|
31
|
-
resolution calls:
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
bun run --cwd open/hsx playground:check
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## Serve locally
|
|
38
|
-
|
|
39
|
-
The hosted playground is served at https://hyperscale0.ai/playground.
|
|
40
|
-
To run the playground locally from `open/hsx/playground/dist/`, serve
|
|
41
|
-
the output directory with any local static file server.
|
|
42
|
-
|
|
43
|
-
Using Bun:
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
bunx serve open/hsx/playground/dist
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
Using Python:
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
python3 -m http.server -d open/hsx/playground/dist 8000
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
Open `http://localhost:8000` in a browser.
|
package/docs/reference/cli.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<!-- Generated by scripts/docs/build.ts for HSX 2.4.0. Do not edit. -->
|
|
2
|
-
|
|
3
|
-
# CLI
|
|
4
|
-
|
|
5
|
-
```text
|
|
6
|
-
hsx 2.4.0, the HSX compiler
|
|
7
|
-
|
|
8
|
-
Usage:
|
|
9
|
-
hsx check <file.hsx> [--catalog <catalog.udl>] [--strict]
|
|
10
|
-
hsx build <file.hsx> [--catalog <catalog.udl>] [--out <file.json>] [--strict]
|
|
11
|
-
hsx cost <file.hsx> [--catalog <catalog.udl>] [--json] [--out <file.json>] [--strict]
|
|
12
|
-
hsx explain <HSX####>
|
|
13
|
-
hsx format <file.hsx>
|
|
14
|
-
hsx lsp
|
|
15
|
-
hsx --version
|
|
16
|
-
hsx --help
|
|
17
|
-
|
|
18
|
-
Commands:
|
|
19
|
-
check Compile and report diagnostics. Prints nothing when the program is clean.
|
|
20
|
-
build Compile and write canonical UDL as JSON.
|
|
21
|
-
cost Compile and print the version-pinned cost manifest as a table or JSON.
|
|
22
|
-
explain Print one diagnostic title, fix, and source example.
|
|
23
|
-
format Print the source in the one canonical HSX style.
|
|
24
|
-
lsp Run the language server over stdin and stdout.
|
|
25
|
-
|
|
26
|
-
Options:
|
|
27
|
-
--catalog <file> Read the published instrument catalogue as canonical UDL JSON.
|
|
28
|
-
--json Print the cost manifest as JSON instead of a table.
|
|
29
|
-
--out <file> Write build or cost JSON to this path instead of stdout.
|
|
30
|
-
--strict Treat warning-severity diagnostics as failures.
|
|
31
|
-
|
|
32
|
-
Exit codes:
|
|
33
|
-
0 the program compiled (verdict valid, or warning without --strict)
|
|
34
|
-
1 the program was refused (verdict invalid, or warning with --strict)
|
|
35
|
-
2 the command line or the input file could not be used
|
|
36
|
-
```
|