@pome-sh/cli 0.35.2 → 0.35.3
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/dist/build-info.json +3 -3
- package/dist/src/cli/main.js +3 -3
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "pome-sh",
|
|
3
|
-
"version": "0.35.
|
|
4
|
-
"git_sha": "
|
|
5
|
-
"build_time": "2026-08-
|
|
3
|
+
"version": "0.35.3",
|
|
4
|
+
"git_sha": "76f126bc15b2467859785d59555570627963259e",
|
|
5
|
+
"build_time": "2026-08-29T21:46:38.757Z"
|
|
6
6
|
}
|
package/dist/src/cli/main.js
CHANGED
|
@@ -405,7 +405,7 @@ var DOCS_TOPICS = [
|
|
|
405
405
|
{
|
|
406
406
|
id: "getting-started",
|
|
407
407
|
title: "Quickstart",
|
|
408
|
-
path: "/quickstart/
|
|
408
|
+
path: "/quickstart/coding-agent",
|
|
409
409
|
keywords: ["install", "quickstart", "setup", "begin"]
|
|
410
410
|
},
|
|
411
411
|
{
|
|
@@ -4639,7 +4639,7 @@ function firstSentence(description) {
|
|
|
4639
4639
|
function resolveExampleRef(env = process.env) {
|
|
4640
4640
|
const override = env.POME_EXAMPLE_REF?.trim();
|
|
4641
4641
|
if (override) return override;
|
|
4642
|
-
const baked = "
|
|
4642
|
+
const baked = "76f126bc15b2467859785d59555570627963259e".trim() ;
|
|
4643
4643
|
return FULL_SHA.test(baked) ? baked : "main";
|
|
4644
4644
|
}
|
|
4645
4645
|
function rawUrlFor(example, file, ref) {
|
|
@@ -4994,7 +4994,7 @@ var DEFAULT_AGENT_COMMAND = `node ${DEFAULT_AGENT_FILE}`;
|
|
|
4994
4994
|
var MANIFEST_SCHEMA_URL = "https://pome.sh/schemas/v1/pome.json";
|
|
4995
4995
|
var MAX_UNREADABLE_PATHS_SHOWN = 5;
|
|
4996
4996
|
function readPackageVersion() {
|
|
4997
|
-
if ("0.35.
|
|
4997
|
+
if ("0.35.3".length > 0) return "0.35.3";
|
|
4998
4998
|
try {
|
|
4999
4999
|
const here = dirname(fileURLToPath(import.meta.url));
|
|
5000
5000
|
const candidates = [
|