@talesofai/neta-skills 0.8.0 → 0.11.0
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/CHANGELOG.md +18 -0
- package/README.md +156 -130
- package/README.zh_cn.md +266 -0
- package/bin/apis/tcp.js +30 -0
- package/bin/apis/types.js +22 -6
- package/bin/cli.js +4 -4
- package/bin/commands/character_elementum/create_character.cmd.en_us.yml +43 -0
- package/bin/commands/character_elementum/create_character.cmd.js +72 -0
- package/bin/commands/character_elementum/create_character.cmd.zh_cn.yml +43 -0
- package/bin/commands/character_elementum/create_elementum.cmd.en_us.yml +30 -0
- package/bin/commands/character_elementum/create_elementum.cmd.js +44 -0
- package/bin/commands/character_elementum/create_elementum.cmd.zh_cn.yml +30 -0
- package/bin/commands/character_elementum/list_my_characters.cmd.en_us.yml +18 -0
- package/bin/commands/character_elementum/list_my_characters.cmd.js +45 -0
- package/bin/commands/character_elementum/list_my_characters.cmd.zh_cn.yml +18 -0
- package/bin/commands/character_elementum/list_my_elementum.cmd.en_us.yml +18 -0
- package/bin/commands/character_elementum/list_my_elementum.cmd.js +45 -0
- package/bin/commands/character_elementum/list_my_elementum.cmd.zh_cn.yml +18 -0
- package/bin/commands/character_elementum/update_character.cmd.en_us.yml +30 -0
- package/bin/commands/character_elementum/update_character.cmd.js +84 -0
- package/bin/commands/character_elementum/update_character.cmd.zh_cn.yml +30 -0
- package/bin/commands/character_elementum/update_elementum.cmd.en_us.yml +18 -0
- package/bin/commands/character_elementum/update_elementum.cmd.js +52 -0
- package/bin/commands/character_elementum/update_elementum.cmd.zh_cn.yml +18 -0
- package/bin/commands/creative/make_image.cmd.en_us.yml +3 -1
- package/bin/commands/creative/make_image.cmd.js +21 -2
- package/bin/commands/creative/make_image.cmd.zh_cn.yml +3 -0
- package/bin/commands/creative/make_song.cmd.js +1 -1
- package/bin/commands/creative/remove_background.cmd.js +2 -2
- package/bin/commands/load.js +10 -12
- package/bin/utils/tcp_mapper.js +41 -0
- package/package.json +3 -3
- package/skills/neta/SKILL.md +59 -15
- package/skills/neta-character/SKILL.md +103 -0
- package/skills/neta-character/references/character-creation.md +195 -0
- package/skills/neta-character/references/character-field-guide.md +170 -0
- package/skills/neta-character/references/character-update.md +112 -0
- package/skills/neta-community/SKILL.md +2 -11
- package/skills/neta-creative/SKILL.md +1 -3
- package/skills/neta-creative/references/image-generation.md +84 -68
- package/skills/neta-elementum/SKILL.md +103 -0
- package/skills/neta-elementum/references/elementum-alchemy.md +197 -0
- package/skills/neta-elementum/references/elementum-field-guide.md +157 -0
- package/skills/neta-elementum/references/elementum-update.md +113 -0
- package/skills/neta-space/SKILL.md +1 -3
- package/skills/neta-suggest/SKILL.md +1 -3
- package/skills/zh_cn/neta/SKILL.md +41 -1
- package/skills/zh_cn/neta-character/SKILL.md +103 -0
- package/skills/zh_cn/neta-character/references/character-creation.md +195 -0
- package/skills/zh_cn/neta-character/references/character-field-guide.md +170 -0
- package/skills/zh_cn/neta-character/references/character-update.md +112 -0
- package/skills/zh_cn/neta-community/SKILL.md +1 -3
- package/skills/zh_cn/neta-creative/SKILL.md +1 -3
- package/skills/zh_cn/neta-creative/references/image-generation.md +46 -20
- package/skills/zh_cn/neta-elementum/SKILL.md +103 -0
- package/skills/zh_cn/neta-elementum/references/elementum-alchemy.md +197 -0
- package/skills/zh_cn/neta-elementum/references/elementum-field-guide.md +157 -0
- package/skills/zh_cn/neta-elementum/references/elementum-update.md +113 -0
- package/skills/zh_cn/neta-space/SKILL.md +1 -3
- package/skills/zh_cn/neta-suggest/SKILL.md +1 -3
- package/README.en.md +0 -234
- package/skills/zh_cn/neta/references/character-search.md +0 -234
- package/skills/zh_cn/neta/references/collection-remix.md +0 -40
- package/skills/zh_cn/neta/references/community-exploration.md +0 -636
- package/skills/zh_cn/neta/references/hashtag-research.md +0 -295
- package/skills/zh_cn/neta/references/image-generation.md +0 -121
- package/skills/zh_cn/neta/references/interactive-feed.md +0 -377
- package/skills/zh_cn/neta/references/social-interactive.md +0 -73
- package/skills/zh_cn/neta/references/song-creation.md +0 -247
- package/skills/zh_cn/neta/references/song-mv.md +0 -198
- package/skills/zh_cn/neta/references/space.md +0 -90
- package/skills/zh_cn/neta/references/video-generation.md +0 -221
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @neta/skills-neta
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- make image command support size params and model selection
|
|
8
|
+
|
|
9
|
+
## 0.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- bump npm package version
|
|
14
|
+
|
|
15
|
+
## 0.9.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- add commands about character create and management
|
|
20
|
+
|
|
3
21
|
## 0.8.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -4,198 +4,220 @@
|
|
|
4
4
|
[](https://nodejs.org/)
|
|
5
5
|
[](https://www.typescriptlang.org/)
|
|
6
6
|
|
|
7
|
-
[
|
|
7
|
+
[English](./README.md) · [简体中文](./README.zh_cn.md)
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Overview
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
**NETA Skills** is a collection of powerful AI agent skills and accompanying CLI tools designed for interacting with the [Neta Art](https://www.neta.art/) API. Built for developers and AI agents, it seamlessly extends any agent's capabilities to generate multimedia, manage characters, and process audio/video workflows.
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
- 生成图片 / 视频 / 歌曲等多媒体内容
|
|
18
|
-
- 查询与管理角色(Character)与风格元素(Elementum)
|
|
19
|
-
- 进行标签(Hashtag)与空间玩法探索
|
|
20
|
-
- 通过推荐引擎和互动 Feed 进行玩法内容发现
|
|
21
|
-
|
|
22
|
-
你可以在 [Neta 开放平台](https://www.neta.art/open/) 获取访问令牌 `NETA_TOKEN`。
|
|
23
|
-
也可以在[国内登陆账号后台](https://app.nieta.art/security) 获取访问令牌 `NETA_TOKEN`。
|
|
15
|
+
You can get your access token from the [Neta Open Portal](https://www.neta.art/open/).
|
|
24
16
|
|
|
25
17
|
---
|
|
26
18
|
|
|
27
|
-
|
|
19
|
+
## ✨ Features
|
|
28
20
|
|
|
29
|
-
- 🎨
|
|
30
|
-
- 🔧
|
|
31
|
-
- 👤
|
|
32
|
-
- 🏷️
|
|
33
|
-
- 🧭
|
|
34
|
-
- 🤖 **Agent
|
|
21
|
+
- 🎨 **Multimedia Creation:** Generate stunning images, videos, and songs using state-of-the-art AI models.
|
|
22
|
+
- 🔧 **Image & Video Processing:** Effortlessly remove backgrounds and merge video assets.
|
|
23
|
+
- 👤 **Character & Style Management:** Search, fetch details, and manage characters and stylistic elements.
|
|
24
|
+
- 🏷️ **Community Integrations:** Explore trending hashtags, popular characters, and curated collections.
|
|
25
|
+
- 🧭 **Smart Discovery & Suggestions:** Explore interactive feeds and get keyword, tag, and category suggestions for progressive content discovery.
|
|
26
|
+
- 🤖 **Agent First:** Designed from the ground up to plug into your favorite AI agent frameworks.
|
|
35
27
|
|
|
36
28
|
---
|
|
37
29
|
|
|
38
|
-
|
|
30
|
+
## 🚀 Getting Started with Skills
|
|
31
|
+
|
|
32
|
+
The primary way to use this project is by installing the skills into your AI agent environment.
|
|
39
33
|
|
|
40
|
-
|
|
34
|
+
### Installation (skills.sh)
|
|
35
|
+
|
|
36
|
+
Install the unified [`neta`](skills/neta/SKILL.md) skill into your agent:
|
|
41
37
|
|
|
42
38
|
```bash
|
|
43
|
-
npx skills add talesofai/neta-skills/skills/
|
|
39
|
+
npx skills add talesofai/neta-skills/skills/neta
|
|
44
40
|
```
|
|
45
41
|
|
|
46
|
-
|
|
42
|
+
You can also install the specialized skills separately if your agent prefers more granular capabilities:
|
|
47
43
|
|
|
48
44
|
```bash
|
|
49
|
-
#
|
|
50
|
-
npx skills add talesofai/neta-skills/skills/
|
|
45
|
+
# Community exploration (hashtags, spaces, interactive feed)
|
|
46
|
+
npx skills add talesofai/neta-skills/skills/neta-community
|
|
47
|
+
|
|
48
|
+
# Creation workflows (image / video / song)
|
|
49
|
+
npx skills add talesofai/neta-skills/skills/neta-creative
|
|
51
50
|
|
|
52
|
-
#
|
|
53
|
-
npx skills add talesofai/neta-skills/skills/
|
|
51
|
+
# Discovery & suggestions (keywords, tags, categories, content)
|
|
52
|
+
npx skills add talesofai/neta-skills/skills/neta-suggest
|
|
54
53
|
|
|
55
|
-
#
|
|
56
|
-
npx skills add talesofai/neta-skills/skills/
|
|
54
|
+
# Space navigation & exploration
|
|
55
|
+
npx skills add talesofai/neta-skills/skills/neta-space
|
|
57
56
|
|
|
58
|
-
#
|
|
59
|
-
npx skills add talesofai/neta-skills/skills/
|
|
57
|
+
# Character VToken creation and management
|
|
58
|
+
npx skills add talesofai/neta-skills/skills/neta-character
|
|
59
|
+
|
|
60
|
+
# Elementum VToken creation and management
|
|
61
|
+
npx skills add talesofai/neta-skills/skills/neta-elementum
|
|
60
62
|
```
|
|
61
63
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
|
67
|
-
|
|
68
|
-
|
|
|
69
|
-
| | `make_video` |
|
|
70
|
-
| | `make_song` |
|
|
71
|
-
| | `remove_background` |
|
|
72
|
-
| | `edit_collection` |
|
|
73
|
-
| | `publish_collection` |
|
|
74
|
-
| | `search_character_or_elementum` |
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
| | `
|
|
78
|
-
| | `
|
|
79
|
-
| | `
|
|
80
|
-
| | `
|
|
81
|
-
| | `
|
|
82
|
-
| | `
|
|
83
|
-
| | `
|
|
84
|
-
| | `
|
|
85
|
-
| | `
|
|
86
|
-
| | `
|
|
87
|
-
| | `
|
|
88
|
-
| | `
|
|
89
|
-
| | `
|
|
90
|
-
| | `
|
|
91
|
-
| | `
|
|
92
|
-
| | `
|
|
93
|
-
| | `
|
|
94
|
-
|
|
95
|
-
|
|
64
|
+
### Available Commands
|
|
65
|
+
|
|
66
|
+
The skill includes **30 commands** for various tasks:
|
|
67
|
+
|
|
68
|
+
| Category | Command | Description |
|
|
69
|
+
|----------|---------|-------------|
|
|
70
|
+
| **Creation** | `make_image` | Generate images from text prompts |
|
|
71
|
+
| | `make_video` | Generate videos from images and prompts |
|
|
72
|
+
| | `make_song` | Compose songs with custom prompts and lyrics |
|
|
73
|
+
| | `remove_background` | Remove the background from an image |
|
|
74
|
+
| | `edit_collection` | Edit an existing collection (name, description, tags, status, etc.) |
|
|
75
|
+
| | `publish_collection` | Publish or update a collection |
|
|
76
|
+
| | `search_character_or_elementum` | Search reusable TCP building blocks (characters / elements / flows) |
|
|
77
|
+
| **VToken Management** | `create_character` | Create a character VToken (consumes credits) |
|
|
78
|
+
| | `update_character` | Update an existing character VToken |
|
|
79
|
+
| | `list_my_characters` | List all characters created by the current user |
|
|
80
|
+
| | `create_elementum` | Create an elementum VToken (consumes credits) |
|
|
81
|
+
| | `update_elementum` | Update an existing elementum VToken |
|
|
82
|
+
| | `list_my_elementum` | List all elementa created by the current user |
|
|
83
|
+
| **Characters** | `request_character_or_elementum` | Fetch character or elementum details by name or UUID |
|
|
84
|
+
| **Community** | `get_hashtag_info` | Get details and lore for a specific hashtag |
|
|
85
|
+
| | `get_hashtag_characters` | Get a list of characters under a hashtag |
|
|
86
|
+
| | `get_hashtag_collections` | Get curated collections under a hashtag |
|
|
87
|
+
| | `read_collection` | Read details for a specific collection (玩法) |
|
|
88
|
+
| | `list_spaces` | List spaces that can be explored |
|
|
89
|
+
| | `list_space_topics` | List topics available under a specific space |
|
|
90
|
+
| | `request_interactive_feed` | Get interactive content feeds for collections, spaces, and users |
|
|
91
|
+
| | `suggest_keywords` | Get autocomplete suggestions for search keywords |
|
|
92
|
+
| | `suggest_tags` | Get recommended hashtags related to a keyword |
|
|
93
|
+
| | `suggest_categories` | Get navigation suggestions for taxonomy categories |
|
|
94
|
+
| | `validate_tax_path` | Validate that a taxonomy path is valid |
|
|
95
|
+
| | `suggest_content` | Discover content via recommend, search, or exact filter modes |
|
|
96
|
+
| | `get_fan_list` | Get the list of users who follow the current user |
|
|
97
|
+
| | `get_subscribe_list` | Get the list of creators the current user follows |
|
|
98
|
+
| | `favor_collection` | Favorite or unfavorite a collection |
|
|
99
|
+
| | `like_collection` | Like or unlike a collection |
|
|
100
|
+
| | `subscribe_user` | Follow or unfollow a creator |
|
|
101
|
+
| | `create_comment` | Create a comment on a collection |
|
|
96
102
|
|
|
97
103
|
---
|
|
98
104
|
|
|
99
|
-
|
|
105
|
+
## 🛠️ CLI Usage (`@talesofai/neta-skills`)
|
|
100
106
|
|
|
101
|
-
|
|
107
|
+
The project also ships a standalone CLI package `@talesofai/neta-skills` for testing, scripting, and CI automation.
|
|
102
108
|
|
|
103
|
-
|
|
109
|
+
### Install CLI
|
|
104
110
|
|
|
105
111
|
```bash
|
|
106
|
-
#
|
|
112
|
+
# Global install (recommended)
|
|
107
113
|
npm install -g @talesofai/neta-skills
|
|
108
114
|
|
|
109
|
-
#
|
|
115
|
+
# Or use npx / pnpm dlx without global install
|
|
110
116
|
npx @talesofai/neta-skills --help
|
|
111
117
|
pnpm dlx @talesofai/neta-skills --help
|
|
112
118
|
```
|
|
113
119
|
|
|
114
|
-
|
|
120
|
+
Configure your environment:
|
|
115
121
|
|
|
116
122
|
```bash
|
|
117
|
-
#
|
|
123
|
+
# Set NETA_TOKEN in your environment or put it into a .env / .env.local file
|
|
118
124
|
export NETA_TOKEN=your_token_here
|
|
119
125
|
```
|
|
120
126
|
|
|
121
|
-
|
|
127
|
+
### Running Commands
|
|
122
128
|
|
|
123
129
|
```bash
|
|
124
|
-
#
|
|
130
|
+
# Get general help or specific command help
|
|
125
131
|
neta-cli --help
|
|
126
132
|
neta-cli make_image --help
|
|
127
133
|
|
|
128
|
-
#
|
|
129
|
-
neta-cli make_image
|
|
130
|
-
--prompt "夜晚的赛博朋克城市,霓虹灯,高楼大厦,雨中街道" \
|
|
131
|
-
--aspect "16:9"
|
|
134
|
+
# Example: Generate an image
|
|
135
|
+
neta-cli make_image --prompt "A cyberpunk cityscape at night" --aspect "16:9"
|
|
132
136
|
|
|
133
|
-
#
|
|
134
|
-
neta-cli search_character_or_elementum
|
|
135
|
-
--keywords "幻想" \
|
|
136
|
-
--parent_type "character"
|
|
137
|
+
# Example: Search for characters or elementum
|
|
138
|
+
neta-cli search_character_or_elementum --keywords "fantasy"
|
|
137
139
|
```
|
|
138
140
|
|
|
139
141
|
---
|
|
140
142
|
|
|
141
|
-
|
|
143
|
+
## 📂 Project Structure
|
|
142
144
|
|
|
143
145
|
```text
|
|
144
146
|
neta-skills/
|
|
145
147
|
├── skills/
|
|
146
|
-
│ ├── neta/ #
|
|
147
|
-
│ │
|
|
148
|
-
│
|
|
149
|
-
│
|
|
150
|
-
│
|
|
151
|
-
│ ├── neta-
|
|
152
|
-
│ ├── neta-
|
|
153
|
-
│ ├── neta-
|
|
154
|
-
│ └──
|
|
155
|
-
├──
|
|
156
|
-
│
|
|
157
|
-
│ ├──
|
|
158
|
-
│ ├──
|
|
159
|
-
│
|
|
160
|
-
├──
|
|
161
|
-
└──
|
|
148
|
+
│ ├── neta/ # Unified Neta skill (agent-first)
|
|
149
|
+
│ │ └── SKILL.md # Core skill documentation (EN)
|
|
150
|
+
│ ├── neta-community/ # Community / hashtag / space exploration skills (EN)
|
|
151
|
+
│ ├── neta-creative/ # Image / video / song creation skills (EN)
|
|
152
|
+
│ ├── neta-suggest/ # Discovery & suggestion skills (EN)
|
|
153
|
+
│ ├── neta-space/ # Space navigation & exploration skills (EN)
|
|
154
|
+
│ ├── neta-character/ # Character VToken creation & management (EN)
|
|
155
|
+
│ ├── neta-elementum/ # Elementum VToken creation & management (EN)
|
|
156
|
+
│ └── zh_cn/ # Chinese-localized skills & references
|
|
157
|
+
│ ├── neta/
|
|
158
|
+
│ ├── neta-community/
|
|
159
|
+
│ ├── neta-creative/
|
|
160
|
+
│ ├── neta-suggest/
|
|
161
|
+
│ ├── neta-space/
|
|
162
|
+
│ ├── neta-character/
|
|
163
|
+
│ └── neta-elementum/
|
|
164
|
+
├── src/ # TypeScript source for the CLI
|
|
165
|
+
│ ├── apis/ # Typed Neta API client helpers
|
|
166
|
+
│ ├── commands/ # CLI command definitions (TS + YAML meta)
|
|
167
|
+
│ ├── utils/ # Shared utilities
|
|
168
|
+
│ └── cli.ts # CLI entrypoint (TypeScript)
|
|
169
|
+
├── bin/ # Built JavaScript output for the CLI
|
|
170
|
+
│ ├── apis/
|
|
171
|
+
│ ├── commands/
|
|
172
|
+
│ ├── utils/
|
|
173
|
+
│ └── cli.js # CLI entrypoint (compiled JS)
|
|
174
|
+
├── scripts/
|
|
175
|
+
│ └── postbuild.js # Build/post-build helpers
|
|
176
|
+
├── .env.example # Environment variable template
|
|
177
|
+
├── package.json # Root package config / scripts
|
|
178
|
+
├── pnpm-lock.yaml # Dependency lockfile
|
|
179
|
+
├── tsconfig.json # TypeScript configuration
|
|
180
|
+
├── biome.json # Biome (formatter / linter) config
|
|
181
|
+
└── lint-staged.config.mjs # lint-staged configuration
|
|
162
182
|
```
|
|
163
183
|
|
|
164
184
|
---
|
|
165
185
|
|
|
166
|
-
|
|
186
|
+
## 📖 Best Practices & Workflows (References)
|
|
187
|
+
|
|
188
|
+
The `skills/neta/references/` directory contains detailed **best practice workflows**. These guides are designed to help AI agents (and developers) understand how to combine multiple commands to achieve complex goals effectively.
|
|
167
189
|
|
|
168
|
-
|
|
190
|
+
Agents use these references to learn the optimal sequence of actions, parameter tuning, and standard operating procedures for specific NETA Art workflows, such as:
|
|
169
191
|
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
192
|
+
- **Image & Video Generation:** Best practices for chaining prompts, generating assets, and assembling videos.
|
|
193
|
+
- **Song & MV Creation:** Workflows for composing songs and creating music videos with synchronized visuals.
|
|
194
|
+
- **Character & Hashtag Research:** Processes for finding trending content, searching characters, and utilizing community trends.
|
|
195
|
+
- **Character & Elementum Creation:** Character creation and elementum alchemy workflows.
|
|
174
196
|
|
|
175
197
|
---
|
|
176
198
|
|
|
177
|
-
|
|
199
|
+
## 📝 Environment Variables
|
|
178
200
|
|
|
179
|
-
|
|
201
|
+
Both the AI agent skills and the CLI require the following environment configuration:
|
|
180
202
|
|
|
181
|
-
|
|
|
182
|
-
|
|
183
|
-
| `NETA_TOKEN` | ✅ | - | Neta Art API
|
|
184
|
-
| `NETA_API_BASE_URL` | ❌ | default: `https://api.talesofai.com` | Neta API
|
|
203
|
+
| Variable | Required | Default | Description |
|
|
204
|
+
|----------|----------|---------|-------------|
|
|
205
|
+
| `NETA_TOKEN` | ✅ | - | Your Neta Art API access token. |
|
|
206
|
+
| `NETA_API_BASE_URL` | ❌ | default: `https://api.talesofai.com` | Base URL for the Neta API. |
|
|
185
207
|
|
|
186
|
-
|
|
208
|
+
### i18n and locale detection
|
|
187
209
|
|
|
188
|
-
CLI
|
|
210
|
+
The CLI and skills automatically detect the current locale and map it to internal language variants:
|
|
189
211
|
|
|
190
|
-
-
|
|
191
|
-
-
|
|
212
|
+
- Locales starting with `zh` (for example, `zh_CN`, `en_US`) → use `zh_cn` docs and metadata.
|
|
213
|
+
- All other locales → default to `en_us` docs and metadata.
|
|
192
214
|
|
|
193
|
-
|
|
215
|
+
In terminal environments, locale is typically controlled by:
|
|
194
216
|
|
|
195
|
-
-
|
|
196
|
-
-
|
|
217
|
+
- Your operating system language settings (macOS / Linux / Windows), and
|
|
218
|
+
- Environment variables such as `LC_ALL`, `LC_MESSAGES`, `LANG`, and `LANGUAGE`.
|
|
197
219
|
|
|
198
|
-
|
|
220
|
+
If you want to force a specific language for a single command, you can prefix it with the desired locale, for example:
|
|
199
221
|
|
|
200
222
|
```bash
|
|
201
223
|
LC_ALL=zh_CN.UTF-8 neta-cli make_image --help
|
|
@@ -204,34 +226,38 @@ LANG=en_US.UTF-8 neta-cli make_image --help
|
|
|
204
226
|
|
|
205
227
|
---
|
|
206
228
|
|
|
207
|
-
|
|
229
|
+
## 🔧 Development
|
|
208
230
|
|
|
209
|
-
|
|
231
|
+
To develop and test locally:
|
|
210
232
|
|
|
211
233
|
```bash
|
|
212
|
-
#
|
|
234
|
+
# Install dependencies
|
|
213
235
|
corepack enabled
|
|
214
236
|
pnpm i
|
|
215
237
|
|
|
216
|
-
# TypeScript
|
|
238
|
+
# Run TypeScript type checking
|
|
217
239
|
pnpm type-check
|
|
218
240
|
|
|
219
|
-
#
|
|
241
|
+
# Run lint
|
|
220
242
|
pnpm lint
|
|
221
243
|
|
|
222
|
-
#
|
|
244
|
+
# Test CLI commands locally
|
|
223
245
|
pnpm dev <command> [options]
|
|
224
246
|
|
|
225
|
-
#
|
|
247
|
+
# Build bin scripts
|
|
226
248
|
pnpm build
|
|
227
249
|
```
|
|
228
250
|
|
|
229
251
|
---
|
|
230
252
|
|
|
231
|
-
|
|
253
|
+
## 📄 License
|
|
254
|
+
|
|
255
|
+
This project is open-sourced under the [MIT License](LICENSE).
|
|
256
|
+
|
|
257
|
+
---
|
|
232
258
|
|
|
233
|
-
|
|
259
|
+
## 🔗 Links
|
|
234
260
|
|
|
235
|
-
- [Neta Art
|
|
236
|
-
- [skills.sh
|
|
261
|
+
- [Neta Art Official Website](https://www.neta.art/)
|
|
262
|
+
- [skills.sh Documentation](https://skills.sh/docs)
|
|
237
263
|
|