说明:本文为用户提供的《The Complete Guide to Building Skills for Claude》非官方中文翻译稿,尽量忠实原意并保留结构与示例。少量专有名词(Skill / MCP / Claude Code 等)保留英文以避免歧义。
- 引言
- 第 1 章 基础
| [ | |
| { | |
| "name": "Afghanistan", | |
| "dial_code": "+93", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Aland Islands", | |
| "dial_code": "+358", | |
| "code": "AX" |
| https://press.one/p/v?s=66535a31f70dbfaf8214c15bdfb26fbc8792020327cecf08dd3da393bc461f3a525ffa3c4301d92ed9fe338dcd54babe1a1f050c46e882bef92304cdab3a405301&h=8a6987326ab4c6d8b0dba78a79de89d03343f9a1ef96ca25b95a68c35fa6b6cf&a=d2abc417bc8f203f8e211a83f300e327ed345531&f=P1&v=3 |
| <?php | |
| namespace App\Presenters\User; | |
| use App\User; | |
| class UrlPresenter { | |
| protected $user; |
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |
| #!/bin/sh | |
| GIT_REPO=/mnt/www/github_tmp_repo | |
| ##GITLab | |
| GIT="xxx.git" | |
| GITLAB_GROUP="xxx" | |
| GITLAB_GIT="git@git.xxx.io:${GITLAB_GROUP}/${GIT}" | |
| #GITHub | |
| GITHUB_ORG="xxxx" |