源文档:https://docs.esimaccess.com/
运行环境:Node.js 18+
npm install postman-to-openapi js-yaml
node convert.cjs esimaccess.openapi.json源文档:https://docs.esimaccess.com/
运行环境:Node.js 18+
npm install postman-to-openapi js-yaml
node convert.cjs esimaccess.openapi.jsonThis file is the operating guide for AI coding agents and human maintainers working in this repository.
Its purpose is not to make the agent obedient to arbitrary style preferences. Its purpose is to preserve project quality as the codebase grows by making local truth, architecture boundaries, verification, and feedback loops explicit.
Do not rely on model memory, taste, or one-shot intuition.
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| export USER=root | |
| export PATH="/nix/var/nix/profiles/default/bin:$HOME/.nix-profile/bin:$PATH" | |
| # Nix | |
| curl -fsSL -L https://install.determinate.systems/nix -o /tmp/nix-install.sh | |
| sh /tmp/nix-install.sh install linux --no-confirm --init none | |
| echo "source ~/.nix-profile/etc/profile.d/nix.sh" >> ~/.bashrc |
| [general] | |
| import = ["~/.config/alacritty/themes/nmnmcc.toml"] | |
| [font] | |
| normal = { family = "IBM Plex Mono", style = "Regular" } | |
| [window] | |
| padding = { x = 4, y = 4 } | |
| opacity = 0.8 |
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "$id": "https://github.com/99designs/gqlgen/gqlgen.schema.json", | |
| "title": "gqlgen Configuration Schema", | |
| "description": "JSON Schema for gqlgen.yml configuration files", | |
| "type": "object", | |
| "properties": { | |
| "$schema": { | |
| "type": "string", | |
| "description": "JSON Schema URI reference", |
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "log/slog" | |
| "math/rand" |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <robot name="robot" xmlns:xacro="http://www.ros.org/wiki/xacro"> | |
| <link name="base_footprint"></link> | |
| <link name="body"> | |
| <visual> | |
| <geometry> | |
| <box size="1 0.8 0.2" /> | |
| </geometry> |
| FROM ubuntu:22.04 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && apt-get install -y locales curl | |
| RUN bash -c "bash <(curl -sSL https://linuxmirrors.cn/main.sh) --source mirrors.bfsu.edu.cn" | |
| RUN locale-gen en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 |
NeoVim is a modal editor, primarily featuring the following modes:
Esc to return to this mode from others.i, a, o.