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

nccuojnccuoj 开发

Agent Skill

nccuoj 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,088

周安装

337

GitHub Stars

公开资料未说明

下载量

2,696
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nccuoj(nccuoj 开发)
来源仓库:https://github.com/andyjjrt/nccuoj
安装命令:
openclaw skills install nccuoj
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install nccuoj

简介

nccuoj 用于在 NCCUOJ 在线评测平台解决编程竞赛题目。

  • 支持读取题面、提交代码并解析判题结果反馈。
  • 适用于算法练习、面试准备或教学实验场景。nccuoj 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需配置 C/C++ 编译环境与账户认证令牌。
  • 提交前应本地测试边界用例,避免因超时或内存超限失败。

SKILL.md

name
nccuoj
description
Solve competitive programming problems on NCCUOJ (https://nccuoj.ebg.tw). Use when: solving OJ problems, reading problem statements, writing solutions in C/C++/Python, submitting code, checking submission results.
argument-hint
Problem ID or URL (e.g. '1001' or 'https://nccuoj.ebg.tw/problem/1001')

NCCUOJ Problem Solving

Solve competitive programming problems on NCCUOJ, a QDU-based Online Judge for NCCU CS.

When to Use

  • Read a problem statement from NCCUOJ
  • Write a solution for a specific problem
  • Submit code and check results
  • Debug a wrong answer or time limit exceeded
  • Solve contest problems

Directory Structure

All generated files are organized under .nccuoj/ at the workspace root:

.nccuoj/
├── cookies.txt                                  # Session cookies (auto-managed)
└── solution/
    ├── public/<problem_id>/                      # Public problem solutions
    │   ├── problem.md                            # Problem statement
    │   └── solution.cpp / solution.py / ...      # Solution code
    └── contest/<contest_id>/<problem_id>/        # Contest problem solutions
        ├── problem.md
        └── solution.cpp / solution.py / ...

When writing solution code, always place files in the correct directory. The scripts' --save flag and get_solution_dir() helper handle directory creation automatically.

CSRF Token (Important)

All NCCUOJ API requests require a CSRF token. The provided scripts handle this automatically (via GET /api/profile on init). If making manual requests, see ./references/api.md for details.

Scripts

Use these scripts to interact with NCCUOJ. They handle CSRF tokens and session management automatically.

ScriptPurpose
get_problem.pyFetch problem statement as Markdown (supports --username/--password, --contest, --raw)
submit.pySubmit code (requires --username / --password CLI args)
check_result.pyCheck submission result, with optional --poll

All scripts use only Python stdlib (no pip install needed).

Scripts are located in this skill's ./scripts/ directory. In the examples below, $SCRIPTS refers to the absolute path of that directory. Resolve it relative to this SKILL.md file before running commands.

Mode A: Public Problem Solving

1. Fetch the Problem

Run get_problem.py to fetch the problem. If the problem requires login (e.g. returns "Please login first"), ask the user for their credentials and pass --username/--password.

# Public (no login)
python $SCRIPTS/get_problem.py <problem_id>

# With login
python $SCRIPTS/get_problem.py <problem_id> --username <username> --password <password>

Or if given a URL like https://nccuoj.ebg.tw/problem/1001, extract 1001 and pass it as the argument.

The output is formatted Markdown containing: title, metadata (internal ID, difficulty, time/memory limit, tags), description, input/output format, sample test cases, hint, allowed languages, and statistics. All URL-encoded HTML fields are automatically decoded and converted to Markdown.

Use --raw to get the original JSON instead.

2. Analyze the Problem

  • Identify input/output format from input_description and output_description
  • Study sample cases from samples
  • Determine constraints (time/memory limits)
  • Identify the algorithm or data structure needed

3. Write the Solution

Write the solution file in the correct directory:

  • Public: .nccuoj/solution/public/<problem_id>/solution.cpp (or .py, .java, etc.)
  • Contest: .nccuoj/solution/contest/<contest_id>/<problem_id>/solution.cpp

The supported languages are:

LanguageAPI NameNotes
CCGCC, C17
C++C++GCC, C++20
PythonPython3Python 3.12
JavaJavaTemurin 21
GoGolangGo 1.22
JavaScriptJavaScriptNode.js 20

Default to C++ unless the user specifies otherwise.

C/C++ Template

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    // solution
    return 0;
}

Python Template

import sys
input = sys.stdin.readline

def solve():
    # solution
    pass

solve()

4. Test Locally

Before submitting, verify the solution against the sample cases. Run the code with each sample input and compare to expected output.

5. Submit (Optional)

Before submitting, if the user has not provided their NCCUOJ username and password, ask them for it. Then pass the credentials directly as CLI arguments.

# Submit (problem_id is the internal numeric ID from the problem JSON's "id" field)
python $SCRIPTS/submit.py <problem_internal_id> "C++" .nccuoj/solution/public/<problem_id>/solution.cpp --username <username> --password <password>

# Check result (with --poll to wait for judging)
python $SCRIPTS/check_result.py <submission_id> --username <username> --password <password> --poll

Result codes: -2 (Compile Error), -1 (Wrong Answer), 0 (Accepted), 1 (Time Limit Exceeded), 2 (Memory Limit Exceeded), 3 (Runtime Error), 4 (System Error), 6 (Pending), 7 (Judging), 8 (Partial Accepted).

6. Debug if Needed

If the submission is not Accepted:

  • Wrong Answer: Re-examine edge cases, off-by-one errors, output format
  • Time Limit Exceeded: Optimize algorithm complexity, reduce I/O overhead
  • Runtime Error: Check array bounds, division by zero, stack overflow
  • Compile Error: Check the error info in submission response
  • Memory Limit Exceeded: Reduce data structure size, avoid unnecessary copies

Mode B: Contest Problem Solving

Contest mode mirrors public mode but all API calls require the contest_id parameter.

1. Fetch Contest Problem

Run get_problem.py with --contest. Contest problems always require login.

python $SCRIPTS/get_problem.py <problem_id> --contest <contest_id> --username <username> --password <password>

The response format is the same as public problems.

2–4. Analyze, Write, Test

Same as Mode A steps 2–4.

5. Submit to Contest

Before submitting, if the user has not provided their NCCUOJ username and password, ask them for it.

python $SCRIPTS/submit.py <problem_internal_id> "C++" .nccuoj/solution/contest/<contest_id>/<problem_id>/solution.cpp --username <username> --password <password> --contest <contest_id>

# Check result
python $SCRIPTS/check_result.py <submission_id> --username <username> --password <password> --poll

7. Debug if Needed

Same as Mode A step 6. Note: contest submissions cannot be shared while the contest is underway.

API Reference

See ./references/api.md for full API endpoint documentation.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.84%
按下载量换算2,126

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills