@lazyingart/agintiflow 0.20.114 → 0.20.116

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/README.md CHANGED
@@ -18,9 +18,9 @@
18
18
  ![Sandbox](https://img.shields.io/badge/Shell-Docker%20Sandbox-f97316)
19
19
  ![Status](https://img.shields.io/badge/Status-Prototype-7c3aed)
20
20
 
21
- **Project-aware, low-cost agents for real-life problems.**
21
+ **Project-aware, low-cost agents for real problems.**
22
22
 
23
- A Web, CLI, and API workspace for agents that work across creative, scientific, software, hardware, and industrial projects with guarded tools, durable sessions, SCS supervision, and AAPS workflows.
23
+ AgInTiFlow is a project-aware agent workspace for hybrid wet-dry R&D, hardware-aware intelligence, software automation, and industrial workflows. From lab planning to data analysis, from hardware control to production scripts, and from microscopy, drones, and robots to reports, it helps agents work through API, Web, or CLI with SCS supervision, AAPS workflows, guarded execution, and durable evidence.
24
24
 
25
25
  The short version: run `aginti` inside a project, give it a task, inspect what it plans, see every tool call, resume later, and keep the outputs in your workspace.
26
26
 
@@ -243,7 +243,7 @@ Venice routes can be used for optional uncensored or less restricted creative wo
243
243
 
244
244
  ## AAPS And Large Workflows
245
245
 
246
- AAPS uses the slogan "Prompt is all you need": a prompt-native and project-oriented programming language and visual studio for turning ideas into structured, executable, and verifiable pipelines with declared outputs, validation gates, recovery steps, and durable artifacts.
246
+ AAPS uses the slogan "Prompt is All You Need": a prompt-native and project-oriented programming language and visual studio for turning ideas into structured, executable, and verifiable pipelines with declared outputs, validation gates, recovery steps, and durable artifacts.
247
247
 
248
248
  AgInTiFlow is the interactive agent/tool backend for those workflows.
249
249
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.114",
3
+ "version": "0.20.116",
4
4
  "type": "module",
5
- "description": "A Web, CLI, and API workspace for project-aware, low-cost agents across creative, scientific, software, hardware, and industrial projects.",
5
+ "description": "AgInTiFlow is a project-aware agent workspace for hybrid wet-dry R&D, hardware-aware intelligence, software automation, and industrial workflows.",
6
6
  "license": "Apache-2.0",
7
7
  "homepage": "https://flow.lazying.art",
8
8
  "repository": {
package/public/app.js CHANGED
@@ -18,7 +18,7 @@ const translations = {
18
18
  brandKicker: "Developed by AgInTi Lab, LazyingArt LLC",
19
19
  languageLabel: "Language",
20
20
  intro:
21
- "Project-aware, low-cost agents for real-life problems.",
21
+ "Project-aware, low-cost agent for real problems",
22
22
  projectStatusTitle: "Project folder",
23
23
  setupTitle: "Provider setup",
24
24
  setupHelp:
package/public/index.html CHANGED
@@ -34,7 +34,7 @@
34
34
  </label>
35
35
  </div>
36
36
  <p class="subtle" data-i18n="intro">
37
- Project-aware, low-cost agents for real-life problems.
37
+ Project-aware, low-cost agent for real problems
38
38
  </p>
39
39
  <details class="project-card">
40
40
  <summary>
@@ -230,6 +230,9 @@ try {
230
230
  if (!launchHeader.includes("█████") || !launchHeader.includes("v0.0.0") || launchHeader.split("\n").length < 9) {
231
231
  throw new Error("large launch header did not render a centered multi-line title");
232
232
  }
233
+ if (launchHeader.includes("launchTagline")) {
234
+ throw new Error("empty launch tagline should not render the i18n key name");
235
+ }
233
236
  if (
234
237
  formatElapsedDuration(0) !== "00:00" ||
235
238
  formatElapsedDuration(65_000) !== "01:05" ||
package/src/i18n.js CHANGED
@@ -113,7 +113,7 @@ const LANGUAGE_ALIASES = new Map(
113
113
 
114
114
  const TRANSLATIONS = {
115
115
  en: {
116
- launchSubtitle: "Project-aware, low-cost agents for real-life problems.",
116
+ launchSubtitle: "Project-aware, low-cost agent for real problems",
117
117
  launchCredit: "Developed by AgInTi Lab, LazyingArt LLC",
118
118
  launchTagline: "",
119
119
  interactiveIntro: "Interactive agent chat. Type /help for commands, /exit to quit.",
@@ -729,7 +729,8 @@ export function languageLabel(language = "en") {
729
729
 
730
730
  export function t(key, language = "en", values = {}) {
731
731
  const normalized = normalizeLanguage(language);
732
- const text = TRANSLATIONS[normalized]?.[key] || TRANSLATIONS.en[key] || key;
732
+ const localized = TRANSLATIONS[normalized] || {};
733
+ const text = Object.hasOwn(localized, key) ? localized[key] : Object.hasOwn(TRANSLATIONS.en, key) ? TRANSLATIONS.en[key] : key;
733
734
  return Object.entries(values).reduce((result, [name, value]) => result.replaceAll(`{${name}}`, String(value)), text);
734
735
  }
735
736