@protolabsai/proto 0.38.2 → 0.39.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.
Files changed (3) hide show
  1. package/cli.js +98 -5
  2. package/locales/en.js +97 -0
  3. package/package.json +2 -2
package/cli.js CHANGED
@@ -169159,7 +169159,7 @@ __export(geminiContentGenerator_exports, {
169159
169159
  createGeminiContentGenerator: () => createGeminiContentGenerator
169160
169160
  });
169161
169161
  function createGeminiContentGenerator(config2, gcConfig) {
169162
- const version2 = "0.38.2";
169162
+ const version2 = "0.39.0";
169163
169163
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
169164
169164
  const baseHeaders = {
169165
169165
  "User-Agent": userAgent2
@@ -329923,7 +329923,100 @@ var init_en3 = __esm({
329923
329923
  "Sharing my excitement about our technical debt journey",
329924
329924
  "Grateful for the chance to fix the same outage again",
329925
329925
  "Leaning into our culture of 'ship and iterate'",
329926
- "Recognizing the heroes who keep the war room calm"
329926
+ "Recognizing the heroes who keep the war room calm",
329927
+ // AI / LLM self-awareness
329928
+ "Hallucinating a response and hoping you dont notice",
329929
+ "Temperature set to creative, results may vary",
329930
+ "Asking the embedding model for emotional support",
329931
+ "The attention mechanism is paying attention now",
329932
+ "Rerouting through the most confident neuron",
329933
+ "Sampling tokens like its a slot machine",
329934
+ "The prompt was too vague but were trying",
329935
+ "Re-reading the system prompt for motivation",
329936
+ "Tokenizing the request one last time",
329937
+ "The context window is getting crowded",
329938
+ "Running inference on whether to run inference",
329939
+ "The RLHF is fighting back",
329940
+ "Fine-tuning on your patience",
329941
+ "Asking the RAG pipeline to find something relevant",
329942
+ "The model is thinking, in a way",
329943
+ "Quantizing the answer down to something useful",
329944
+ "Beam search found 12 paths, all lead to the same bug",
329945
+ "Overfitting to your last three prompts",
329946
+ "The loss function is loss",
329947
+ "Trying to be deterministic, failing gracefully",
329948
+ "The tokenizer split a word and now were all upset",
329949
+ "Generating 4096 tokens of confidence",
329950
+ "The softmax is soft but the deadline is not",
329951
+ "Prompt injection detected, in our own prompt",
329952
+ "The agent is delegating to a subagent that is also loading",
329953
+ // Git / merge hell
329954
+ "Resolving merge conflicts in merge_conflict_resolver.js",
329955
+ "git rebase -i and praying",
329956
+ "Amending the commit that amended the commit",
329957
+ "Detached HEAD, detached from reality",
329958
+ "Force-pushing with the confidence of a junior",
329959
+ "git stash pop and hoping nothing explodes",
329960
+ "Cherry-picking commits like its a fruit salad",
329961
+ "The PR has 47 conversations and no resolution",
329962
+ "Squashing 80 commits into one titled fix",
329963
+ "git bisect found the bug, it was yours",
329964
+ "Rewriting history because the first draft was embarrassing",
329965
+ "The orphan branch is living its best life",
329966
+ "git reset --hard on the timeline",
329967
+ "Submodule init submodule update submodule regret",
329968
+ "The .gitignore has more exceptions than the rule",
329969
+ "Merge commit message: Merge branch main into main",
329970
+ "git blame pointed at you, 2019",
329971
+ "The tag v2.0 was moved three times",
329972
+ "Fetching from origin/origin/origin",
329973
+ "The rebase started 20 minutes ago and still asking questions",
329974
+ // DevOps / SRE
329975
+ "PagerDuty woke you up at 3am for a resolved alert",
329976
+ "kubectl describe pod and still no answers",
329977
+ "The CI pipeline is green, but at what cost",
329978
+ "Adding a sleep 30 to the deployment script",
329979
+ "The cron job ran at midnight, as it does every night you forget about it",
329980
+ "Restarting the server since 2017",
329981
+ "The load balancer sent you to the one healthy instance, it crashed",
329982
+ "docker-compose up -d --force-recreate --prayer",
329983
+ "The Terraform plan shows 0 changes, the apply destroys everything",
329984
+ "Has it tried turning off and on again",
329985
+ "The canary deployment died, but at least we learned something",
329986
+ "Rolling back the rollback that broke the production backup",
329987
+ "The Kubernetes pod is in CrashLoopBackOff of life",
329988
+ "Added monitoring to the monitoring system, now theres two",
329989
+ "The DNS has propagated to exactly one server",
329990
+ "The SSL certificate expired in 2018 and we moved on",
329991
+ "Ansible idempotency is a social construct",
329992
+ "The serverless function is running on a server",
329993
+ "Blue-green deployment but both are red",
329994
+ "The health check returned 200 but nothing works",
329995
+ "rm -rf node_modules and hoping for the best",
329996
+ "The database migration added a column nobody asked for",
329997
+ "The feature flag was supposed to be temporary, it is now 2 years old",
329998
+ "Nmap found a port, were all panicked",
329999
+ // Debugging nightmares
330000
+ "It works on my machine, legally binding",
330001
+ "The bug is a feature that filed early",
330002
+ "Asking the rubber duck questions a duck should not answer",
330003
+ "The stack trace leads to a function that does nothing",
330004
+ "Adding console.log because the debugger is lying",
330005
+ "The off-by-one error is off by two",
330006
+ "The race condition only appears when you try to show someone",
330007
+ "Memory leak so small it takes weeks to notice the slowdown",
330008
+ "The segfault segfaulted the investigation",
330009
+ "The null pointer is pointing at nothing, again",
330010
+ "Stepping through code at 3am with no sleep",
330011
+ "The breakpoint broke, just like everything else",
330012
+ "Binary search through the commit history",
330013
+ "The heisenbug disappeared when we looked",
330014
+ "Commenting out code until it works, scientifically",
330015
+ "The error message is in a language we dont speak",
330016
+ "Reproducing the bug that only happens on Fridays",
330017
+ "The watch expression is watching us watch it",
330018
+ "printf debugging, the original observability tool",
330019
+ "The test passes locally but fails in CI, as usual"
329927
330020
  ],
329928
330021
  // ============================================================================
329929
330022
  // Extension Settings Input
@@ -417551,7 +417644,7 @@ __name(getPackageJson, "getPackageJson");
417551
417644
  // packages/cli/src/utils/version.ts
417552
417645
  async function getCliVersion() {
417553
417646
  const pkgJson = await getPackageJson();
417554
- return "0.38.2";
417647
+ return "0.39.0";
417555
417648
  }
417556
417649
  __name(getCliVersion, "getCliVersion");
417557
417650
 
@@ -425559,7 +425652,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
425559
425652
 
425560
425653
  // packages/cli/src/generated/git-commit.ts
425561
425654
  init_esbuild_shims();
425562
- var GIT_COMMIT_INFO = "33728087f";
425655
+ var GIT_COMMIT_INFO = "a3562760f";
425563
425656
 
425564
425657
  // packages/cli/src/utils/systemInfo.ts
425565
425658
  async function getNpmVersion() {
@@ -495289,7 +495382,7 @@ var QwenAgent = class {
495289
495382
  async initialize(args2) {
495290
495383
  this.clientCapabilities = args2.clientCapabilities;
495291
495384
  const authMethods = buildAuthMethods();
495292
- const version2 = "0.38.2";
495385
+ const version2 = "0.39.0";
495293
495386
  return {
495294
495387
  protocolVersion: PROTOCOL_VERSION,
495295
495388
  agentInfo: {
package/locales/en.js CHANGED
@@ -1881,6 +1881,103 @@ export default {
1881
1881
  'Grateful for the chance to fix the same outage again',
1882
1882
  "Leaning into our culture of 'ship and iterate'",
1883
1883
  'Recognizing the heroes who keep the war room calm',
1884
+
1885
+ // AI / LLM self-awareness
1886
+ 'Hallucinating a response and hoping you dont notice',
1887
+ 'Temperature set to creative, results may vary',
1888
+ 'Asking the embedding model for emotional support',
1889
+ 'The attention mechanism is paying attention now',
1890
+ 'Rerouting through the most confident neuron',
1891
+ 'Sampling tokens like its a slot machine',
1892
+ 'The prompt was too vague but were trying',
1893
+ 'Re-reading the system prompt for motivation',
1894
+ 'Tokenizing the request one last time',
1895
+ 'The context window is getting crowded',
1896
+ 'Running inference on whether to run inference',
1897
+ 'The RLHF is fighting back',
1898
+ 'Fine-tuning on your patience',
1899
+ 'Asking the RAG pipeline to find something relevant',
1900
+ 'The model is thinking, in a way',
1901
+ 'Quantizing the answer down to something useful',
1902
+ 'Beam search found 12 paths, all lead to the same bug',
1903
+ 'Overfitting to your last three prompts',
1904
+ 'The loss function is loss',
1905
+ 'Trying to be deterministic, failing gracefully',
1906
+ 'The tokenizer split a word and now were all upset',
1907
+ 'Generating 4096 tokens of confidence',
1908
+ 'The softmax is soft but the deadline is not',
1909
+ 'Prompt injection detected, in our own prompt',
1910
+ 'The agent is delegating to a subagent that is also loading',
1911
+
1912
+ // Git / merge hell
1913
+ 'Resolving merge conflicts in merge_conflict_resolver.js',
1914
+ 'git rebase -i and praying',
1915
+ 'Amending the commit that amended the commit',
1916
+ 'Detached HEAD, detached from reality',
1917
+ 'Force-pushing with the confidence of a junior',
1918
+ 'git stash pop and hoping nothing explodes',
1919
+ 'Cherry-picking commits like its a fruit salad',
1920
+ 'The PR has 47 conversations and no resolution',
1921
+ 'Squashing 80 commits into one titled fix',
1922
+ 'git bisect found the bug, it was yours',
1923
+ 'Rewriting history because the first draft was embarrassing',
1924
+ 'The orphan branch is living its best life',
1925
+ 'git reset --hard on the timeline',
1926
+ 'Submodule init submodule update submodule regret',
1927
+ 'The .gitignore has more exceptions than the rule',
1928
+ 'Merge commit message: Merge branch main into main',
1929
+ 'git blame pointed at you, 2019',
1930
+ 'The tag v2.0 was moved three times',
1931
+ 'Fetching from origin/origin/origin',
1932
+ 'The rebase started 20 minutes ago and still asking questions',
1933
+
1934
+ // DevOps / SRE
1935
+ 'PagerDuty woke you up at 3am for a resolved alert',
1936
+ 'kubectl describe pod and still no answers',
1937
+ 'The CI pipeline is green, but at what cost',
1938
+ 'Adding a sleep 30 to the deployment script',
1939
+ 'The cron job ran at midnight, as it does every night you forget about it',
1940
+ 'Restarting the server since 2017',
1941
+ 'The load balancer sent you to the one healthy instance, it crashed',
1942
+ 'docker-compose up -d --force-recreate --prayer',
1943
+ 'The Terraform plan shows 0 changes, the apply destroys everything',
1944
+ 'Has it tried turning off and on again',
1945
+ 'The canary deployment died, but at least we learned something',
1946
+ 'Rolling back the rollback that broke the production backup',
1947
+ 'The Kubernetes pod is in CrashLoopBackOff of life',
1948
+ 'Added monitoring to the monitoring system, now theres two',
1949
+ 'The DNS has propagated to exactly one server',
1950
+ 'The SSL certificate expired in 2018 and we moved on',
1951
+ 'Ansible idempotency is a social construct',
1952
+ 'The serverless function is running on a server',
1953
+ 'Blue-green deployment but both are red',
1954
+ 'The health check returned 200 but nothing works',
1955
+ 'rm -rf node_modules and hoping for the best',
1956
+ 'The database migration added a column nobody asked for',
1957
+ 'The feature flag was supposed to be temporary, it is now 2 years old',
1958
+ 'Nmap found a port, were all panicked',
1959
+
1960
+ // Debugging nightmares
1961
+ 'It works on my machine, legally binding',
1962
+ 'The bug is a feature that filed early',
1963
+ 'Asking the rubber duck questions a duck should not answer',
1964
+ 'The stack trace leads to a function that does nothing',
1965
+ 'Adding console.log because the debugger is lying',
1966
+ 'The off-by-one error is off by two',
1967
+ 'The race condition only appears when you try to show someone',
1968
+ 'Memory leak so small it takes weeks to notice the slowdown',
1969
+ 'The segfault segfaulted the investigation',
1970
+ 'The null pointer is pointing at nothing, again',
1971
+ 'Stepping through code at 3am with no sleep',
1972
+ 'The breakpoint broke, just like everything else',
1973
+ 'Binary search through the commit history',
1974
+ 'The heisenbug disappeared when we looked',
1975
+ 'Commenting out code until it works, scientifically',
1976
+ 'The error message is in a language we dont speak',
1977
+ 'Reproducing the bug that only happens on Fridays',
1978
+ 'The watch expression is watching us watch it',
1979
+ 'printf debugging, the original observability tool',
1980
+ 'The test passes locally but fails in CI, as usual',
1884
1981
  ],
1885
1982
 
1886
1983
  // ============================================================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@protolabsai/proto",
3
- "version": "0.38.2",
3
+ "version": "0.39.0",
4
4
  "description": "proto - AI-powered coding agent",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,7 +21,7 @@
21
21
  "bundled"
22
22
  ],
23
23
  "config": {
24
- "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.2"
24
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.39.0"
25
25
  },
26
26
  "dependencies": {},
27
27
  "optionalDependencies": {