Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计提醒

build-pmars构建 pmars

Agent Skill

build-pmars 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

792

周安装

34

GitHub Stars

93

下载量

277
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:build-pmars(构建 pmars)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/build-pmars
安装命令:
npx skills add https://github.com/letta-ai/skills --skill build-pmars
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill build-pmars

简介

build-pmars 用于指导从 Debian 源码包构建 pMARS(便携式内存阵列红码模拟器),适合在无 X11 依赖的头版环境中搭建遗留 C 软件。

  • 适用于需要构建或编译旧版本 C 语言项目的开发场景,尤其在资源受限或无图形界面的服务器环境。
  • 通过分阶段准备和文档审查,结合 Makefile 配置与编译选项调整,实现稳定可靠的源码级构建。
  • 安装前需确认系统环境、权限范围及是否允许执行 shell 命令,注意维护状态与潜在的网络依赖。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Build pMARS

Overview

This skill provides guidance for building pMARS (portable Memory Array Redcode Simulator) from Debian source packages, specifically for creating headless builds without X11 dependencies. The approaches and verification strategies apply broadly to building legacy C software from source packages.

Recommended Approach

Phase 1: Preparation and Documentation Review

Before modifying any build configurations:

  1. Review available documentation first

- Read Makefile comments to understand available build options - Check README files for build instructions and configuration flags - Review debian/control for Build-Depends to understand required dependencies

  1. Check build dependencies early

- Run apt-get build-dep <package> to install all build dependencies - Alternatively, review debian/control file and install Build-Depends manually - Install dpkg-dev package if working with Debian source packages

  1. Enable source repositories

- For DEB822 format (modern Ubuntu/Debian): Edit /etc/apt/sources.list.d/*.sources and ensure Types: line includes deb-src - For traditional format: Uncomment or add deb-src lines in /etc/apt/sources.list - Run apt-get update after modifying source lists

Phase 2: Source Acquisition

  1. Download source package apt-get source pmars
  2. Extract to target location

- Move or extract source files to the required build directory (e.g., /app)

Phase 3: Build Configuration for Headless Mode

To build pMARS without X11 support:

  1. Modify CFLAGS in Makefile

- Remove -DXWINGRAPHX from CFLAGS to disable X11 graphics - Remove -DCURSESGRAPHX if curses support is also unwanted

  1. Remove X11 library linkage

- Remove -lX11 and any X11-related libraries from LDFLAGS/LIBS - Remove -lcurses or -lncurses if disabling curses support

  1. Verify Makefile changes

- After editing, read the Makefile to confirm changes are correct - Check for any conditional build logic that might override changes

Phase 4: Compilation and Installation

  1. Compile the source make clean # If previous build artifacts exist make
  2. Install to target location cp pmars /usr/local/bin/pmars # Or use: make install PREFIX=/usr/local
  3. Verify no X11 dependencies ldd /usr/local/bin/pmars

- Output should NOT contain libX11, libXt, or other X11 libraries

Verification Strategies

Binary Verification

  • Use ldd to verify linked libraries match expectations
  • Run the binary with --help or without arguments to confirm basic functionality
  • Check binary location and permissions

Functional Testing

  • Test with actual warrior files to verify core functionality
  • When testing flags like -f (fixed position), understand the flag behavior from help text or source before testing
  • Create a simple test script for repeated testing rather than running similar commands multiple times

Debugging Approach

When encountering crashes or segmentation faults:

  1. Install debugging tools: apt-get install gdb
  2. Compile with debug symbols: Add -g to CFLAGS and rebuild
  3. Run under GDB to get precise stack traces before applying fixes
  4. Investigate environmental differences if behavior differs between GDB and direct execution
  5. Avoid speculative fixes - understand the root cause before modifying source code

Common Pitfalls

Configuration Errors

  • DEB822 format confusion: Modern Debian/Ubuntu use .sources files with YAML-like format, not the traditional one-line format
  • Missing dpkg-dev: Source package operations require dpkg-dev package
  • Incomplete dependency installation: Always check Build-Depends before compiling

Build Process Mistakes

  • Editing wrong Makefile section: Some Makefiles have multiple configuration sections; ensure edits target the correct section
  • Incomplete X11 removal: Both CFLAGS defines AND library linkage must be modified for headless builds
  • Not cleaning before rebuild: After Makefile changes, run make clean before make

Testing Mistakes

  • Misunderstanding flag behavior: Read help text or source to understand flag semantics before testing
  • Running repetitive similar commands: Create a test script instead of manually running variations
  • Insufficient verification: A single test passing does not guarantee full functionality

Debugging Mistakes

  • Applying speculative fixes: Always confirm hypothesis with debugging data before modifying source
  • Ignoring environmental differences: Different behavior under GDB vs direct execution indicates environmental issues
  • Not verifying edits: After editing configuration files, always read them back to confirm correctness

Decision Tree

Is the task to build pMARS from source?
├── Yes → Continue with this skill
│   ├── Need headless/non-X11 build?
│   │   ├── Yes → Remove XWINGRAPHX from CFLAGS, remove -lX11 from libs
│   │   └── No → Use default Makefile settings
│   ├── Encountering build errors?
│   │   ├── Missing dependencies → Run apt-get build-dep or install manually
│   │   ├── Source not found → Enable deb-src repositories
│   │   └── Compilation errors → Check Makefile edits for typos
│   └── Encountering runtime errors?
│       ├── Segfault → Use GDB with debug symbols to diagnose
│       ├── Missing libraries → Check ldd output, install required libs
│       └── Unexpected behavior → Read source/help to understand expected behavior
└── No → This skill may not apply

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.88%
按下载量换算88

Gemini CLI

24.15%
按下载量换算67

Antigravity

16.17%
按下载量换算45

windsurf

11.43%
按下载量换算32

OpenCode

7.03%
按下载量换算19

Codex

3.12%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills