Total Pageviews

Monday, 10 August 2026

搭建基于nextjs的静态博客程序nbt


首先fork此项目:https://github.com/sametcn99/nextui-blog-template,我fork后,得到的项目地址是https://github.com/brightmann/nbt,


访问https://github.com/brightmann/nbt/tree/main/sampleposts,在此处新建源帖(即add file),我新建了源帖fh.md,内容为:

---
title: "战马"
date: 2026-06-15T19:51:00
description: "这是一篇文章"
author: "admin"
---

此处写正文或html codes.

( 详见https://github.com/brightmann/nbt/blob/main/sampleposts/fh.md?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/brightmann/nbt

  Build Command栏填入npm run build
 Install Command栏填入npm install 

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://nbt-oaab.vercel.app/

项目地址:
https://github.com/sametcn99/nextui-blog-template
https://github.com/brightmann/nbt

演示博客:

 https://nbt-oaab.vercel.app/

 https://nbt-oaab.vercel.app/posts/fh 不能显示视频

 

搭建基于nextjs的静态博客程序znb


首先fork此项目:https://github.com/Zero-to-Hero-Developer/nextjs-blog,我fork后,得到的项目地址是https://github.com/brightmann/znb,


访问https://github.com/brightmann/znb/tree/main/posts,在此处新建源帖(即add file),我新建了源帖fh.md,内容为:

---
title: "战马"
author: "ym"
category: "example"
date: "2026-06-13T08:18:00"
bannerImage: "url-to-image.png"
tags:
  - misc1
  - misc2
  - misc3
---

此处写正文或html codes.

( 详见https://github.com/brightmann/znb/blob/main/posts/fh.md?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/brightmann/znb

  Build Command栏填入npm run build
 Install Command栏填入npm install 

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://znb-gamma.vercel.app/

项目地址:
https://github.com/Zero-to-Hero-Developer/nextjs-blog
https://github.com/brightmann/znb

演示博客:

 https://znb-gamma.vercel.app/

 https://znb-gamma.vercel.app/blog
https://znb-gamma.vercel.app/blog/fh 不能显示视频

Sunday, 9 August 2026

prime-agent

 A self-improving RLM agent for coding workflows and long-running autonomous tasks.

 

Prime Agent: A Self-Improving RLM Agent

DocumentationVerifiersPRIME-RLpi-mono

CI Build Binaries

Prime Agent is an open-source coding and research agent for general and long-running work. It is designed around two core abstractions:

  • The Recursive Language Model (RLM) treats context as variables (prompt-as-a-variable) and tools like recursive subagents as function calls (programmatic tool /sub-agent calling) inside a persistent REPL.
  • The Continual Harness stores supplemental prompts, memories, skill descriptions, and reusable subagent specifications as durable state that Prime Agent can refine through small, evidence-backed updates, local to the session by default.

Prime Agent combines a persistent Python control environment with durable harness state, so useful working context and reusable operating patterns can outlive a single chat window.

  • Everything is programmatic: persistent IPython is the built-in model tool; file operations, shell commands, tool use, subagents, and context management happen through code.
  • Subagents are built in: rlm(...) spawns real child agents for parallel or background work and returns their results programmatically.
  • The harness can improve: /refine reviews the current trajectory and can apply small, evidence-backed updates to supplemental harness state. It never rewrites the immutable base system prompt, and recorded snapshots support rollback.
  • Skills are executable: skills are importable Python packages, and the built-in skill creator can turn recurring workflows into project or personal skills.
  • Sessions run in the background: daemon-backed agents keep running when the terminal disconnects and can be reattached later.
  • Agents communicate directly: running agents can exchange messages and orchestrate one another without routing everything through the user.
  • Long tasks keep moving: automatic compaction, persistent goals, heartbeats, schedules, autonomous mode, and retained subagents preserve progress across turns and terminal sessions.

Getting Started

Install the latest stable release on macOS or Linux:

curl -fsSL https://app.primeintellect.ai/prime-agent/install.sh | sh

The installer downloads a versioned release, verifies its SHA-256 checksum, installs the prime-agent command, and can prepare the IPython runtime used by the agent.

Start Prime Agent from the repository or directory you want it to work in:

cd /path/to/project
prime-agent

On first launch, run /login to choose a subscription or API-key provider. Prime Agent works in the current directory and can run commands and modify files there. Use a disposable clone, clean worktree, or another checkpoint you can inspect and restore.

Warning

Prime Agent executes model-generated Python and project commands with your user permissions. Its worker and kernel processes improve lifecycle isolation and recovery; they are not a security sandbox. Review changes and use trusted repositories, instructions, skills, and extensions only. Run untrusted code or instructions in an external sandbox or restricted environment.

Useful commands:

prime-agent agents                   # Browse running, idle, and saved sessions
prime-agent attach <agent>           # Reattach to a running session
prime-agent --resume <path|id>       # Resume a saved session
prime-agent status                   # Inspect background service state
prime-agent doctor [--fix]           # Inspect or repair background services
prime-agent update [--force]         # Update Prime Agent
prime-agent shutdown [--force]       # Stop every agent, worker, and background service

Built for Long-Running Work

Prime Agent is built for long-running work, especially for evaluations in research. These features are available in the TUI, and when run autonomously.

  • Continual Harness: /refine can persist focused, reviewable lessons as supplemental prompts, memories, reusable skill descriptions, or subagent specifications, with recorded refinement history. It does not replace packaging and reviewing new executable skills.
  • Direct agent-to-agent communication: running agents and retained subagents can discover one another, exchange messages, and steer active work.
  • Daemon-backed continuity: active sessions, IPython state, schedules, and subagents keep running when the terminal detaches and can be reattached later.
  • Heartbeats and schedules: /heartbeat, rlm_heartbeat, and prime-agent schedule can re-enter a session periodically or at a specific time.
  • Persistent goals: /goal keeps an objective and its progress active across turns until it is completed, paused, or cleared.
  • Bounded autonomous mode: /autonomous continues within configured turn, token, and time budgets and can run user-defined quality gates. A passed gate checks only what that gate verifies; reaching a limit does not imply task success.

Documentation

Acknowledgements

Our agent and TUI is built on top of pi. We thank the authors of pi for their valuable work.

from  https://github.com/PrimeIntellect-ai/prime-agent

搭建基于nextjs的静态博客程序nd

 

首先fork此项目:https://github.com/nexxeln/nexxel.dev,我fork后,得到的项目地址是https://github.com/briteming/nd

访问https://github.com/briteming/nd/tree/main/posts,在此处新建源帖(即add file),我新建了源帖fh.mdx,内容为:

---
title: "战马"
description: "这是一篇文章"
date: "May 27, 2026"
---

此处写正文或html codes.

( 详见https://github.com/briteming/nd/blob/main/posts/fh.mdx?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/briteming/nd

  Build Command栏填入bun run build
 Install Command栏填入bun install 

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://nd-sigma.vercel.app/

项目地址:
https://github.com/nexxeln/nexxel.dev
https://github.com/briteming/nd

演示博客:

 https://nd-sigma.vercel.app/

 https://nd-sigma.vercel.app/blog/
https://nd-sigma.vercel.app/blog/fh 能显示视频

搭建基于nextjs的静态博客程序mbn


首先fork此项目:https://github.com/Jashnm/mdx-blog-nextjs,我fork后,得到的项目地址是https://github.com/brightmann/mbn,

访问https://github.com/brightmann/mbn/tree/master/posts,在此处新建源帖(即add file),我新建了源帖fh.mdx,内容为:

---
title: "战马"
date: "2026-06-06"
author: "ym"
excerpt: "这是一篇文章"
---

此处写正文或html codes.

( 详见https://github.com/brightmann/mbn/blob/master/posts/fh.mdx?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/brightmann/mbn

  Build Command栏填入yarn build
 Install Command栏填入yarn

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://mbn-gray.vercel.app/

项目地址:
https://github.com/Jashnm/mdx-blog-nextjs
https://github.com/brightmann/mbn

演示博客:

 https://mbn-gray.vercel.app/

 https://mbn-gray.vercel.app/blog,同一天里的帖子是按字母顺序从下往上排列:

https://mbn-gray.vercel.app/blog/fh

https://mbn-gray.vercel.app/blog/ce

 https://mbn-gray.vercel.app/blog/advice

 https://mbn-gray.vercel.app/blog/fh 能显示视频

搭建基于nextjs的静态博客程序tynmb


首先fork此项目:https://github.com/teyim/Nextjs-markdown-blog,我fork后,得到的项目地址是https://github.com/briteming/tynmb,删除package-lock.json, 编辑package.json,修改"next-mdx-remote"的值为"^6.0.0"


访问https://github.com/briteming/tynmb/tree/main/posts,在此处新建源帖(即add file),我新建了源帖fh.md,内容为:

---
title: '战马'
date: '2026-05-26 21:12:00'
updatedDate: ''
image: getting-started-with-nextjs.png
excerpt: 这是一篇文章
topic: 'music'
readTime: '1 min'
---

此处写正文或html codes.

( 详见https://github.com/briteming/tynmb/blob/main/posts/fh.md?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/briteming/tynmb

  Build Command栏填入npm run build
 Install Command栏填入npm install --force

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://tynmb.vercel.app/

项目地址:
https://github.com/teyim/Nextjs-markdown-blog
https://github.com/briteming/tynmb

演示博客:

 https://tynmb.vercel.app/

 https://tynmb.vercel.app/posts/fh 不能显示视频

搭建基于nextjs的静态博客程序vbm


首先fork此项目:https://github.com/vadimghedreutan/blog-mdx,我fork后,得到的项目地址是https://github.com/brightmann/vbm,


访问https://github.com/brightmann/vbm/tree/main/posts,在此处新建源帖(即add file),我新建了源帖pt.md,内容为:

---
title: "往事"
subtitle: "这是一篇文章"
date: "2026-06-11T20:52:00"
---

此处写正文或html codes.

( 详见https://github.com/brightmann/vbm/blob/main/posts/pt.md?plain=1) 

然后,访问vercel.com/new ,导入项目
https://github.com/brightmann/vbm

  Build Command栏填入pnpm build
 Install Command栏填入pnpm install 

然后点击底部的deploy按钮,等待部署完成。部署完成后,我得到网址:
https://vbm-beta.vercel.app

项目地址:
https://github.com/vadimghedreutan/blog-mdx
https://github.com/brightmann/vbm

演示博客:

 https://vbm-beta.vercel.app

 https://vbm-beta.vercel.app/posts/pt 能够显示视频