The most important file that you will be dealing with is "4.0.dict" . Rename this existing (English) file to 4.0.dict.english (so you can refer to it later if you need to) and start a new one by the same name.
Remember the syntax section in the Wikipedia article? Now you'll be using that information.
"horses.nnp" "cows.nnp" "lawyers.nnp": % These are plural nouns S+; "run.vb" "sneeze.vb" "dance.vb": % These are (intransitive) verbs S- & {W-}; LEFT-WALL: W+; % See below for an explanationThis says that nouns should look to the right (indicated by the "+") to form a subject link (S), and that verbs should look to the left to form a subject link. The W link connects to the top-most word in the sentence (usually an auxiliary verb, or if this is not present, a regular verb.
Now try parsing a sentence:
linkparser> horses run Found 1 linkage (1 had no P.P. violations) Unique linkage, cost vector = (UNUSED=0 DIS=0 AND=0 LEN=1) +----S---+ | | horses.nnp run.vb
"horses.nnp" "cows.nnp" "lawyers.nnp": % These are plural nouns S-; "run.vb" "sneeze.vb" "dance.vb": % These are (intransitive) verbs S+ & {W-}; LEFT-WALL: W+; % See below for an explanationThis says that nouns should look to the left (indicated by the "-") to form a subject link (S), and that verbs should look to the right to form a subject link. The W link connects to the top-most word in the sentence (usually an auxiliary verb, or if this is not present, a regular verb.
linkparser> run horses Found 1 linkage (1 had no P.P. violations) Unique linkage, cost vector = (UNUSED=0 DIS=0 AND=0 LEN=0) +----W---+----S---+ | | | LEFT-WALL run.vb horses.nnp
Use the square brackets [...] very sparingly.
Also keep a running list of each new link you create, at the top of the grammar file, with a short description, and maybe even a short example sentence or phrase. You'll eventually forget what some of the links are there for.
You can create a file containing all the sentences that you have already successfully parsed, one sentence per line. Then when you add a new link, you can re-run this file to make sure your new link doesn't break other constructions. This is similar to a regression test in software engineering. The link-grammar parser accepts standard shell input techniques like link-grammar your_new_language < test_sentences.txt
A general bit of advice, backup your 4.0.dict file often, and occasionally to a different physical locations.
The developers of the Link Grammar parser have generously released the parser under a Free/open source license. Consider doing the same, so that other speakers of your language can benefit.
While this doesn't cover everything, it should get you started. Happy hacking!