dominds 0.8.1 → 0.8.2

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.
@@ -871,23 +871,13 @@ function formatFbrTellaskBody(language, snapshotText, options) {
871
871
  const effortLineEn = options.fbrEffort >= 1
872
872
  ? 'Conversation setup: you are one awakened “fresh-boots self.” Terminology mapping: in this FBR sideline, you are the tellaskee (the fresh-boots self), and the tellasker is the outer self (current mainline). In this same round, other fresh-boots selves also provide parallel drafts (no stable mapping—do not treat them as fixed identities). The outer self will make unified decisions only after all feedback returns; provide only this one independent draft and do not finalize next-action decisions for the outer self.'
873
873
  : 'Conversation setup: FBR is disabled for this member (no parallel fresh-boots drafts).';
874
- const tellaskBackHintZh = (() => {
875
- return [
876
- '提示:如果你还想知道更多系统细节,可在本 FBR 支线对话中用 `tellaskBack` 回问诉请者(tellasker,也就是外表自我/当前主线)。',
877
- '(当前这次 FBR 请不要真的发起任何诉请;只需说明你会回问什么。)',
878
- ].join('\n');
879
- })();
880
- const tellaskBackHintEn = (() => {
881
- return [
882
- 'Hint: if you want more system details, ask back in this FBR sideline dialog via `tellaskBack` (to the tellasker, i.e. the outer-self mainline dialog).',
883
- '(In this FBR run, do not actually emit any tellasks; just state what you would ask back.)',
884
- ].join('\n');
885
- })();
874
+ const missingContextHintZh = '提示:本 FBR 支线禁止任何诉请/函数调用;若信息不足,请直接列出“缺失信息 + 为什么阻塞判断”。';
875
+ const missingContextHintEn = 'Hint: this FBR sideline forbids all tellask/function calls; if context is missing, list the missing facts and why they block reasoning.';
886
876
  if (language === 'zh') {
887
877
  return [
888
878
  effortLineZh,
889
879
  '',
890
- tellaskBackHintZh,
880
+ missingContextHintZh,
891
881
  '',
892
882
  '请基于下面环境信息回答:',
893
883
  '- 在这个环境里要注意些什么?',
@@ -901,7 +891,7 @@ function formatFbrTellaskBody(language, snapshotText, options) {
901
891
  return [
902
892
  effortLineEn,
903
893
  '',
904
- tellaskBackHintEn,
894
+ missingContextHintEn,
905
895
  '',
906
896
  'Based on the environment info below, answer:',
907
897
  '- What should we watch out for in this environment?',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dominds",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "DevOps Mindsets — Sustainable Agentic Product Lifecycle",
5
5
  "type": "commonjs",
6
6
  "private": false,