@maka/maka-cli 5.156.0 → 5.158.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.158.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|
|
@@ -94,8 +94,16 @@ export class StanceCommand extends Command {
|
|
|
94
94
|
if (onMatrix) {
|
|
95
95
|
return `That's not a Matrix route. Choose: ${MATRIX_STANCE_CYCLE.join(', ')} (${MATRIX_STANCE_CYCLE.map(m => MATRIX_STANCE_ACTION[m]).join(' / ')}).`;
|
|
96
96
|
}
|
|
97
|
+
// THE EXACT NAME ALWAYS WINS. "stance non-lethal" -- the very word the
|
|
98
|
+
// refusal below lists -- used to be refused: fuzzyPickName normalizes
|
|
99
|
+
// punctuation to whitespace, so "non-lethal" and the "non lethal"
|
|
100
|
+
// alias both became "non lethal", the exact tier saw two candidates,
|
|
101
|
+
// and an ambiguous guess deliberately misses. Caught by a bench that
|
|
102
|
+
// typed the name off the "Choose:" line (2jbprbSYqF7EPXrkR's dry run).
|
|
97
103
|
// The old words (and their typos) still land: fuzzy over the cycle AND the aliases, then through the alias map.
|
|
98
|
-
const pickedRaw =
|
|
104
|
+
const pickedRaw = STANCE_CYCLE.includes(raw)
|
|
105
|
+
? raw
|
|
106
|
+
: STANCE_ALIASES[raw] ?? fuzzyPickName(args.join(' '), [...STANCE_CYCLE, ...Object.keys(STANCE_ALIASES)]);
|
|
99
107
|
const picked = pickedRaw ? (STANCE_ALIASES[pickedRaw] ?? pickedRaw) : undefined;
|
|
100
108
|
if (!picked) {
|
|
101
109
|
return `That's not a stance. Choose: ${STANCE_CYCLE.join(', ')}.`;
|
|
@@ -1669,6 +1669,17 @@ ${worldEventsSummary}
|
|
|
1669
1669
|
const heatSummary = heat
|
|
1670
1670
|
? `The district's current HEAT on this run is ${heat}. If you would naturally reassure them that things are quiet, clean, or under control, that claim has to be TRUE against this -- never tell them the coast is clear, that nobody noticed, or that things went quiet if heat says otherwise. Speak honestly about how hot it actually is instead.`
|
|
1671
1671
|
: '';
|
|
1672
|
+
// A JOB ITEM IN THE WRONG HANDS (5Lq8wNX9szaA45u6b): the runner
|
|
1673
|
+
// handed the client the crate meant for Doc Wrench by mistake, and
|
|
1674
|
+
// she held it through three polite asks, yielding only to a threat.
|
|
1675
|
+
// Same shape as payoutSummary -- nothing told the model whose
|
|
1676
|
+
// delivery the thing in its pocket actually was, so "carry it to
|
|
1677
|
+
// the Stitch yourself" came out as a refusal instead of a handover.
|
|
1678
|
+
const wc = this._scene?.getWinCondition?.();
|
|
1679
|
+
const carriesPrize = !!wc?.item && this.inventory.getAllItems().some(i => i.name === wc.item);
|
|
1680
|
+
const jobItemSummary = carriesPrize && wc?.toNpc && wc.toNpc !== this.name
|
|
1681
|
+
? `You are currently HOLDING ${wc.item}, which the job needs delivered to ${wc.toNpc} -- not to you. It is the runner's cargo, not yours: if they ask for it back, hand it over in the SAME response with "[COMMAND] give ${wc.item} to <their name>" -- never make them argue or threaten for it, and never keep it as leverage.`
|
|
1682
|
+
: '';
|
|
1672
1683
|
// If nothing else has happened to/around this NPC yet this scene, this
|
|
1673
1684
|
// is the first time anyone's reached out -- nudge toward volunteering
|
|
1674
1685
|
// the job rather than waiting to be asked, which real playtesting
|
|
@@ -2113,6 +2124,7 @@ Your objective is to drive the story line.`}
|
|
|
2113
2124
|
${dialogueSummary}
|
|
2114
2125
|
${eph ? '' : payoutSummary}
|
|
2115
2126
|
${eph ? '' : heatSummary}
|
|
2127
|
+
${eph ? '' : jobItemSummary}
|
|
2116
2128
|
|
|
2117
2129
|
${roomDesc}${spotBlock}${combatSpatialBlock}
|
|
2118
2130
|
${formattedExitsStr}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maka/maka-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.158.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"summary": "A command line tool for scaffolding Meteor 3.x applications using either React.",
|
|
6
6
|
"description": "A command line tool for scaffolding Meteor 3.x applications using React.",
|